From 82b48987b78f711c2adf7189639d4ee906026306 Mon Sep 17 00:00:00 2001 From: Alex Moraru Date: Thu, 7 May 2026 08:48:46 +0300 Subject: [PATCH 01/14] Show error message explicitly --- src/fabric_cli/core/fab_exceptions.py | 26 +++++++++++++++++++------- 1 file changed, 19 insertions(+), 7 deletions(-) diff --git a/src/fabric_cli/core/fab_exceptions.py b/src/fabric_cli/core/fab_exceptions.py index 1035c0372..f3930f532 100644 --- a/src/fabric_cli/core/fab_exceptions.py +++ b/src/fabric_cli/core/fab_exceptions.py @@ -63,12 +63,21 @@ def __init__(self, response_text): related_resource (dict): Details about the main related resource, if available. request_id (str): The ID of the request associated with the error. """ - response = json.loads(response_text) - message = response.get("message") - error_code = response.get("errorCode") - - self.more_details: list[dict] = response.get("moreDetails", []) - self.request_id = response.get("requestId") + try: + response = json.loads(response_text) + message = ( + response.get("message") + if response.get("message") is not None + else response_text + ) + error_code = response.get("errorCode") + self.more_details: list[dict] = response.get("moreDetails", []) + self.request_id = response.get("requestId") + except json.JSONDecodeError: + message = response_text + error_code = None + self.more_details = [] + self.request_id = None super().__init__(message, error_code) @@ -90,7 +99,10 @@ def formatted_message(self, verbose=False): else f"{base_message}\n{detailed_message}" ) - return f"{final_message}\n∟ Request Id: {self.request_id}" + if self.request_id: + final_message += f"\n∟ Request Id: {self.request_id}" + + return final_message class OnelakeAPIError(FabricCLIError): From b79a2459f7fb2ff0297b8a5ffa18c5cf67afd1d1 Mon Sep 17 00:00:00 2001 From: Alex Moraru Date: Thu, 7 May 2026 10:12:25 +0300 Subject: [PATCH 02/14] Addresses comments + changelog --- .../optimization-20260507-101040.yaml | 6 ++ src/fabric_cli/core/fab_exceptions.py | 4 +- tests/test_utils/test_fab_custom_exception.py | 63 ++++++++++++++++++- 3 files changed, 71 insertions(+), 2 deletions(-) create mode 100644 .changes/unreleased/optimization-20260507-101040.yaml diff --git a/.changes/unreleased/optimization-20260507-101040.yaml b/.changes/unreleased/optimization-20260507-101040.yaml new file mode 100644 index 000000000..4aceb9b2f --- /dev/null +++ b/.changes/unreleased/optimization-20260507-101040.yaml @@ -0,0 +1,6 @@ +kind: optimization +body: Shows explicit API error message +time: 2026-05-07T10:10:40.73557+03:00 +custom: + Author: v-alexmoraru + AuthorLink: https://github.com/v-alexmoraru diff --git a/src/fabric_cli/core/fab_exceptions.py b/src/fabric_cli/core/fab_exceptions.py index 67bdbe205..0cc239fc9 100644 --- a/src/fabric_cli/core/fab_exceptions.py +++ b/src/fabric_cli/core/fab_exceptions.py @@ -80,6 +80,8 @@ def __init__(self, response_text): """ try: response = json.loads(response_text) + if not isinstance(response, dict): + raise ValueError("Unexpected JSON shape") message = ( response.get("message") if response.get("message") is not None @@ -88,7 +90,7 @@ def __init__(self, response_text): error_code = response.get("errorCode") self.more_details: list[dict] = response.get("moreDetails", []) self.request_id = response.get("requestId") - except json.JSONDecodeError: + except (json.JSONDecodeError, ValueError): message = response_text error_code = None self.more_details = [] diff --git a/tests/test_utils/test_fab_custom_exception.py b/tests/test_utils/test_fab_custom_exception.py index d321717b4..600d59c48 100644 --- a/tests/test_utils/test_fab_custom_exception.py +++ b/tests/test_utils/test_fab_custom_exception.py @@ -1,7 +1,9 @@ # Copyright (c) Microsoft Corporation. # Licensed under the MIT License. -from fabric_cli.core.fab_exceptions import FabricCLIError +import json + +from fabric_cli.core.fab_exceptions import FabricAPIError, FabricCLIError def test_custom_error_message(): @@ -17,3 +19,62 @@ def test_custom_error_message_without_period(): def test_custom_error_formatted_message_with_status_code(): error = FabricCLIError("An error occurred.", status_code=404) assert error.formatted_message() == "[404] An error occurred" + + +def test_fabric_api_error__valid_json_with_request_id(): + payload = json.dumps( + { + "errorCode": "ItemNotFound", + "message": "The requested item was not found.", + "requestId": "abc-123", + "moreDetails": [], + } + ) + error = FabricAPIError(payload) + + assert error.status_code == "ItemNotFound" + assert error.message == "The requested item was not found" + assert error.request_id == "abc-123" + assert error.more_details == [] + + +def test_fabric_api_error__valid_json_without_request_id(): + payload = json.dumps( + { + "errorCode": "Unauthorized", + "message": "Access denied.", + } + ) + error = FabricAPIError(payload) + + assert error.status_code == "Unauthorized" + assert error.request_id is None + # formatted_message should not append a request-id line + assert "Request Id" not in error.formatted_message(verbose=True) + + +def test_fabric_api_error__non_json_body_falls_back_to_raw_text(): + raw = "Internal Server Error" + error = FabricAPIError(raw) + + assert error.message == raw.rstrip(".") + assert error.status_code is None + assert error.request_id is None + assert error.more_details == [] + + +def test_fabric_api_error__non_dict_json_falls_back_to_raw_text(): + # Valid JSON but not an object — should be treated like a non-JSON body. + for raw in ('"just a string"', "[1, 2, 3]", "42", "true"): + error = FabricAPIError(raw) + assert error.message == raw.rstrip(".") + assert error.status_code is None + assert error.request_id is None + assert error.more_details == [] + + +def test_fabric_api_error__formatted_message_non_json__no_request_id_line(): + error = FabricAPIError("Gateway Timeout") + formatted = error.formatted_message(verbose=True) + assert "Request Id" not in formatted + assert "Gateway Timeout" in formatted From 07e0a11db464a1394b0e34331c182ea24f4eb44b Mon Sep 17 00:00:00 2001 From: Alex Moraru Date: Thu, 7 May 2026 10:17:15 +0300 Subject: [PATCH 03/14] Updates test assertion --- tests/test_utils/test_fab_custom_exception.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_utils/test_fab_custom_exception.py b/tests/test_utils/test_fab_custom_exception.py index 600d59c48..614d7ea41 100644 --- a/tests/test_utils/test_fab_custom_exception.py +++ b/tests/test_utils/test_fab_custom_exception.py @@ -58,7 +58,7 @@ def test_fabric_api_error__non_json_body_falls_back_to_raw_text(): error = FabricAPIError(raw) assert error.message == raw.rstrip(".") - assert error.status_code is None + assert error.status_code == "UnknownError" assert error.request_id is None assert error.more_details == [] @@ -68,7 +68,7 @@ def test_fabric_api_error__non_dict_json_falls_back_to_raw_text(): for raw in ('"just a string"', "[1, 2, 3]", "42", "true"): error = FabricAPIError(raw) assert error.message == raw.rstrip(".") - assert error.status_code is None + assert error.status_code == "UnknownError" assert error.request_id is None assert error.more_details == [] From 04998c94edaa1e73e503b54988b7ee512cb27789 Mon Sep 17 00:00:00 2001 From: Alex Moraru Date: Thu, 7 May 2026 10:22:15 +0300 Subject: [PATCH 04/14] Handles unset object case --- src/fabric_cli/core/fab_exceptions.py | 9 ++++++--- tests/test_utils/test_fab_custom_exception.py | 14 +++++++------- 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/src/fabric_cli/core/fab_exceptions.py b/src/fabric_cli/core/fab_exceptions.py index 0cc239fc9..9c6f3ba8e 100644 --- a/src/fabric_cli/core/fab_exceptions.py +++ b/src/fabric_cli/core/fab_exceptions.py @@ -8,13 +8,16 @@ # Default error constants - avoids circular imports DEFAULT_ERROR_MESSAGE = "An error occurred while processing the operation" DEFAULT_ERROR_CODE = "UnknownError" +NOT_SET = object() class FabricCLIError(Exception): - def __init__(self, message=None, status_code=None): - # Use default values if not provided + def __init__(self, message=None, status_code=NOT_SET): + # Apply defaults only when the caller omitted the argument entirely. + # An explicit None is preserved (e.g. fallback paths that have no code). message = message or DEFAULT_ERROR_MESSAGE - status_code = status_code or DEFAULT_ERROR_CODE + if status_code is NOT_SET: + status_code = DEFAULT_ERROR_CODE super().__init__(message) self.message = message.rstrip(".") diff --git a/tests/test_utils/test_fab_custom_exception.py b/tests/test_utils/test_fab_custom_exception.py index 614d7ea41..c078c6478 100644 --- a/tests/test_utils/test_fab_custom_exception.py +++ b/tests/test_utils/test_fab_custom_exception.py @@ -21,7 +21,7 @@ def test_custom_error_formatted_message_with_status_code(): assert error.formatted_message() == "[404] An error occurred" -def test_fabric_api_error__valid_json_with_request_id(): +def test_fabric_api_error_valid_json_with_request_id(): payload = json.dumps( { "errorCode": "ItemNotFound", @@ -38,7 +38,7 @@ def test_fabric_api_error__valid_json_with_request_id(): assert error.more_details == [] -def test_fabric_api_error__valid_json_without_request_id(): +def test_fabric_api_error_valid_json_without_request_id(): payload = json.dumps( { "errorCode": "Unauthorized", @@ -53,27 +53,27 @@ def test_fabric_api_error__valid_json_without_request_id(): assert "Request Id" not in error.formatted_message(verbose=True) -def test_fabric_api_error__non_json_body_falls_back_to_raw_text(): +def test_fabric_api_error_non_json_body_falls_back_to_raw_text(): raw = "Internal Server Error" error = FabricAPIError(raw) assert error.message == raw.rstrip(".") - assert error.status_code == "UnknownError" + assert error.status_code is None assert error.request_id is None assert error.more_details == [] -def test_fabric_api_error__non_dict_json_falls_back_to_raw_text(): +def test_fabric_api_error_non_dict_json_falls_back_to_raw_text(): # Valid JSON but not an object — should be treated like a non-JSON body. for raw in ('"just a string"', "[1, 2, 3]", "42", "true"): error = FabricAPIError(raw) assert error.message == raw.rstrip(".") - assert error.status_code == "UnknownError" + assert error.status_code is None assert error.request_id is None assert error.more_details == [] -def test_fabric_api_error__formatted_message_non_json__no_request_id_line(): +def test_fabric_api_error_formatted_message_non_json__no_request_id_line(): error = FabricAPIError("Gateway Timeout") formatted = error.formatted_message(verbose=True) assert "Request Id" not in formatted From 823ab90c274365a00cd91c89b61947d6ec214244 Mon Sep 17 00:00:00 2001 From: Alex Moraru Date: Thu, 7 May 2026 10:33:25 +0300 Subject: [PATCH 05/14] Typo Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- tests/test_utils/test_fab_custom_exception.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_utils/test_fab_custom_exception.py b/tests/test_utils/test_fab_custom_exception.py index c078c6478..a149696d2 100644 --- a/tests/test_utils/test_fab_custom_exception.py +++ b/tests/test_utils/test_fab_custom_exception.py @@ -73,7 +73,7 @@ def test_fabric_api_error_non_dict_json_falls_back_to_raw_text(): assert error.more_details == [] -def test_fabric_api_error_formatted_message_non_json__no_request_id_line(): +def test_fabric_api_error_formatted_message_non_json_no_request_id_line(): error = FabricAPIError("Gateway Timeout") formatted = error.formatted_message(verbose=True) assert "Request Id" not in formatted From d6411d512104e63940bdcb318f6cbd1637582e59 Mon Sep 17 00:00:00 2001 From: Alex Moraru Date: Thu, 7 May 2026 10:35:10 +0300 Subject: [PATCH 06/14] Updates comment --- src/fabric_cli/core/fab_exceptions.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/fabric_cli/core/fab_exceptions.py b/src/fabric_cli/core/fab_exceptions.py index 9c6f3ba8e..e15fdf59b 100644 --- a/src/fabric_cli/core/fab_exceptions.py +++ b/src/fabric_cli/core/fab_exceptions.py @@ -13,8 +13,9 @@ class FabricCLIError(Exception): def __init__(self, message=None, status_code=NOT_SET): - # Apply defaults only when the caller omitted the argument entirely. - # An explicit None is preserved (e.g. fallback paths that have no code). + # message: values like (None, "") fall back to the default. + # status_code: default is applied only when omitted entirely; + # an explicit None is preserved (e.g. fallback paths that have no code). message = message or DEFAULT_ERROR_MESSAGE if status_code is NOT_SET: status_code = DEFAULT_ERROR_CODE From bd351deab13e418b5cf74509d020366f6bfd5776 Mon Sep 17 00:00:00 2001 From: Alex Moraru Date: Thu, 7 May 2026 13:26:11 +0300 Subject: [PATCH 07/14] Comment suggestions --- src/fabric_cli/core/fab_exceptions.py | 2 +- tests/test_utils/test_fab_custom_exception.py | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/src/fabric_cli/core/fab_exceptions.py b/src/fabric_cli/core/fab_exceptions.py index e15fdf59b..1bd1d3cd0 100644 --- a/src/fabric_cli/core/fab_exceptions.py +++ b/src/fabric_cli/core/fab_exceptions.py @@ -94,7 +94,7 @@ def __init__(self, response_text): error_code = response.get("errorCode") self.more_details: list[dict] = response.get("moreDetails", []) self.request_id = response.get("requestId") - except (json.JSONDecodeError, ValueError): + except (json.JSONDecodeError, TypeError, ValueError): message = response_text error_code = None self.more_details = [] diff --git a/tests/test_utils/test_fab_custom_exception.py b/tests/test_utils/test_fab_custom_exception.py index a149696d2..69f09e1e7 100644 --- a/tests/test_utils/test_fab_custom_exception.py +++ b/tests/test_utils/test_fab_custom_exception.py @@ -64,7 +64,6 @@ def test_fabric_api_error_non_json_body_falls_back_to_raw_text(): def test_fabric_api_error_non_dict_json_falls_back_to_raw_text(): - # Valid JSON but not an object — should be treated like a non-JSON body. for raw in ('"just a string"', "[1, 2, 3]", "42", "true"): error = FabricAPIError(raw) assert error.message == raw.rstrip(".") @@ -78,3 +77,10 @@ def test_fabric_api_error_formatted_message_non_json_no_request_id_line(): formatted = error.formatted_message(verbose=True) assert "Request Id" not in formatted assert "Gateway Timeout" in formatted + + +def test_fabric_api_error_none_input_falls_back_to_default_message(): + error = FabricAPIError(None) + assert error.status_code is None + assert error.request_id is None + assert error.more_details == [] From 52ffa0be1a0f82715f574edb310b36b3c8e08f05 Mon Sep 17 00:00:00 2001 From: Alex Moraru Date: Fri, 15 May 2026 05:57:37 +0000 Subject: [PATCH 08/14] Propagates sub-errors if debug enabled --- src/fabric_cli/utils/fab_ui.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/fabric_cli/utils/fab_ui.py b/src/fabric_cli/utils/fab_ui.py index a6fbaba71..f5a89e492 100644 --- a/src/fabric_cli/utils/fab_ui.py +++ b/src/fabric_cli/utils/fab_ui.py @@ -204,7 +204,8 @@ def print_output_error( ) return case "text": - _print_error_format_text(error.formatted_message(), command) + is_debug = fab_state_config.get_config(fab_constant.FAB_DEBUG_ENABLED) == "true" + _print_error_format_text(error.formatted_message(verbose=is_debug), command) return case _: raise FabricCLIError( From 0a685a9705052ab3ed31a6f4294be42e32b55d14 Mon Sep 17 00:00:00 2001 From: Alex Moraru Date: Wed, 20 May 2026 09:39:20 +0000 Subject: [PATCH 09/14] Re-records cp tests --- .../test_commands/test_cp/class_setup.yaml | 62 +- ..._cp_folder_to_existing_folder_success.yaml | 1409 ++-- ...folder_to_non_existing_folder_success.yaml | 1019 ++- ...t_cp_folder_to_same_workspace_success.yaml | 1201 ++-- ...er_to_workspace_nested_folder_success.yaml | 2836 ++++---- ...er_to_workspace_non_recursive_failure.yaml | 315 +- .../test_cp_folder_to_workspace_sucess.yaml | 1128 ++-- ..._item_types_success[CosmosDBDatabase].yaml | 1233 ++-- ...rent_item_types_success[DataPipeline].yaml | 1071 ++-- ...rent_item_types_success[KQLDashboard].yaml | 1093 ++-- ...erent_item_types_success[KQLQueryset].yaml | 1092 ++-- ..._item_types_success[MirroredDatabase].yaml | 1120 ++-- ...ifferent_item_types_success[Notebook].yaml | 1120 ++-- ..._different_item_types_success[Reflex].yaml | 1090 ++-- ...tem_types_success[SparkJobDefinition].yaml | 1112 ++-- ..._item_types_success[UserDataFunction].yaml | 1128 ++-- ...t_cp_from_local_recursive_unsupported.yaml | 109 +- ...cp_from_onelake_recursive_unsupported.yaml | 245 +- ..._with_block_on_path_collision_failure.yaml | 755 +-- ...thout_block_on_path_collision_success.yaml | 862 +-- ...tem_to_item_success[CosmosDBDatabase].yaml | 666 +- ...cp_item_to_item_success[DataPipeline].yaml | 573 +- ...cp_item_to_item_success[KQLDashboard].yaml | 573 +- ..._cp_item_to_item_success[KQLQueryset].yaml | 572 +- ...tem_to_item_success[MirroredDatabase].yaml | 579 +- ...est_cp_item_to_item_success[Notebook].yaml | 642 +- .../test_cp_item_to_item_success[Reflex].yaml | 569 +- ...m_to_item_success[SparkJobDefinition].yaml | 574 +- ...tem_to_item_success[UserDataFunction].yaml | 626 +- ...cp_item_to_item_type_mismatch_failure.yaml | 285 +- .../test_cp_local_to_onelake_success.yaml | 323 +- .../test_cp_onelake_operations_success.yaml | 474 +- ...elake_to_local_parquet_binary_success.yaml | 193 +- .../test_cp_onelake_to_local_success.yaml | 254 +- .../test_cp_onelake_to_onelake_success.yaml | 683 +- ..._item_not_supported_failure[.domains].yaml | 54 +- ...item_not_supported_failure[.gateways].yaml | 74 +- .../test_cp_workspace_to_folder_success.yaml | 1341 ++-- ...rkspace_to_item_type_mismatch_failure.yaml | 152 +- ...ce_to_workspace_non_recursive_success.yaml | 992 +-- ...kspace_to_workspace_recursive_success.yaml | 5675 ++++++++--------- ...ce_to_workspace_type_mismatch_failure.yaml | 82 +- 42 files changed, 17202 insertions(+), 18754 deletions(-) diff --git a/tests/test_commands/recordings/test_commands/test_cp/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_cp/class_setup.yaml index 3851a4ab3..612f20a4c 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/class_setup.yaml @@ -11,7 +11,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (None; Linux/6.6.87.2-microsoft-standard-WSL2; Python/3.12.11) + - 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: - - '2308' + - '2588' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:40:16 GMT + - Wed, 20 May 2026 08:33:44 GMT Pragma: - no-cache RequestId: - - 7b546c98-4533-4288-81c6-7ca6074cf2f4 + - 5c301c19-c565-4b04-97c4-df1fcdc930cb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -60,7 +60,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (None; Linux/6.6.87.2-microsoft-standard-WSL2; Python/3.12.11) + - 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: - - '2308' + - '2588' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:40:17 GMT + - Wed, 20 May 2026 08:33:45 GMT Pragma: - no-cache RequestId: - - 7af9bc26-9f8c-44ff-8a34-10f53017f117 + - 5481d892-0423-47f8-bd7c-ec6baa2e818b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (None; Linux/6.6.87.2-microsoft-standard-WSL2; Python/3.12.11) + - 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: - - '425' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:40:20 GMT + - Wed, 20 May 2026 08:33:51 GMT Pragma: - no-cache RequestId: - - d78e7414-567e-42e1-a1b4-0b245ba43d68 + - 98a7fd3b-7404-4458-b4f1-6c1db41f4761 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -162,12 +162,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (None; Linux/6.6.87.2-microsoft-standard-WSL2; Python/3.12.11) + - 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": "ace730cf-7c25-4530-9b0a-403d51a84a39", "displayName": "fabriccli_WorkspacePerTestclass_000001", + string: '{"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", "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: - - Thu, 23 Apr 2026 12:40:28 GMT + - Wed, 20 May 2026 08:33:59 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/ace730cf-7c25-4530-9b0a-403d51a84a39 + - https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1 Pragma: - no-cache RequestId: - - eb7cbfb1-6149-42ee-be23-1d20410cf305 + - 04c05eb2-a6e9-4baf-95db-72e615086e80 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -213,13 +213,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (cp; Linux/6.6.87.2-microsoft-standard-WSL2; Python/3.12.11) + - 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": "ace730cf-7c25-4530-9b0a-403d51a84a39", + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -230,15 +230,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2341' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:42:41 GMT + - Wed, 20 May 2026 09:36:40 GMT Pragma: - no-cache RequestId: - - 25e6e08e-5af6-458c-ad9e-53d5a72071c8 + - 89b0c118-0064-4756-b37a-d3fc5cd41e9b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -264,9 +264,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (cp; Linux/6.6.87.2-microsoft-standard-WSL2; Python/3.12.11) + - 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/ace730cf-7c25-4530-9b0a-403d51a84a39/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: string: '{"value": []}' @@ -282,11 +282,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:42:42 GMT + - Wed, 20 May 2026 09:36:41 GMT Pragma: - no-cache RequestId: - - cd3961eb-0065-455d-8c5f-9e0cf61c6cec + - 212a0afb-a5fc-4264-aa11-5fd48b1bdb13 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -314,9 +314,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (cp; Linux/6.6.87.2-microsoft-standard-WSL2; Python/3.12.11) + - 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/ace730cf-7c25-4530-9b0a-403d51a84a39 + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1 response: body: string: '' @@ -332,11 +332,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 23 Apr 2026 12:42:41 GMT + - Wed, 20 May 2026 09:36:41 GMT Pragma: - no-cache RequestId: - - 727c197e-55e7-46a6-80f1-a427d424afc2 + - 14de4349-b897-47d6-aaaf-9ed19260fe1e 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_to_existing_folder_success.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_existing_folder_success.yaml index e1bae10ba..5b460377c 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_existing_folder_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_existing_folder_success.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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:59:17 GMT + - Wed, 20 May 2026 09:09:22 GMT Pragma: - no-cache RequestId: - - 45bc2f31-ca01-405c-9fca-13ea28dc600f + - 9e190386-a833-4a22-b9c8-1c247c099fc4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:59:18 GMT + - Wed, 20 May 2026 09:09:22 GMT Pragma: - no-cache RequestId: - - 7d9e0d50-46d4-4a5d-b021-4a907ea11478 + - 483851f7-9404-4d63-8d22-26722e81346b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,7 +113,7 @@ 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/capacities response: @@ -127,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:59:23 GMT + - Wed, 20 May 2026 09:09:26 GMT Pragma: - no-cache RequestId: - - 5bc64e1a-dc87-49d3-ae15-2770287fff9c + - d4c50039-b360-4eee-ae6e-05d1683218a5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -160,16 +162,16 @@ interactions: - keep-alive Content-Length: - '89' - 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 response: body: - string: '{"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -178,17 +180,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '154' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:59:30 GMT + - Wed, 20 May 2026 09:09:32 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31 + - https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1 Pragma: - no-cache RequestId: - - 6bb45377-38ab-4813-9e0a-da82980e158d + - 5f62b5a3-a25d-4205-bc4a-261e860371e3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,15 +216,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -231,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2843' + - '2660' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:59:32 GMT + - Wed, 20 May 2026 09:09:34 GMT Pragma: - no-cache RequestId: - - 9293cea6-fa02-4cef-9e88-10459e2ed68c + - 5d60aeec-ddb7-4e72-be51-35634a8351ea Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,15 +269,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -282,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2843' + - '2660' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:59:32 GMT + - Wed, 20 May 2026 09:09:34 GMT Pragma: - no-cache RequestId: - - d54a9e07-f591-499c-8a6c-2fa87e0acf4a + - e68f264b-aca4-413d-a7f7-0b28ae77b2c7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,7 +322,7 @@ 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/capacities response: @@ -332,15 +338,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '425' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:59:38 GMT + - Wed, 20 May 2026 09:09:39 GMT Pragma: - no-cache RequestId: - - a7f2ea7e-8136-4e5c-896f-2068e4f48384 + - f71db654-c485-4aa6-96ad-6a9b3c095d9f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -365,16 +371,16 @@ interactions: - keep-alive Content-Length: - '89' - 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 response: body: - string: '{"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -383,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:59:47 GMT + - Wed, 20 May 2026 09:09:45 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d + - https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d Pragma: - no-cache RequestId: - - 03c7055a-08c6-405c-a36d-71aa7118a64e + - 4fd5ceb1-0e1b-4424-a494-3c0bbb3a63ea Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -419,16 +425,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -437,15 +446,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:59:47 GMT + - Wed, 20 May 2026 09:09:46 GMT Pragma: - no-cache RequestId: - - 6f2dfcdd-f29e-4d67-ab5f-e11c619b5461 + - b5f4e688-f798-47dc-81f6-6f572ddfc3ba Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -471,9 +480,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/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders?recursive=True response: body: string: '{"value": []}' @@ -489,11 +498,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:59:48 GMT + - Wed, 20 May 2026 09:09:46 GMT Pragma: - no-cache RequestId: - - 5d69be79-50b0-4e51-912a-14d14dde28fc + - dd99c280-f93a-4063-bf06-f57a55904119 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -519,9 +528,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/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders?recursive=True response: body: string: '{"value": []}' @@ -537,11 +546,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:59:50 GMT + - Wed, 20 May 2026 09:09:48 GMT Pragma: - no-cache RequestId: - - 9ed88926-a431-4786-ac08-eac1229259bc + - 8c329260-18a7-4dd8-9c0e-12c8f0ff0851 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -565,17 +574,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders response: body: - string: '{"id": "9f2958f1-445e-40eb-b383-b15d4033e88d", "displayName": "fabcli000003", - "workspaceId": "07ad6b91-6dbb-4498-be4b-491db8fd6e31"}' + string: '{"id": "3f83f176-d651-4140-8d2e-9200635c94e7", "displayName": "fabcli000003", + "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -588,13 +597,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:59:51 GMT + - Wed, 20 May 2026 09:09:49 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders/9f2958f1-445e-40eb-b383-b15d4033e88d + - https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders/3f83f176-d651-4140-8d2e-9200635c94e7 Pragma: - no-cache RequestId: - - 26dc4e75-cfd7-4df4-9e59-cb9b9fd85660 + - 4187ea9c-60a4-49e4-8db3-e0d9f78e8c4f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -620,16 +629,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -638,15 +650,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:59:51 GMT + - Wed, 20 May 2026 09:09:49 GMT Pragma: - no-cache RequestId: - - 7ce155da-ce1e-4d37-854b-08b8d2f04383 + - b1cba3e7-969f-4955-be66-6c9fd5dc503a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -672,9 +684,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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True response: body: string: '{"value": []}' @@ -690,11 +702,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:59:52 GMT + - Wed, 20 May 2026 09:09:50 GMT Pragma: - no-cache RequestId: - - 8f82f525-57b3-4fdc-9407-7a3a3ddc43ac + - 1be0b874-acce-434f-8fa5-58019e223c33 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -720,9 +732,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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True response: body: string: '{"value": []}' @@ -738,11 +750,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:59:53 GMT + - Wed, 20 May 2026 09:09:51 GMT Pragma: - no-cache RequestId: - - f432d9ce-5298-40f0-8a17-7c45864ad8c2 + - 99fec00d-aee9-4451-9254-007238275f61 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -766,17 +778,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders response: body: - string: '{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName": "fabcli000004", - "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}' + string: '{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName": "fabcli000004", + "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -785,17 +797,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '133' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:59:54 GMT + - Wed, 20 May 2026 09:09:51 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders/484b68e2-05f9-4fb7-8756-526b3d356774 + - https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders/c44f5fca-9378-493c-afe9-ad54c5fba920 Pragma: - no-cache RequestId: - - 6d6a1723-3d88-4f58-8192-af137235d471 + - 5fd02475-b2df-4716-9cc4-ae8db49bf551 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -821,16 +833,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -839,15 +854,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:59:55 GMT + - Wed, 20 May 2026 09:09:52 GMT Pragma: - no-cache RequestId: - - fb6a9c7c-f855-4aab-8517-7cad722b63bd + - 88bdb9bf-0b27-47e0-a0db-b6a0f21c449f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -873,13 +888,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/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders?recursive=True response: body: - string: '{"value": [{"id": "9f2958f1-445e-40eb-b383-b15d4033e88d", "displayName": - "fabcli000003", "workspaceId": "07ad6b91-6dbb-4498-be4b-491db8fd6e31"}]}' + string: '{"value": [{"id": "3f83f176-d651-4140-8d2e-9200635c94e7", "displayName": + "fabcli000003", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -892,11 +907,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:59:55 GMT + - Wed, 20 May 2026 09:09:53 GMT Pragma: - no-cache RequestId: - - af5d6dac-57a0-4819-916e-6f736b9b3e5d + - c78b6972-e14f-45a6-a8cd-1faf59d06a6f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -922,9 +937,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/07ad6b91-6dbb-4498-be4b-491db8fd6e31/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/items response: body: string: '{"value": []}' @@ -940,11 +955,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:59:56 GMT + - Wed, 20 May 2026 09:09:54 GMT Pragma: - no-cache RequestId: - - 9a61658f-8090-4b46-8978-699758cde06e + - 196d799a-b729-413a-8d68-d8b014e41afc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -970,9 +985,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/07ad6b91-6dbb-4498-be4b-491db8fd6e31/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/items response: body: string: '{"value": []}' @@ -988,11 +1003,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:59:57 GMT + - Wed, 20 May 2026 09:09:54 GMT Pragma: - no-cache RequestId: - - 994e47a6-3d7a-4029-94c1-b55b6988ac80 + - d54a5634-04c6-449f-8b0d-a4d043eb5055 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1007,9 +1022,8 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000005", "type": - "Notebook", "folderId": "9f2958f1-445e-40eb-b383-b15d4033e88d", "definition": - {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", + body: '{"displayName": "fabcli000005", "type": "Notebook", "folderId": "3f83f176-d651-4140-8d2e-9200635c94e7", + "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", "payloadType": "InlineBase64"}]}}' headers: Accept: @@ -1020,13 +1034,12 @@ interactions: - keep-alive Content-Length: - '765' - 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/07ad6b91-6dbb-4498-be4b-491db8fd6e31/notebooks + uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/notebooks response: body: string: 'null' @@ -1042,15 +1055,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:59:59 GMT + - Wed, 20 May 2026 09:09:56 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/04b67ce8-5b0e-4a3b-b80c-942535c9229b + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/599bcdc2-b967-44e9-b5f7-c359d7ac617d Pragma: - no-cache RequestId: - - ed2ffe9d-91ff-4167-a9ee-e12e8286837e + - 8265372c-804c-4343-8373-a0ea8e022b43 Retry-After: - '20' Strict-Transport-Security: @@ -1064,7 +1077,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 04b67ce8-5b0e-4a3b-b80c-942535c9229b + - 599bcdc2-b967-44e9-b5f7-c359d7ac617d status: code: 202 message: Accepted @@ -1080,13 +1093,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/04b67ce8-5b0e-4a3b-b80c-942535c9229b + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/599bcdc2-b967-44e9-b5f7-c359d7ac617d response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:59:59.3002828", - "lastUpdatedTimeUtc": "2026-02-06T08:00:01.0974537", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:09:56.2101992", + "lastUpdatedTimeUtc": "2026-05-20T09:09:57.965755", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1096,17 +1109,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '134' + - '129' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:00:22 GMT + - Wed, 20 May 2026 09:10:17 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/04b67ce8-5b0e-4a3b-b80c-942535c9229b/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/599bcdc2-b967-44e9-b5f7-c359d7ac617d/result Pragma: - no-cache RequestId: - - 74c7f1db-74a4-436c-88bf-45f2c2c130bd + - c279aec3-f443-4331-a4db-9f21f27d2e0f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1114,7 +1127,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 04b67ce8-5b0e-4a3b-b80c-942535c9229b + - 599bcdc2-b967-44e9-b5f7-c359d7ac617d status: code: 200 message: OK @@ -1130,14 +1143,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/04b67ce8-5b0e-4a3b-b80c-942535c9229b/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/599bcdc2-b967-44e9-b5f7-c359d7ac617d/result response: body: - string: '{"id": "5fec321a-312f-408c-bcf6-b04fbe4d1e9d", "type": "Notebook", - "displayName": "fabcli000005", "workspaceId": - "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "folderId": "9f2958f1-445e-40eb-b383-b15d4033e88d"}' + string: '{"id": "1a7d1285-36f8-4bca-a940-ecf1ed9345de", "type": "Notebook", + "displayName": "fabcli000005", "description": "", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1", + "folderId": "3f83f176-d651-4140-8d2e-9200635c94e7"}' headers: Access-Control-Expose-Headers: - RequestId @@ -1148,11 +1161,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 08:00:23 GMT + - Wed, 20 May 2026 09:10:18 GMT Pragma: - no-cache RequestId: - - ec971ce3-9de1-4564-96ea-f67b24ec9971 + - 1387eb11-ba05-4ee3-b6bb-86ce9b2cc8ef Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1176,16 +1189,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1194,15 +1210,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:00:24 GMT + - Wed, 20 May 2026 09:10:19 GMT Pragma: - no-cache RequestId: - - d4910b3d-9a07-417b-9f30-52f38f955f98 + - 4f893189-8746-4758-8f1f-63f1493f90fb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1228,13 +1244,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/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders?recursive=True response: body: - string: '{"value": [{"id": "9f2958f1-445e-40eb-b383-b15d4033e88d", "displayName": - "fabcli000003", "workspaceId": "07ad6b91-6dbb-4498-be4b-491db8fd6e31"}]}' + string: '{"value": [{"id": "3f83f176-d651-4140-8d2e-9200635c94e7", "displayName": + "fabcli000003", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1247,11 +1263,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:00:25 GMT + - Wed, 20 May 2026 09:10:20 GMT Pragma: - no-cache RequestId: - - 96bd8721-a336-4e23-959c-30c6bf17da59 + - 982d33e0-8d8d-4b08-8edb-f2f589cf071b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1277,16 +1293,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1295,15 +1314,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:00:25 GMT + - Wed, 20 May 2026 09:10:20 GMT Pragma: - no-cache RequestId: - - 133fb794-6ce3-4733-8bfe-1735af09c0cd + - 1b05bf1d-9768-4ada-8e0c-db7d8f07b30a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1329,13 +1348,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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True response: body: - string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName": - "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}' + string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName": + "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1344,15 +1363,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:00:25 GMT + - Wed, 20 May 2026 09:10:22 GMT Pragma: - no-cache RequestId: - - ceed46ed-bded-4179-b611-22eb39aa2dd7 + - 1b127988-5f93-4067-b4c3-f16a1e8b6a2d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1378,16 +1397,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1396,15 +1418,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:00:26 GMT + - Wed, 20 May 2026 09:10:22 GMT Pragma: - no-cache RequestId: - - 6964f19c-68f7-4aa4-acb3-40b06509aeee + - e1aba963-c265-4c93-9400-1a021ceb03bd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1430,13 +1452,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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True response: body: - string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName": - "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}' + string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName": + "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1445,15 +1467,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:00:27 GMT + - Wed, 20 May 2026 09:10:24 GMT Pragma: - no-cache RequestId: - - 18e67f5c-1862-4120-969f-61373897163d + - 11b9b144-c996-4d5c-a111-df6db0094479 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1479,13 +1501,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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True response: body: - string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName": - "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}' + string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName": + "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1494,15 +1516,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:00:27 GMT + - Wed, 20 May 2026 09:10:24 GMT Pragma: - no-cache RequestId: - - 218cca87-465c-493b-9b5d-229f0d1a9a38 + - 462f9f97-0f28-42d1-bc4f-54bb95014ffe Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1528,13 +1550,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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True response: body: - string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName": - "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}' + string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName": + "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1543,15 +1565,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:00:28 GMT + - Wed, 20 May 2026 09:10:25 GMT Pragma: - no-cache RequestId: - - 0e6bea5c-1dd4-451e-b87f-3f77776c0095 + - 5c32c634-0ffe-4b1d-94a9-da47e152bbce Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1566,8 +1588,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000003", "parentFolderId": - "484b68e2-05f9-4fb7-8756-526b3d356774"}' + body: '{"displayName": "fabcli000003", "parentFolderId": "c44f5fca-9378-493c-afe9-ad54c5fba920"}' headers: Accept: - '*/*' @@ -1576,17 +1597,17 @@ interactions: Connection: - keep-alive Content-Length: - - '126' + - '93' 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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders response: body: - string: '{"id": "2419af10-a86b-4f18-bf9c-5cb056291f68", "displayName": "fabcli000003", - "parentFolderId": "484b68e2-05f9-4fb7-8756-526b3d356774", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}' + string: '{"id": "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85", "displayName": "fabcli000003", + "parentFolderId": "c44f5fca-9378-493c-afe9-ad54c5fba920", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -1595,17 +1616,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:00:29 GMT + - Wed, 20 May 2026 09:10:26 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders/2419af10-a86b-4f18-bf9c-5cb056291f68 + - https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders/fcb8f2b8-63f8-4c1e-88cd-d44741aaec85 Pragma: - no-cache RequestId: - - 0ca36194-4082-47e5-a291-1a1458a73820 + - 8d521570-0186-4a98-946c-b526c225fe3f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1631,14 +1652,14 @@ 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/07ad6b91-6dbb-4498-be4b-491db8fd6e31/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/items response: body: - string: '{"value": [{"id": "5fec321a-312f-408c-bcf6-b04fbe4d1e9d", "type": "Notebook", - "displayName": "fabcli000005", "workspaceId": - "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "folderId": "9f2958f1-445e-40eb-b383-b15d4033e88d"}]}' + string: '{"value": [{"id": "1a7d1285-36f8-4bca-a940-ecf1ed9345de", "type": "Notebook", + "displayName": "fabcli000005", "description": "", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1", + "folderId": "3f83f176-d651-4140-8d2e-9200635c94e7"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1647,15 +1668,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '208' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:00:29 GMT + - Wed, 20 May 2026 09:10:27 GMT Pragma: - no-cache RequestId: - - f8757eb7-7f2a-4c1b-92f9-793b538ab316 + - 89a6cd5b-c33c-455e-a4b8-3366a58963d2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1681,13 +1702,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/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders?recursive=True response: body: - string: '{"value": [{"id": "9f2958f1-445e-40eb-b383-b15d4033e88d", "displayName": - "fabcli000003", "workspaceId": "07ad6b91-6dbb-4498-be4b-491db8fd6e31"}]}' + string: '{"value": [{"id": "3f83f176-d651-4140-8d2e-9200635c94e7", "displayName": + "fabcli000003", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1700,11 +1721,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:00:31 GMT + - Wed, 20 May 2026 09:10:27 GMT Pragma: - no-cache RequestId: - - 99188d68-e629-467d-a0ff-6a5f086d1a19 + - e70d1d4f-8e00-4bbe-96e2-5fa03180b46a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1730,13 +1751,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/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders?recursive=True response: body: - string: '{"value": [{"id": "9f2958f1-445e-40eb-b383-b15d4033e88d", "displayName": - "fabcli000003", "workspaceId": "07ad6b91-6dbb-4498-be4b-491db8fd6e31"}]}' + string: '{"value": [{"id": "3f83f176-d651-4140-8d2e-9200635c94e7", "displayName": + "fabcli000003", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1749,11 +1770,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:00:31 GMT + - Wed, 20 May 2026 09:10:28 GMT Pragma: - no-cache RequestId: - - cd9689e4-5a32-4d9a-8239-49b4054ccef7 + - 5c14ed82-20b5-4c9f-908b-3e5c0efe70a5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1779,14 +1800,14 @@ 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/07ad6b91-6dbb-4498-be4b-491db8fd6e31/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/items response: body: - string: '{"value": [{"id": "5fec321a-312f-408c-bcf6-b04fbe4d1e9d", "type": "Notebook", - "displayName": "fabcli000005", "workspaceId": - "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "folderId": "9f2958f1-445e-40eb-b383-b15d4033e88d"}]}' + string: '{"value": [{"id": "1a7d1285-36f8-4bca-a940-ecf1ed9345de", "type": "Notebook", + "displayName": "fabcli000005", "description": "", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1", + "folderId": "3f83f176-d651-4140-8d2e-9200635c94e7"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1795,15 +1816,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '208' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:00:32 GMT + - Wed, 20 May 2026 09:10:29 GMT Pragma: - no-cache RequestId: - - c0661e75-6638-451f-bfc7-4dabb51cebf8 + - 6d7c7aa8-817f-4fe1-85a1-1c49741fedd1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1829,13 +1850,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/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders?recursive=True response: body: - string: '{"value": [{"id": "9f2958f1-445e-40eb-b383-b15d4033e88d", "displayName": - "fabcli000003", "workspaceId": "07ad6b91-6dbb-4498-be4b-491db8fd6e31"}]}' + string: '{"value": [{"id": "3f83f176-d651-4140-8d2e-9200635c94e7", "displayName": + "fabcli000003", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1848,11 +1869,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:00:33 GMT + - Wed, 20 May 2026 09:10:30 GMT Pragma: - no-cache RequestId: - - 18003da9-afa2-440d-b7b3-39474b1368bd + - 03cd74d3-99a4-4afe-b3a8-e2c616700ca5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1878,13 +1899,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/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders?recursive=True response: body: - string: '{"value": [{"id": "9f2958f1-445e-40eb-b383-b15d4033e88d", "displayName": - "fabcli000003", "workspaceId": "07ad6b91-6dbb-4498-be4b-491db8fd6e31"}]}' + string: '{"value": [{"id": "3f83f176-d651-4140-8d2e-9200635c94e7", "displayName": + "fabcli000003", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1897,11 +1918,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:00:34 GMT + - Wed, 20 May 2026 09:10:31 GMT Pragma: - no-cache RequestId: - - 1daa6b3c-03fd-41da-bc7a-bbb7e71247c4 + - ccf5eabe-982d-4a37-bb9d-4ad90a3cc81b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1927,16 +1948,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1945,15 +1969,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:00:35 GMT + - Wed, 20 May 2026 09:10:32 GMT Pragma: - no-cache RequestId: - - 789f4a3a-9254-4ba9-9a6d-8fbfa15e947c + - c3f8a79a-9012-4c80-8244-b1a12323fd64 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1979,15 +2003,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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True response: body: - string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName": - "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}, {"id": - "2419af10-a86b-4f18-bf9c-5cb056291f68", "displayName": "fabcli000003", "parentFolderId": - "484b68e2-05f9-4fb7-8756-526b3d356774", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}' + string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName": + "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}, {"id": + "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85", "displayName": "fabcli000003", "parentFolderId": + "c44f5fca-9378-493c-afe9-ad54c5fba920", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1996,15 +2020,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '204' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:00:35 GMT + - Wed, 20 May 2026 09:10:33 GMT Pragma: - no-cache RequestId: - - 5470004d-f2d0-4023-b740-a9df3d7bac15 + - b682144d-4ba8-4505-b7ae-732cad5b62b2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2030,55 +2054,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True - response: - body: - string: '{"requestId": "44ce219d-7d6a-4ae6-a029-3b604c5b3880", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 8:01:25 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 08:00:36 GMT - RequestId: - - 44ce219d-7d6a-4ae6-a029-3b604c5b3880 - Retry-After: - - '48' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True response: body: - string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName": - "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}, {"id": - "2419af10-a86b-4f18-bf9c-5cb056291f68", "displayName": "fabcli000003", "parentFolderId": - "484b68e2-05f9-4fb7-8756-526b3d356774", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}' + string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName": + "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}, {"id": + "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85", "displayName": "fabcli000003", "parentFolderId": + "c44f5fca-9378-493c-afe9-ad54c5fba920", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2087,15 +2071,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '204' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:01:27 GMT + - Wed, 20 May 2026 09:10:34 GMT Pragma: - no-cache RequestId: - - a53cc5e9-ec44-4e85-805d-03a09855a6ec + - 4736d321-ec3b-4aab-907c-967f874840db Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2121,9 +2105,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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/items response: body: string: '{"value": []}' @@ -2139,11 +2123,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:01:29 GMT + - Wed, 20 May 2026 09:10:34 GMT Pragma: - no-cache RequestId: - - 38a51f7d-aeb8-494a-bf25-35ccb4e12f62 + - d78f5048-8537-48be-8e3c-aff071781540 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2169,9 +2153,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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/items response: body: string: '{"value": []}' @@ -2187,11 +2171,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:01:29 GMT + - Wed, 20 May 2026 09:10:35 GMT Pragma: - no-cache RequestId: - - a6807736-8a41-4c40-b0aa-11080ac763e1 + - 0989aad4-64b5-484b-9516-3a7f8af852e9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2217,9 +2201,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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/items response: body: string: '{"value": []}' @@ -2235,11 +2219,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:01:30 GMT + - Wed, 20 May 2026 09:10:36 GMT Pragma: - no-cache RequestId: - - fadbe157-2695-4e2b-aad5-a84906d12e90 + - 372e226b-fd8d-433f-98ff-f9c3af009655 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2265,14 +2249,14 @@ 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/07ad6b91-6dbb-4498-be4b-491db8fd6e31/items/5fec321a-312f-408c-bcf6-b04fbe4d1e9d + uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/items/1a7d1285-36f8-4bca-a940-ecf1ed9345de response: body: - string: '{"id": "5fec321a-312f-408c-bcf6-b04fbe4d1e9d", "type": "Notebook", - "displayName": "fabcli000005", "workspaceId": - "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "folderId": "9f2958f1-445e-40eb-b383-b15d4033e88d"}' + string: '{"id": "1a7d1285-36f8-4bca-a940-ecf1ed9345de", "type": "Notebook", + "displayName": "fabcli000005", "description": "", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1", + "folderId": "3f83f176-d651-4140-8d2e-9200635c94e7"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -2281,17 +2265,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '196' + - '185' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:01:31 GMT + - Wed, 20 May 2026 09:10:37 GMT ETag: - '""' Pragma: - no-cache RequestId: - - eff4f24f-5a99-44f4-b036-2b6c8841b26a + - ef88ab80-9153-485c-8ed5-b9abfeffcc89 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2319,9 +2303,9 @@ interactions: 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/07ad6b91-6dbb-4498-be4b-491db8fd6e31/items/5fec321a-312f-408c-bcf6-b04fbe4d1e9d/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/items/1a7d1285-36f8-4bca-a940-ecf1ed9345de/getDefinition response: body: string: 'null' @@ -2337,13 +2321,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:01:32 GMT + - Wed, 20 May 2026 09:10:38 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d7aa0210-0753-4d88-aa86-549c58420a59 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ce08e980-20f8-481d-8ca2-8ccf188caebb Pragma: - no-cache RequestId: - - de27b388-b836-4c6d-be4f-a34b6022ce77 + - 97c15011-83e0-4390-b05b-2c0e491915ba Retry-After: - '20' Strict-Transport-Security: @@ -2357,7 +2341,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - d7aa0210-0753-4d88-aa86-549c58420a59 + - ce08e980-20f8-481d-8ca2-8ccf188caebb status: code: 202 message: Accepted @@ -2373,13 +2357,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d7aa0210-0753-4d88-aa86-549c58420a59 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ce08e980-20f8-481d-8ca2-8ccf188caebb response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:01:32.714454", - "lastUpdatedTimeUtc": "2026-02-06T08:01:33.0269614", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:10:38.5345865", + "lastUpdatedTimeUtc": "2026-05-20T09:10:39.2582417", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -2389,17 +2373,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '129' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:01:54 GMT + - Wed, 20 May 2026 09:10:58 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d7aa0210-0753-4d88-aa86-549c58420a59/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ce08e980-20f8-481d-8ca2-8ccf188caebb/result Pragma: - no-cache RequestId: - - da3339e3-790c-4bd4-9f24-1bb9fb64e7dc + - 63bb3202-a13b-40b2-904f-b1b8ddc980b2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2407,7 +2391,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - d7aa0210-0753-4d88-aa86-549c58420a59 + - ce08e980-20f8-481d-8ca2-8ccf188caebb status: code: 200 message: OK @@ -2423,14 +2407,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d7aa0210-0753-4d88-aa86-549c58420a59/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ce08e980-20f8-481d-8ca2-8ccf188caebb/result response: body: string: '{"definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDUiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDUiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -2442,11 +2426,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 08:01:54 GMT + - Wed, 20 May 2026 09:10:59 GMT Pragma: - no-cache RequestId: - - 22c59680-c269-48cd-ab73-6a8e256c18d8 + - efe7fff6-4a16-4dc6-81e6-cff5ecf0e82e Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -2459,10 +2443,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "Notebook", "displayName": "fabcli000005", - "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDUiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", - "payloadType": "InlineBase64"}]}, "folderId": "2419af10-a86b-4f18-bf9c-5cb056291f68"}' + body: '{"type": "Notebook", "displayName": "fabcli000005", "definition": {"parts": + [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDUiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}]}, "folderId": "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85"}' headers: Accept: - '*/*' @@ -2471,14 +2455,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1286' - + - '1238' 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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/items response: body: string: 'null' @@ -2494,15 +2477,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:01:56 GMT + - Wed, 20 May 2026 09:11:01 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c5b5b820-fdb1-4c4a-9e5a-eb7b08da44d7 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c20d047d-8367-4b11-b5ab-90e68baca971 Pragma: - no-cache RequestId: - - 5a3878e9-f41d-446b-8068-ef9385638655 + - 81c801ae-b5a9-41dd-bb7c-73dcc1445f3b Retry-After: - '20' Strict-Transport-Security: @@ -2516,7 +2499,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - c5b5b820-fdb1-4c4a-9e5a-eb7b08da44d7 + - c20d047d-8367-4b11-b5ab-90e68baca971 status: code: 202 message: Accepted @@ -2532,13 +2515,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c5b5b820-fdb1-4c4a-9e5a-eb7b08da44d7 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c20d047d-8367-4b11-b5ab-90e68baca971 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:01:56.7654162", - "lastUpdatedTimeUtc": "2026-02-06T08:02:00.1097407", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:11:01.714378", + "lastUpdatedTimeUtc": "2026-05-20T09:11:03.4389801", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -2548,17 +2531,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:02:19 GMT + - Wed, 20 May 2026 09:11:23 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c5b5b820-fdb1-4c4a-9e5a-eb7b08da44d7/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c20d047d-8367-4b11-b5ab-90e68baca971/result Pragma: - no-cache RequestId: - - f9d70dbe-5949-409b-9596-85dbc3eb3fb7 + - 071bffa3-d300-44ee-a0e6-c232b99dbff3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2566,7 +2549,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - c5b5b820-fdb1-4c4a-9e5a-eb7b08da44d7 + - c20d047d-8367-4b11-b5ab-90e68baca971 status: code: 200 message: OK @@ -2582,14 +2565,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c5b5b820-fdb1-4c4a-9e5a-eb7b08da44d7/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c20d047d-8367-4b11-b5ab-90e68baca971/result response: body: - string: '{"id": "0cafb7a7-94c2-40e7-aafe-7583746cc9e8", "type": "Notebook", - "displayName": "fabcli000005", "workspaceId": - "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "folderId": "2419af10-a86b-4f18-bf9c-5cb056291f68"}' + string: '{"id": "7e7788f8-b805-4e95-a513-430fcd023b8f", "type": "Notebook", + "displayName": "fabcli000005", "description": "", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d", + "folderId": "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85"}' headers: Access-Control-Expose-Headers: - RequestId @@ -2600,11 +2583,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 08:02:19 GMT + - Wed, 20 May 2026 09:11:23 GMT Pragma: - no-cache RequestId: - - f85ec897-ea7b-4b23-91ce-7d49179e6327 + - 301dd0c7-9181-4bad-a614-1a0df3cc73d8 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -2628,14 +2611,14 @@ 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/07ad6b91-6dbb-4498-be4b-491db8fd6e31/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/items response: body: - string: '{"value": [{"id": "5fec321a-312f-408c-bcf6-b04fbe4d1e9d", "type": "Notebook", - "displayName": "fabcli000005", "workspaceId": - "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "folderId": "9f2958f1-445e-40eb-b383-b15d4033e88d"}]}' + string: '{"value": [{"id": "1a7d1285-36f8-4bca-a940-ecf1ed9345de", "type": "Notebook", + "displayName": "fabcli000005", "description": "", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1", + "folderId": "3f83f176-d651-4140-8d2e-9200635c94e7"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2644,15 +2627,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '208' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:02:21 GMT + - Wed, 20 May 2026 09:11:24 GMT Pragma: - no-cache RequestId: - - 758d7216-fd33-43a6-b009-3ead8963a609 + - dd7ee88f-5ea2-41ca-aaa5-2925a9c32ed2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2678,13 +2661,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/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders?recursive=True response: body: - string: '{"value": [{"id": "9f2958f1-445e-40eb-b383-b15d4033e88d", "displayName": - "fabcli000003", "workspaceId": "07ad6b91-6dbb-4498-be4b-491db8fd6e31"}]}' + string: '{"value": [{"id": "3f83f176-d651-4140-8d2e-9200635c94e7", "displayName": + "fabcli000003", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2697,11 +2680,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:02:21 GMT + - Wed, 20 May 2026 09:11:25 GMT Pragma: - no-cache RequestId: - - a662a0b9-d561-4120-b51d-b3087bde192d + - 4f99ec20-984c-4c2e-827c-3da7d5f496f4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2727,13 +2710,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/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders?recursive=True response: body: - string: '{"value": [{"id": "9f2958f1-445e-40eb-b383-b15d4033e88d", "displayName": - "fabcli000003", "workspaceId": "07ad6b91-6dbb-4498-be4b-491db8fd6e31"}]}' + string: '{"value": [{"id": "3f83f176-d651-4140-8d2e-9200635c94e7", "displayName": + "fabcli000003", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2746,11 +2729,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:02:22 GMT + - Wed, 20 May 2026 09:11:26 GMT Pragma: - no-cache RequestId: - - 20636dbc-3ee9-48e7-ad94-774f05ace87c + - 676167b2-fbb3-4681-bb62-d2fd550e8a81 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2776,16 +2759,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2794,15 +2780,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:02:23 GMT + - Wed, 20 May 2026 09:11:27 GMT Pragma: - no-cache RequestId: - - 3acd9dcd-dc33-4893-9f7a-932f8bc71e15 + - dce1d569-0f16-4acd-b71f-31e66945f89c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2828,15 +2814,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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True response: body: - string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName": - "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}, {"id": - "2419af10-a86b-4f18-bf9c-5cb056291f68", "displayName": "fabcli000003", "parentFolderId": - "484b68e2-05f9-4fb7-8756-526b3d356774", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}' + string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName": + "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}, {"id": + "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85", "displayName": "fabcli000003", "parentFolderId": + "c44f5fca-9378-493c-afe9-ad54c5fba920", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2845,15 +2831,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '204' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:02:24 GMT + - Wed, 20 May 2026 09:11:28 GMT Pragma: - no-cache RequestId: - - da4b82d0-c043-4c9b-a3e3-4dde7f55dcf2 + - 04ee2f5f-9336-4cf6-920c-07ffdd179836 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2879,14 +2865,14 @@ 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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/items response: body: - string: '{"value": [{"id": "0cafb7a7-94c2-40e7-aafe-7583746cc9e8", "type": "Notebook", - "displayName": "fabcli000005", "workspaceId": - "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "folderId": "2419af10-a86b-4f18-bf9c-5cb056291f68"}]}' + string: '{"value": [{"id": "7e7788f8-b805-4e95-a513-430fcd023b8f", "type": "Notebook", + "displayName": "fabcli000005", "description": "", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d", + "folderId": "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2895,15 +2881,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '209' + - '198' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:02:25 GMT + - Wed, 20 May 2026 09:11:29 GMT Pragma: - no-cache RequestId: - - 75a9b9db-a0d3-4b14-b590-8e5fe3abc0e7 + - 3f6767cf-5bae-4218-802e-aec782447adc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2929,15 +2915,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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True response: body: - string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName": - "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}, {"id": - "2419af10-a86b-4f18-bf9c-5cb056291f68", "displayName": "fabcli000003", "parentFolderId": - "484b68e2-05f9-4fb7-8756-526b3d356774", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}' + string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName": + "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}, {"id": + "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85", "displayName": "fabcli000003", "parentFolderId": + "c44f5fca-9378-493c-afe9-ad54c5fba920", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2946,15 +2932,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '204' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:02:26 GMT + - Wed, 20 May 2026 09:11:30 GMT Pragma: - no-cache RequestId: - - 9a2afae2-38c9-43bf-ab26-2ecd75a75afd + - 131eadef-80ef-4f82-bc5d-e2f1d4ccd9d6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2980,15 +2966,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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True response: body: - string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName": - "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}, {"id": - "2419af10-a86b-4f18-bf9c-5cb056291f68", "displayName": "fabcli000003", "parentFolderId": - "484b68e2-05f9-4fb7-8756-526b3d356774", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}' + string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName": + "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}, {"id": + "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85", "displayName": "fabcli000003", "parentFolderId": + "c44f5fca-9378-493c-afe9-ad54c5fba920", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2997,15 +2983,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '204' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:02:27 GMT + - Wed, 20 May 2026 09:11:30 GMT Pragma: - no-cache RequestId: - - 4f36ecbe-ff7a-4c5f-b464-8c9f2bedc2bd + - 3d142b6f-9cbe-4548-8471-47024e9c9e9b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3031,16 +3017,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3049,15 +3038,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:02:27 GMT + - Wed, 20 May 2026 09:11:31 GMT Pragma: - no-cache RequestId: - - de2495b6-72f3-4513-9b53-0b56a21dd79a + - b9b28c6d-f07e-4a39-9fe2-3b4a5c97176d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3083,15 +3072,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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True response: body: - string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName": - "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}, {"id": - "2419af10-a86b-4f18-bf9c-5cb056291f68", "displayName": "fabcli000003", "parentFolderId": - "484b68e2-05f9-4fb7-8756-526b3d356774", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}' + string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName": + "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}, {"id": + "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85", "displayName": "fabcli000003", "parentFolderId": + "c44f5fca-9378-493c-afe9-ad54c5fba920", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3100,15 +3089,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '204' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:02:28 GMT + - Wed, 20 May 2026 09:11:32 GMT Pragma: - no-cache RequestId: - - 554ad3bc-21d2-42be-8b65-133529732955 + - 18b2b34c-3370-41a5-b529-8439137d57db Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3134,15 +3123,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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True response: body: - string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName": - "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}, {"id": - "2419af10-a86b-4f18-bf9c-5cb056291f68", "displayName": "fabcli000003", "parentFolderId": - "484b68e2-05f9-4fb7-8756-526b3d356774", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}' + string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName": + "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}, {"id": + "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85", "displayName": "fabcli000003", "parentFolderId": + "c44f5fca-9378-493c-afe9-ad54c5fba920", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3151,15 +3140,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '204' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:02:29 GMT + - Wed, 20 May 2026 09:11:32 GMT Pragma: - no-cache RequestId: - - d7067c49-11e7-44fa-b383-97b688822ff7 + - 84e9df05-8031-4972-9023-38e441644417 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3185,14 +3174,14 @@ 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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/items response: body: - string: '{"value": [{"id": "0cafb7a7-94c2-40e7-aafe-7583746cc9e8", "type": "Notebook", - "displayName": "fabcli000005", "workspaceId": - "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "folderId": "2419af10-a86b-4f18-bf9c-5cb056291f68"}]}' + string: '{"value": [{"id": "7e7788f8-b805-4e95-a513-430fcd023b8f", "type": "Notebook", + "displayName": "fabcli000005", "description": "", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d", + "folderId": "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3201,15 +3190,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '209' + - '198' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:02:30 GMT + - Wed, 20 May 2026 09:11:34 GMT Pragma: - no-cache RequestId: - - 518b1e3b-f72c-473d-ab92-698d51642f91 + - a67d990c-6455-4446-97c0-f8a879a41676 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3235,15 +3224,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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True response: body: - string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName": - "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}, {"id": - "2419af10-a86b-4f18-bf9c-5cb056291f68", "displayName": "fabcli000003", "parentFolderId": - "484b68e2-05f9-4fb7-8756-526b3d356774", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}' + string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName": + "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}, {"id": + "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85", "displayName": "fabcli000003", "parentFolderId": + "c44f5fca-9378-493c-afe9-ad54c5fba920", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3252,15 +3241,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '204' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:02:30 GMT + - Wed, 20 May 2026 09:11:35 GMT Pragma: - no-cache RequestId: - - 5787854f-1291-4612-99da-b6d212c2c457 + - 5d224377-ed70-4619-acd8-c42fe2547e64 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3286,15 +3275,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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True response: body: - string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName": - "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}, {"id": - "2419af10-a86b-4f18-bf9c-5cb056291f68", "displayName": "fabcli000003", "parentFolderId": - "484b68e2-05f9-4fb7-8756-526b3d356774", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}' + string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName": + "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}, {"id": + "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85", "displayName": "fabcli000003", "parentFolderId": + "c44f5fca-9378-493c-afe9-ad54c5fba920", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3303,15 +3292,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '204' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:02:32 GMT + - Wed, 20 May 2026 09:11:35 GMT Pragma: - no-cache RequestId: - - 2cdf7359-0e81-472e-b68a-0ce992d4d319 + - 98bf5cba-5493-4fc4-8703-193e0296ad2a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3337,16 +3326,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3355,15 +3347,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:02:33 GMT + - Wed, 20 May 2026 09:11:37 GMT Pragma: - no-cache RequestId: - - 673f26d7-4f55-4c31-bda6-1ddfc72498a6 + - a4aa1026-77f9-43c3-bcc2-28c6d3e9e5c4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3389,15 +3381,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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True response: body: - string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName": - "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}, {"id": - "2419af10-a86b-4f18-bf9c-5cb056291f68", "displayName": "fabcli000003", "parentFolderId": - "484b68e2-05f9-4fb7-8756-526b3d356774", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}' + string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName": + "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}, {"id": + "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85", "displayName": "fabcli000003", "parentFolderId": + "c44f5fca-9378-493c-afe9-ad54c5fba920", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3406,15 +3398,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '204' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:02:33 GMT + - Wed, 20 May 2026 09:11:37 GMT Pragma: - no-cache RequestId: - - c3239c2a-ae83-4eb4-812a-22b1294842b6 + - b789753f-c717-4cd2-9fa3-7c31f6eed690 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3440,15 +3432,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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True response: body: - string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName": - "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}, {"id": - "2419af10-a86b-4f18-bf9c-5cb056291f68", "displayName": "fabcli000003", "parentFolderId": - "484b68e2-05f9-4fb7-8756-526b3d356774", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}' + string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName": + "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}, {"id": + "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85", "displayName": "fabcli000003", "parentFolderId": + "c44f5fca-9378-493c-afe9-ad54c5fba920", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3457,15 +3449,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '204' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:02:34 GMT + - Wed, 20 May 2026 09:11:38 GMT Pragma: - no-cache RequestId: - - e30e519b-74ca-4ef9-8144-b51955dcac2f + - e6b4c964-bcf5-4346-a9c0-8a749a53b0e4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3491,14 +3483,14 @@ 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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/items response: body: - string: '{"value": [{"id": "0cafb7a7-94c2-40e7-aafe-7583746cc9e8", "type": "Notebook", - "displayName": "fabcli000005", "workspaceId": - "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "folderId": "2419af10-a86b-4f18-bf9c-5cb056291f68"}]}' + string: '{"value": [{"id": "7e7788f8-b805-4e95-a513-430fcd023b8f", "type": "Notebook", + "displayName": "fabcli000005", "description": "", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d", + "folderId": "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3507,15 +3499,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '209' + - '198' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:02:35 GMT + - Wed, 20 May 2026 09:11:39 GMT Pragma: - no-cache RequestId: - - e5e61a83-3794-426d-b548-33c120a40d2c + - 5ef03dca-1260-428e-a698-6711d8ab3e67 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3541,15 +3533,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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True response: body: - string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName": - "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}, {"id": - "2419af10-a86b-4f18-bf9c-5cb056291f68", "displayName": "fabcli000003", "parentFolderId": - "484b68e2-05f9-4fb7-8756-526b3d356774", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}' + string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName": + "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}, {"id": + "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85", "displayName": "fabcli000003", "parentFolderId": + "c44f5fca-9378-493c-afe9-ad54c5fba920", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3558,15 +3550,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '204' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:02:35 GMT + - Wed, 20 May 2026 09:11:40 GMT Pragma: - no-cache RequestId: - - b2a7237d-52a7-4176-8713-dc90d5e0db2b + - ee4348b7-8949-4516-8003-92a1a60ee7a3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3594,9 +3586,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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/items/0cafb7a7-94c2-40e7-aafe-7583746cc9e8 + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/items/7e7788f8-b805-4e95-a513-430fcd023b8f response: body: string: '' @@ -3612,11 +3604,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:02:36 GMT + - Wed, 20 May 2026 09:11:41 GMT Pragma: - no-cache RequestId: - - f9f83446-875c-4446-92ca-50fe5b842af3 + - 6423c477-4e61-40a5-9a18-f0b4882e5f29 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3642,16 +3634,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3660,15 +3655,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:02:36 GMT + - Wed, 20 May 2026 09:11:42 GMT Pragma: - no-cache RequestId: - - 9c7063bd-9a7d-42c0-8efe-cad30b6da7dc + - 724b87c9-ac14-47e5-82a3-a423d20a4dcb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3694,15 +3689,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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True response: body: - string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName": - "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}, {"id": - "2419af10-a86b-4f18-bf9c-5cb056291f68", "displayName": "fabcli000003", "parentFolderId": - "484b68e2-05f9-4fb7-8756-526b3d356774", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}' + string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName": + "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}, {"id": + "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85", "displayName": "fabcli000003", "parentFolderId": + "c44f5fca-9378-493c-afe9-ad54c5fba920", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3711,15 +3706,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '204' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:02:37 GMT + - Wed, 20 May 2026 09:11:43 GMT Pragma: - no-cache RequestId: - - 78a71b39-a7b9-45d1-b2e2-008600c9dcbe + - ac439b09-1079-47a7-92ee-37263cac3546 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3745,15 +3740,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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True response: body: - string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName": - "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}, {"id": - "2419af10-a86b-4f18-bf9c-5cb056291f68", "displayName": "fabcli000003", "parentFolderId": - "484b68e2-05f9-4fb7-8756-526b3d356774", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}' + string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName": + "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}, {"id": + "fcb8f2b8-63f8-4c1e-88cd-d44741aaec85", "displayName": "fabcli000003", "parentFolderId": + "c44f5fca-9378-493c-afe9-ad54c5fba920", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3762,15 +3757,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '204' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:02:38 GMT + - Wed, 20 May 2026 09:11:44 GMT Pragma: - no-cache RequestId: - - 15b65a32-bb92-48b1-8974-e4f729d1350d + - 415bc82b-29ad-4316-bf3e-d9583ba7fd4a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3798,9 +3793,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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders/2419af10-a86b-4f18-bf9c-5cb056291f68 + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders/fcb8f2b8-63f8-4c1e-88cd-d44741aaec85 response: body: string: '' @@ -3816,11 +3811,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:02:38 GMT + - Wed, 20 May 2026 09:11:45 GMT Pragma: - no-cache RequestId: - - 7148ced9-fb02-4cfe-b70f-194e9d4141e1 + - 8e7ba776-4398-4ada-8ce6-3de8bbf86e30 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3846,16 +3841,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3864,15 +3862,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:02:39 GMT + - Wed, 20 May 2026 09:11:46 GMT Pragma: - no-cache RequestId: - - a184023c-9375-4a4f-8e5b-79dd86dcfdce + - 0a358d06-92a8-44e0-b14f-eb139a3262e2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3898,13 +3896,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/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders?recursive=True response: body: - string: '{"value": [{"id": "9f2958f1-445e-40eb-b383-b15d4033e88d", "displayName": - "fabcli000003", "workspaceId": "07ad6b91-6dbb-4498-be4b-491db8fd6e31"}]}' + string: '{"value": [{"id": "3f83f176-d651-4140-8d2e-9200635c94e7", "displayName": + "fabcli000003", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3917,11 +3915,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:02:39 GMT + - Wed, 20 May 2026 09:11:46 GMT Pragma: - no-cache RequestId: - - 74f17d7f-6152-4f4b-930c-6d8ac50e186c + - 5c80db5a-3bf0-4ca2-b4a4-36e086447d13 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3947,14 +3945,14 @@ 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/07ad6b91-6dbb-4498-be4b-491db8fd6e31/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/items response: body: - string: '{"value": [{"id": "5fec321a-312f-408c-bcf6-b04fbe4d1e9d", "type": "Notebook", - "displayName": "fabcli000005", "workspaceId": - "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "folderId": "9f2958f1-445e-40eb-b383-b15d4033e88d"}]}' + string: '{"value": [{"id": "1a7d1285-36f8-4bca-a940-ecf1ed9345de", "type": "Notebook", + "displayName": "fabcli000005", "description": "", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1", + "folderId": "3f83f176-d651-4140-8d2e-9200635c94e7"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3963,15 +3961,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '208' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:02:40 GMT + - Wed, 20 May 2026 09:11:47 GMT Pragma: - no-cache RequestId: - - dd4b05a7-b704-42d3-a056-87fc126dff33 + - 4bd1fe26-942b-4905-93c8-3d721477e48b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3997,53 +3995,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/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders?recursive=True response: body: - string: '{"requestId": "380b0482-9805-4fff-9054-5b30f08bb108", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 8:03:29 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 08:02:40 GMT - RequestId: - - 380b0482-9805-4fff-9054-5b30f08bb108 - Retry-After: - - '48' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders?recursive=True - response: - body: - string: '{"value": [{"id": "9f2958f1-445e-40eb-b383-b15d4033e88d", "displayName": - "fabcli000003", "workspaceId": "07ad6b91-6dbb-4498-be4b-491db8fd6e31"}]}' + string: '{"value": [{"id": "3f83f176-d651-4140-8d2e-9200635c94e7", "displayName": + "fabcli000003", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4056,11 +4014,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:03:33 GMT + - Wed, 20 May 2026 09:11:48 GMT Pragma: - no-cache RequestId: - - 6e6cf4c0-ac70-4eb0-8ed1-6107489d29e8 + - 3e6be5fd-348d-44dc-ad09-d0323fec92c8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4088,9 +4046,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/07ad6b91-6dbb-4498-be4b-491db8fd6e31/items/5fec321a-312f-408c-bcf6-b04fbe4d1e9d + uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/items/1a7d1285-36f8-4bca-a940-ecf1ed9345de response: body: string: '' @@ -4106,11 +4064,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:03:34 GMT + - Wed, 20 May 2026 09:11:49 GMT Pragma: - no-cache RequestId: - - fda64f33-d250-4667-b065-a3915cce2819 + - 0deada96-7a11-4b07-acae-701f7f721ae6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4136,16 +4094,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4154,15 +4115,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:03:34 GMT + - Wed, 20 May 2026 09:11:49 GMT Pragma: - no-cache RequestId: - - acc827d6-267b-4223-ad89-87ddd8e83679 + - 4e7e6490-64ac-4a97-80bf-62ce8084ab57 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4188,13 +4149,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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders?recursive=True response: body: - string: '{"value": [{"id": "484b68e2-05f9-4fb7-8756-526b3d356774", "displayName": - "fabcli000004", "workspaceId": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d"}]}' + string: '{"value": [{"id": "c44f5fca-9378-493c-afe9-ad54c5fba920", "displayName": + "fabcli000004", "workspaceId": "020b4c31-2ffb-401e-832b-39cb0808553d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4203,15 +4164,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:03:35 GMT + - Wed, 20 May 2026 09:11:50 GMT Pragma: - no-cache RequestId: - - 74b379ee-9288-468c-8706-06f8906ad397 + - b8a74017-4f97-4fcb-8088-d2c86e8e03ed Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4239,9 +4200,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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/folders/484b68e2-05f9-4fb7-8756-526b3d356774 + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/folders/c44f5fca-9378-493c-afe9-ad54c5fba920 response: body: string: '' @@ -4257,11 +4218,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:03:36 GMT + - Wed, 20 May 2026 09:11:51 GMT Pragma: - no-cache RequestId: - - 818c520a-b5f2-4e0a-99de-6cae2f6350a4 + - caf61601-6ef9-4364-8fa0-6c71b6d141d5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4287,16 +4248,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4305,15 +4269,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:03:37 GMT + - Wed, 20 May 2026 09:11:52 GMT Pragma: - no-cache RequestId: - - c51d2bc1-479a-437b-aee1-0fe2749400dd + - cbae3f28-ed85-4cef-a45f-03f3e95f0867 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4339,13 +4303,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/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders?recursive=True response: body: - string: '{"value": [{"id": "9f2958f1-445e-40eb-b383-b15d4033e88d", "displayName": - "fabcli000003", "workspaceId": "07ad6b91-6dbb-4498-be4b-491db8fd6e31"}]}' + string: '{"value": [{"id": "3f83f176-d651-4140-8d2e-9200635c94e7", "displayName": + "fabcli000003", "workspaceId": "d602cf01-30df-4b89-b458-b57093dfb7d1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4358,11 +4322,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:03:38 GMT + - Wed, 20 May 2026 09:11:52 GMT Pragma: - no-cache RequestId: - - e045ad56-f6ab-4826-a3e0-6a7602a8da46 + - 362fd85d-4d76-42fc-86c2-870aa780a531 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4390,9 +4354,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/07ad6b91-6dbb-4498-be4b-491db8fd6e31/folders/9f2958f1-445e-40eb-b383-b15d4033e88d + uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/folders/3f83f176-d651-4140-8d2e-9200635c94e7 response: body: string: '' @@ -4408,11 +4372,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:03:38 GMT + - Wed, 20 May 2026 09:11:53 GMT Pragma: - no-cache RequestId: - - 27b36c95-0796-423f-a256-e2660a2b7c57 + - c0a44228-f69c-4159-8366-6f5f55634aff Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4438,16 +4402,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07ad6b91-6dbb-4498-be4b-491db8fd6e31", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d602cf01-30df-4b89-b458-b57093dfb7d1", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4456,15 +4423,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:03:40 GMT + - Wed, 20 May 2026 09:11:53 GMT Pragma: - no-cache RequestId: - - b69b0577-5817-4a63-9c36-cc4cc909c769 + - f51e68d3-ed5a-413c-ad22-6dbcf65c6b8e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4490,9 +4457,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/07ad6b91-6dbb-4498-be4b-491db8fd6e31/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1/items response: body: string: '{"value": []}' @@ -4508,11 +4475,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:03:41 GMT + - Wed, 20 May 2026 09:11:54 GMT Pragma: - no-cache RequestId: - - 90b0c4b8-d4b4-472a-8cf7-3ca21313beef + - cf0d7303-fbee-4487-a489-8a197f3fc9b8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4540,9 +4507,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/07ad6b91-6dbb-4498-be4b-491db8fd6e31 + uri: https://api.fabric.microsoft.com/v1/workspaces/d602cf01-30df-4b89-b458-b57093dfb7d1 response: body: string: '' @@ -4558,11 +4525,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:03:41 GMT + - Wed, 20 May 2026 09:11:55 GMT Pragma: - no-cache RequestId: - - e1e103a6-f020-43d5-b9d8-5b4dd2c72b80 + - 1d4f1b6b-8ac7-42de-bb11-266f5f814860 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4588,15 +4555,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "2b46dd8b-6a28-4767-8993-0e5e13fe9d6d", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "020b4c31-2ffb-401e-832b-39cb0808553d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4605,15 +4574,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2846' + - '2659' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:03:42 GMT + - Wed, 20 May 2026 09:11:56 GMT Pragma: - no-cache RequestId: - - 4bf27423-464a-42c4-8f3b-c2318ac56d4d + - 55218cf6-d8e5-48d8-b205-2a88fe3111da Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4639,9 +4608,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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d/items response: body: string: '{"value": []}' @@ -4657,11 +4626,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:03:43 GMT + - Wed, 20 May 2026 09:11:57 GMT Pragma: - no-cache RequestId: - - 23146378-bb42-4a2b-b4c5-04f7b24779a8 + - 556895b3-9b47-4d5e-a49b-5cb35fb6cf88 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4689,9 +4658,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/2b46dd8b-6a28-4767-8993-0e5e13fe9d6d + uri: https://api.fabric.microsoft.com/v1/workspaces/020b4c31-2ffb-401e-832b-39cb0808553d response: body: string: '' @@ -4707,11 +4676,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:03:44 GMT + - Wed, 20 May 2026 09:11:57 GMT Pragma: - no-cache RequestId: - - 2a47c2c8-5f52-4163-936e-0228d20b498e + - f20a431d-1ae8-4f89-afe2-afa3e5a9f247 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_to_non_existing_folder_success.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_non_existing_folder_success.yaml index a4388a568..dc680e994 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_non_existing_folder_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_non_existing_folder_success.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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:03:45 GMT + - Wed, 20 May 2026 09:11:58 GMT Pragma: - no-cache RequestId: - - fda75476-12ac-4319-86ef-05604aed5c4a + - 35de58c3-7062-4e60-8c1a-c671aab3ddbd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:03:46 GMT + - Wed, 20 May 2026 09:11:58 GMT Pragma: - no-cache RequestId: - - 87f66279-51ee-4624-bb1e-3495b7c6f733 + - ae541b12-f1ec-4662-9d0f-e9fd26b19077 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,7 +113,7 @@ 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/capacities response: @@ -127,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '427' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:03:50 GMT + - Wed, 20 May 2026 09:12:02 GMT Pragma: - no-cache RequestId: - - 7bce4434-d1bc-4c06-9e0c-a5916ee88b4d + - 1fb38bb7-5e7d-4e46-9d72-3c75d020fa90 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -160,16 +162,16 @@ interactions: - keep-alive Content-Length: - '89' - 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 response: body: - string: '{"id": "1cb9157d-85d1-400b-81f4-149cbc93cf35", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "dd9447c2-71bb-48a5-8596-469daec598bc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -178,17 +180,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '153' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:03:57 GMT + - Wed, 20 May 2026 09:12:09 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/1cb9157d-85d1-400b-81f4-149cbc93cf35 + - https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc Pragma: - no-cache RequestId: - - 5e0aaebc-5780-4c68-81b7-e0beae14edd6 + - decc9c4d-e96b-4924-a9ef-b28efa571995 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,15 +216,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "1cb9157d-85d1-400b-81f4-149cbc93cf35", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dd9447c2-71bb-48a5-8596-469daec598bc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -231,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2846' + - '2661' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:03:57 GMT + - Wed, 20 May 2026 09:12:10 GMT Pragma: - no-cache RequestId: - - c21781d4-1b71-42d6-9362-6e7597ed89c4 + - cd47e4d7-7ca3-44bb-b614-3c1ec928b644 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,15 +269,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "1cb9157d-85d1-400b-81f4-149cbc93cf35", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dd9447c2-71bb-48a5-8596-469daec598bc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -282,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2846' + - '2661' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:03:58 GMT + - Wed, 20 May 2026 09:12:11 GMT Pragma: - no-cache RequestId: - - 796bcd92-35d2-4094-a609-83b7d2e70a8b + - e9365b9b-6c13-41e8-ba2a-9a320f2a1f09 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,7 +322,7 @@ 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/capacities response: @@ -332,15 +338,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '427' + - '424' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:04:02 GMT + - Wed, 20 May 2026 09:12:14 GMT Pragma: - no-cache RequestId: - - 4ce97cf1-95b4-4efe-a0fb-a4334f5749d5 + - 05536be4-4b2b-46af-acb4-30d1eaf73ee9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -365,16 +371,16 @@ interactions: - keep-alive Content-Length: - '89' - 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 response: body: - string: '{"id": "9d022e35-1614-42f7-97b7-594991c991ca", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -383,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '154' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:04:11 GMT + - Wed, 20 May 2026 09:12:22 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/9d022e35-1614-42f7-97b7-594991c991ca + - https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c Pragma: - no-cache RequestId: - - 18eddcbf-135d-4858-9df4-72e1f5671da7 + - dcf4ac21-3ae8-4700-bcef-7356c7ee0061 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -419,16 +425,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "1cb9157d-85d1-400b-81f4-149cbc93cf35", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "9d022e35-1614-42f7-97b7-594991c991ca", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dd9447c2-71bb-48a5-8596-469daec598bc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -437,15 +446,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:04:11 GMT + - Wed, 20 May 2026 09:12:23 GMT Pragma: - no-cache RequestId: - - fc2e9f8e-d67f-4f77-a2ce-5092dd529f9a + - 5171af55-bb3e-4d8b-884b-b5a9643697f0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -471,9 +480,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/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders?recursive=True response: body: string: '{"value": []}' @@ -489,11 +498,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:04:12 GMT + - Wed, 20 May 2026 09:12:24 GMT Pragma: - no-cache RequestId: - - 35a25635-7591-4361-964b-9c593efcb563 + - b2ddbbd7-f02e-457d-a1f3-de6ac5dd0aca Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -519,9 +528,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/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders?recursive=True response: body: string: '{"value": []}' @@ -537,11 +546,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:04:13 GMT + - Wed, 20 May 2026 09:12:25 GMT Pragma: - no-cache RequestId: - - e743e686-aea9-4e27-b5b9-0a7cb9d9b6a9 + - a84a0f8a-8a19-4280-8e5d-b65866ed16d0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -565,17 +574,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders response: body: - string: '{"id": "535bb037-4688-443a-b3f9-9049d6e65cdd", "displayName": "fabcli000003", - "workspaceId": "1cb9157d-85d1-400b-81f4-149cbc93cf35"}' + string: '{"id": "93095a73-0e0b-4e72-81b7-4434e147e108", "displayName": "fabcli000003", + "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -584,17 +593,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '134' + - '132' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:04:14 GMT + - Wed, 20 May 2026 09:12:25 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders/535bb037-4688-443a-b3f9-9049d6e65cdd + - https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders/93095a73-0e0b-4e72-81b7-4434e147e108 Pragma: - no-cache RequestId: - - 1328bd49-fa9d-40c8-8877-66186886bafc + - f1aa3fd7-261b-476a-9f88-dc2093dffd5d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -620,16 +629,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "1cb9157d-85d1-400b-81f4-149cbc93cf35", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "9d022e35-1614-42f7-97b7-594991c991ca", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dd9447c2-71bb-48a5-8596-469daec598bc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -638,15 +650,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:04:15 GMT + - Wed, 20 May 2026 09:12:26 GMT Pragma: - no-cache RequestId: - - 2180e73b-b09c-4a8d-a4f5-942b2e840561 + - 7a39ff4f-e80d-4cd0-85f6-0fdbab1db95e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -672,13 +684,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/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders?recursive=True response: body: - string: '{"value": [{"id": "535bb037-4688-443a-b3f9-9049d6e65cdd", "displayName": - "fabcli000003", "workspaceId": "1cb9157d-85d1-400b-81f4-149cbc93cf35"}]}' + string: '{"value": [{"id": "93095a73-0e0b-4e72-81b7-4434e147e108", "displayName": + "fabcli000003", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -687,15 +699,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:04:15 GMT + - Wed, 20 May 2026 09:12:28 GMT Pragma: - no-cache RequestId: - - aa2aa56e-fcdf-4fbc-841b-f1849f4cab5b + - 79ec2f0a-0823-4f83-a93e-084bf6b099fe Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -721,9 +733,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/1cb9157d-85d1-400b-81f4-149cbc93cf35/items + uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/items response: body: string: '{"value": []}' @@ -739,11 +751,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:04:16 GMT + - Wed, 20 May 2026 09:12:28 GMT Pragma: - no-cache RequestId: - - f14f6bed-1356-4b61-a7d0-c46b1be582f4 + - 2649a180-f0a4-47d4-9428-af7a244dced5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -769,9 +781,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/1cb9157d-85d1-400b-81f4-149cbc93cf35/items + uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/items response: body: string: '{"value": []}' @@ -787,11 +799,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:04:17 GMT + - Wed, 20 May 2026 09:12:30 GMT Pragma: - no-cache RequestId: - - b8b4b172-7ac8-4fda-84eb-b487eb551cba + - 6b67cdd7-d424-4b92-b12f-1fb8d4d7bddb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -806,9 +818,8 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000004", "type": - "Notebook", "folderId": "535bb037-4688-443a-b3f9-9049d6e65cdd", "definition": - {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", + body: '{"displayName": "fabcli000004", "type": "Notebook", "folderId": "93095a73-0e0b-4e72-81b7-4434e147e108", + "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", "payloadType": "InlineBase64"}]}}' headers: Accept: @@ -819,13 +830,12 @@ interactions: - keep-alive Content-Length: - '765' - 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/1cb9157d-85d1-400b-81f4-149cbc93cf35/notebooks + uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/notebooks response: body: string: 'null' @@ -841,15 +851,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:04:18 GMT + - Wed, 20 May 2026 09:12:32 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2408a29b-2b91-43d7-9578-a19df29794c4 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/75cb528b-351e-46e2-9291-5dc3d0b758e6 Pragma: - no-cache RequestId: - - 384e79ca-3ed5-4971-83c5-cdc138ba0e04 + - 84400f43-6a57-4d07-9bd4-a4d29429bff4 Retry-After: - '20' Strict-Transport-Security: @@ -863,7 +873,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 2408a29b-2b91-43d7-9578-a19df29794c4 + - 75cb528b-351e-46e2-9291-5dc3d0b758e6 status: code: 202 message: Accepted @@ -879,13 +889,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2408a29b-2b91-43d7-9578-a19df29794c4 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/75cb528b-351e-46e2-9291-5dc3d0b758e6 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:04:18.2564183", - "lastUpdatedTimeUtc": "2026-02-06T08:04:19.6633813", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:12:31.2769168", + "lastUpdatedTimeUtc": "2026-05-20T09:12:35.2130563", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -899,13 +909,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:04:40 GMT + - Wed, 20 May 2026 09:12:52 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2408a29b-2b91-43d7-9578-a19df29794c4/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/75cb528b-351e-46e2-9291-5dc3d0b758e6/result Pragma: - no-cache RequestId: - - 86f530c1-ba35-417a-8d70-4e701a2f2242 + - 781a2906-25c0-44b8-b1d1-929895780773 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -913,7 +923,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 2408a29b-2b91-43d7-9578-a19df29794c4 + - 75cb528b-351e-46e2-9291-5dc3d0b758e6 status: code: 200 message: OK @@ -929,14 +939,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2408a29b-2b91-43d7-9578-a19df29794c4/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/75cb528b-351e-46e2-9291-5dc3d0b758e6/result response: body: - string: '{"id": "fc6c5c81-08f5-4655-85e7-9b302d7ad34a", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "1cb9157d-85d1-400b-81f4-149cbc93cf35", "folderId": "535bb037-4688-443a-b3f9-9049d6e65cdd"}' + string: '{"id": "4b50eca0-32e7-4ae6-99b4-205fc6c9a106", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc", + "folderId": "93095a73-0e0b-4e72-81b7-4434e147e108"}' headers: Access-Control-Expose-Headers: - RequestId @@ -947,11 +957,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 08:04:41 GMT + - Wed, 20 May 2026 09:12:54 GMT Pragma: - no-cache RequestId: - - 9e566340-8e27-46f6-9b44-8d94fd75bc47 + - b633f10b-be45-404a-957c-70ae37c3b186 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -975,16 +985,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "1cb9157d-85d1-400b-81f4-149cbc93cf35", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "9d022e35-1614-42f7-97b7-594991c991ca", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dd9447c2-71bb-48a5-8596-469daec598bc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -993,15 +1006,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:04:42 GMT + - Wed, 20 May 2026 09:12:55 GMT Pragma: - no-cache RequestId: - - d3417569-00f6-4a0c-89e0-c117e1b7e754 + - 1122fce1-afe1-4d10-9719-c9d97ae58696 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1027,13 +1040,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/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders?recursive=True response: body: - string: '{"value": [{"id": "535bb037-4688-443a-b3f9-9049d6e65cdd", "displayName": - "fabcli000003", "workspaceId": "1cb9157d-85d1-400b-81f4-149cbc93cf35"}]}' + string: '{"value": [{"id": "93095a73-0e0b-4e72-81b7-4434e147e108", "displayName": + "fabcli000003", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1042,15 +1055,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:04:42 GMT + - Wed, 20 May 2026 09:12:55 GMT Pragma: - no-cache RequestId: - - 2d3c5ea6-d0a2-4ef6-8f98-e8b0d2ee5331 + - 08184838-23db-47b5-917f-404b141c3a56 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1076,16 +1089,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "1cb9157d-85d1-400b-81f4-149cbc93cf35", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "9d022e35-1614-42f7-97b7-594991c991ca", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dd9447c2-71bb-48a5-8596-469daec598bc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1094,15 +1110,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:04:43 GMT + - Wed, 20 May 2026 09:12:56 GMT Pragma: - no-cache RequestId: - - 6220e2a6-84de-401c-8c9c-4e199e23f537 + - 3d85b83b-d5f8-4919-8e7f-c6bb73a5e39e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1128,9 +1144,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/9d022e35-1614-42f7-97b7-594991c991ca/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/folders?recursive=True response: body: string: '{"value": []}' @@ -1146,11 +1162,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:04:45 GMT + - Wed, 20 May 2026 09:12:57 GMT Pragma: - no-cache RequestId: - - 37b1a3c3-6854-42f1-926d-49ca03569e72 + - 5cbf146f-c1e0-4255-96bb-26dc37470a02 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1176,9 +1192,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/9d022e35-1614-42f7-97b7-594991c991ca/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/folders?recursive=True response: body: string: '{"value": []}' @@ -1194,11 +1210,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:04:46 GMT + - Wed, 20 May 2026 09:12:58 GMT Pragma: - no-cache RequestId: - - 6c5e99f2-222b-4f47-a319-5bfd3fd187b3 + - 3632d9da-9e35-447f-b935-c12df2a7a717 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1222,17 +1238,17 @@ interactions: Connection: - keep-alive Content-Length: - - '61' + - '28' 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/9d022e35-1614-42f7-97b7-594991c991ca/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/folders response: body: - string: '{"id": "8eacc126-73a1-4b8e-9628-303da1071109", "displayName": "NewFolder", - "workspaceId": "9d022e35-1614-42f7-97b7-594991c991ca"}' + string: '{"id": "af920fbb-67a8-4d40-989b-274524d46bf1", "displayName": "NewFolder", + "workspaceId": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -1241,17 +1257,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '129' + - '128' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:04:46 GMT + - Wed, 20 May 2026 09:12:59 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/9d022e35-1614-42f7-97b7-594991c991ca/folders/8eacc126-73a1-4b8e-9628-303da1071109 + - https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/folders/af920fbb-67a8-4d40-989b-274524d46bf1 Pragma: - no-cache RequestId: - - 36d8bd97-39d4-42da-a98b-a40d47585ca4 + - 2666f08c-c02f-4332-b3c7-429ff2438d25 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1277,14 +1293,14 @@ 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/1cb9157d-85d1-400b-81f4-149cbc93cf35/items + uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/items response: body: - string: '{"value": [{"id": "fc6c5c81-08f5-4655-85e7-9b302d7ad34a", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "1cb9157d-85d1-400b-81f4-149cbc93cf35", "folderId": "535bb037-4688-443a-b3f9-9049d6e65cdd"}]}' + string: '{"value": [{"id": "4b50eca0-32e7-4ae6-99b4-205fc6c9a106", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc", + "folderId": "93095a73-0e0b-4e72-81b7-4434e147e108"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1293,15 +1309,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '209' + - '197' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:04:47 GMT + - Wed, 20 May 2026 09:13:00 GMT Pragma: - no-cache RequestId: - - 44b796c8-5ffc-41a9-a565-8aa284890812 + - 0e42fd47-f0d1-44d5-934a-0d0ab3247484 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1327,13 +1343,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/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders?recursive=True response: body: - string: '{"value": [{"id": "535bb037-4688-443a-b3f9-9049d6e65cdd", "displayName": - "fabcli000003", "workspaceId": "1cb9157d-85d1-400b-81f4-149cbc93cf35"}]}' + string: '{"value": [{"id": "93095a73-0e0b-4e72-81b7-4434e147e108", "displayName": + "fabcli000003", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1342,15 +1358,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:04:48 GMT + - Wed, 20 May 2026 09:13:00 GMT Pragma: - no-cache RequestId: - - 53b6f969-f5b3-4650-b91d-4b5630dd9fc2 + - 4f6d0960-8dca-49a9-bc9c-4d4cad556e64 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1376,13 +1392,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/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders?recursive=True response: body: - string: '{"value": [{"id": "535bb037-4688-443a-b3f9-9049d6e65cdd", "displayName": - "fabcli000003", "workspaceId": "1cb9157d-85d1-400b-81f4-149cbc93cf35"}]}' + string: '{"value": [{"id": "93095a73-0e0b-4e72-81b7-4434e147e108", "displayName": + "fabcli000003", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1391,15 +1407,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:04:49 GMT + - Wed, 20 May 2026 09:13:01 GMT Pragma: - no-cache RequestId: - - 21f69240-cd05-43f4-a9d4-b1dd7780e201 + - ceff5323-d45a-435d-810c-b90c5b85678d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1425,14 +1441,14 @@ 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/1cb9157d-85d1-400b-81f4-149cbc93cf35/items + uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/items response: body: - string: '{"value": [{"id": "fc6c5c81-08f5-4655-85e7-9b302d7ad34a", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "1cb9157d-85d1-400b-81f4-149cbc93cf35", "folderId": "535bb037-4688-443a-b3f9-9049d6e65cdd"}]}' + string: '{"value": [{"id": "4b50eca0-32e7-4ae6-99b4-205fc6c9a106", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc", + "folderId": "93095a73-0e0b-4e72-81b7-4434e147e108"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1441,15 +1457,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '209' + - '197' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:04:49 GMT + - Wed, 20 May 2026 09:13:02 GMT Pragma: - no-cache RequestId: - - 42d153d0-880d-4d90-b440-4b249c89e5d2 + - acea78a9-bd30-44f6-95f2-51caa8a14741 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1475,13 +1491,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/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders?recursive=True response: body: - string: '{"value": [{"id": "535bb037-4688-443a-b3f9-9049d6e65cdd", "displayName": - "fabcli000003", "workspaceId": "1cb9157d-85d1-400b-81f4-149cbc93cf35"}]}' + string: '{"value": [{"id": "93095a73-0e0b-4e72-81b7-4434e147e108", "displayName": + "fabcli000003", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1490,15 +1506,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:04:50 GMT + - Wed, 20 May 2026 09:13:03 GMT Pragma: - no-cache RequestId: - - 40703c1b-7b81-4d17-bc77-105fffaa097d + - 2dc551cc-cf89-4e69-bcab-8478885ffd97 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1524,13 +1540,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/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders?recursive=True response: body: - string: '{"value": [{"id": "535bb037-4688-443a-b3f9-9049d6e65cdd", "displayName": - "fabcli000003", "workspaceId": "1cb9157d-85d1-400b-81f4-149cbc93cf35"}]}' + string: '{"value": [{"id": "93095a73-0e0b-4e72-81b7-4434e147e108", "displayName": + "fabcli000003", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1539,15 +1555,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:04:51 GMT + - Wed, 20 May 2026 09:13:04 GMT Pragma: - no-cache RequestId: - - 906e717f-cd09-44f1-a98c-0f2ba6740612 + - 2a941b22-b7da-4312-afdf-e23bec00e19d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1573,16 +1589,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "1cb9157d-85d1-400b-81f4-149cbc93cf35", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "9d022e35-1614-42f7-97b7-594991c991ca", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dd9447c2-71bb-48a5-8596-469daec598bc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1591,15 +1610,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:04:53 GMT + - Wed, 20 May 2026 09:13:05 GMT Pragma: - no-cache RequestId: - - 6231bb9a-51ad-448f-b5f1-7ded3ef99965 + - 99c97c60-d758-4330-9459-838f6ccd188e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1625,13 +1644,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/9d022e35-1614-42f7-97b7-594991c991ca/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/folders?recursive=True response: body: - string: '{"value": [{"id": "8eacc126-73a1-4b8e-9628-303da1071109", "displayName": - "NewFolder", "workspaceId": "9d022e35-1614-42f7-97b7-594991c991ca"}]}' + string: '{"value": [{"id": "af920fbb-67a8-4d40-989b-274524d46bf1", "displayName": + "NewFolder", "workspaceId": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1640,15 +1659,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '139' + - '140' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:04:53 GMT + - Wed, 20 May 2026 09:13:05 GMT Pragma: - no-cache RequestId: - - eb07af49-a45b-40e2-a9b0-a1f6061b47cb + - d20e8182-f4f0-4781-a4b0-502751f674e7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1674,9 +1693,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/9d022e35-1614-42f7-97b7-594991c991ca/items + uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/items response: body: string: '{"value": []}' @@ -1692,11 +1711,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:04:54 GMT + - Wed, 20 May 2026 09:13:06 GMT Pragma: - no-cache RequestId: - - 214c8673-e9cc-4153-a2c5-34f3f3513eba + - ec846e9b-39ce-4ca8-8eb7-e1b5bb451569 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1722,9 +1741,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/9d022e35-1614-42f7-97b7-594991c991ca/items + uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/items response: body: string: '{"value": []}' @@ -1740,11 +1759,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:04:54 GMT + - Wed, 20 May 2026 09:13:07 GMT Pragma: - no-cache RequestId: - - efc01687-e2ba-4250-bbd3-4ceb4857bb5f + - 0dc3589a-9fdc-472f-a953-c7d227e3b124 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1770,9 +1789,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/9d022e35-1614-42f7-97b7-594991c991ca/items + uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/items response: body: string: '{"value": []}' @@ -1788,11 +1807,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:04:55 GMT + - Wed, 20 May 2026 09:13:08 GMT Pragma: - no-cache RequestId: - - 442a9001-572b-4351-b1fe-0dc3f5c4efc7 + - 9a2a9645-82a8-4d0c-9780-3fd76620caad Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1818,14 +1837,14 @@ 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/1cb9157d-85d1-400b-81f4-149cbc93cf35/items/fc6c5c81-08f5-4655-85e7-9b302d7ad34a + uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/items/4b50eca0-32e7-4ae6-99b4-205fc6c9a106 response: body: - string: '{"id": "fc6c5c81-08f5-4655-85e7-9b302d7ad34a", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "1cb9157d-85d1-400b-81f4-149cbc93cf35", "folderId": "535bb037-4688-443a-b3f9-9049d6e65cdd"}' + string: '{"id": "4b50eca0-32e7-4ae6-99b4-205fc6c9a106", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc", + "folderId": "93095a73-0e0b-4e72-81b7-4434e147e108"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1834,17 +1853,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '197' + - '186' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:04:56 GMT + - Wed, 20 May 2026 09:13:09 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 76b1e788-24be-4094-935c-4de133cb413d + - 1729a025-30f2-4e74-b0ec-2b21bad91218 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1872,9 +1891,9 @@ interactions: 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/1cb9157d-85d1-400b-81f4-149cbc93cf35/items/fc6c5c81-08f5-4655-85e7-9b302d7ad34a/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/items/4b50eca0-32e7-4ae6-99b4-205fc6c9a106/getDefinition response: body: string: 'null' @@ -1890,13 +1909,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:04:58 GMT + - Wed, 20 May 2026 09:13:10 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6b913b16-5202-445b-878c-982db07f21f5 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/362085d3-8021-4c87-9406-40204f1ff860 Pragma: - no-cache RequestId: - - aae5d6a9-ac51-4ef0-bbcc-68cd7a119b1d + - b4b634a9-0624-4e80-b839-3f947d6a1e75 Retry-After: - '20' Strict-Transport-Security: @@ -1910,7 +1929,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 6b913b16-5202-445b-878c-982db07f21f5 + - 362085d3-8021-4c87-9406-40204f1ff860 status: code: 202 message: Accepted @@ -1926,13 +1945,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6b913b16-5202-445b-878c-982db07f21f5 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/362085d3-8021-4c87-9406-40204f1ff860 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:04:58.156057", - "lastUpdatedTimeUtc": "2026-02-06T08:04:58.5156543", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:13:10.5646678", + "lastUpdatedTimeUtc": "2026-05-20T09:13:11.3051873", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1942,17 +1961,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '128' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:05:19 GMT + - Wed, 20 May 2026 09:13:31 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6b913b16-5202-445b-878c-982db07f21f5/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/362085d3-8021-4c87-9406-40204f1ff860/result Pragma: - no-cache RequestId: - - 13de7f2d-0e9c-4576-856a-47d3e27f862a + - c84a95de-a981-46d7-97be-60e6250a5ec7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1960,7 +1979,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 6b913b16-5202-445b-878c-982db07f21f5 + - 362085d3-8021-4c87-9406-40204f1ff860 status: code: 200 message: OK @@ -1976,14 +1995,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6b913b16-5202-445b-878c-982db07f21f5/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/362085d3-8021-4c87-9406-40204f1ff860/result response: body: string: '{"definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -1995,11 +2014,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 08:05:20 GMT + - Wed, 20 May 2026 09:13:32 GMT Pragma: - no-cache RequestId: - - 0e55af32-dd20-4fe4-b0e0-611052bbd8eb + - 2a5042c3-3230-42f7-b664-585c3c49f989 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -2012,10 +2031,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "Notebook", "displayName": "fabcli000004", - "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", - "payloadType": "InlineBase64"}]}, "folderId": "8eacc126-73a1-4b8e-9628-303da1071109"}' + body: '{"type": "Notebook", "displayName": "fabcli000004", "definition": {"parts": + [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}]}, "folderId": "af920fbb-67a8-4d40-989b-274524d46bf1"}' headers: Accept: - '*/*' @@ -2024,14 +2043,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1286' - + - '1238' 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/9d022e35-1614-42f7-97b7-594991c991ca/items + uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/items response: body: string: 'null' @@ -2047,15 +2065,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:05:22 GMT + - Wed, 20 May 2026 09:13:34 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7eed67c6-f284-41f6-a366-f017aeec0d17 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f8f13f67-07b4-437a-abeb-20f39d0d3a89 Pragma: - no-cache RequestId: - - fe4414b2-2781-4fa5-b62d-9e83ca75ca1d + - 80ee7d31-79e7-4f71-b843-62b2378b94e2 Retry-After: - '20' Strict-Transport-Security: @@ -2069,7 +2087,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 7eed67c6-f284-41f6-a366-f017aeec0d17 + - f8f13f67-07b4-437a-abeb-20f39d0d3a89 status: code: 202 message: Accepted @@ -2085,13 +2103,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7eed67c6-f284-41f6-a366-f017aeec0d17 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f8f13f67-07b4-437a-abeb-20f39d0d3a89 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:05:21.999684", - "lastUpdatedTimeUtc": "2026-02-06T08:05:23.4841001", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:13:33.4497174", + "lastUpdatedTimeUtc": "2026-05-20T09:13:35.1527783", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -2101,17 +2119,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '129' + - '132' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:05:43 GMT + - Wed, 20 May 2026 09:13:54 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7eed67c6-f284-41f6-a366-f017aeec0d17/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f8f13f67-07b4-437a-abeb-20f39d0d3a89/result Pragma: - no-cache RequestId: - - f6734e12-5eb2-45c5-8711-246d4fe04217 + - df94b3c3-3419-4e5c-9f3d-57c087517122 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2119,7 +2137,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 7eed67c6-f284-41f6-a366-f017aeec0d17 + - f8f13f67-07b4-437a-abeb-20f39d0d3a89 status: code: 200 message: OK @@ -2135,14 +2153,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7eed67c6-f284-41f6-a366-f017aeec0d17/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f8f13f67-07b4-437a-abeb-20f39d0d3a89/result response: body: - string: '{"id": "f5ef9671-6fbd-4bbb-96b6-67d2c8390ba4", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "9d022e35-1614-42f7-97b7-594991c991ca", "folderId": "8eacc126-73a1-4b8e-9628-303da1071109"}' + string: '{"id": "5a292323-fec9-458d-b445-9f9eb28e89f4", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c", + "folderId": "af920fbb-67a8-4d40-989b-274524d46bf1"}' headers: Access-Control-Expose-Headers: - RequestId @@ -2153,11 +2171,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 08:05:44 GMT + - Wed, 20 May 2026 09:13:55 GMT Pragma: - no-cache RequestId: - - b1ab5a7e-23d0-44db-a733-78b3306baf86 + - 9f6ba879-26e6-46bd-86fd-242cf0aa555b Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -2181,14 +2199,14 @@ 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/1cb9157d-85d1-400b-81f4-149cbc93cf35/items + uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/items response: body: - string: '{"value": [{"id": "fc6c5c81-08f5-4655-85e7-9b302d7ad34a", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "1cb9157d-85d1-400b-81f4-149cbc93cf35", "folderId": "535bb037-4688-443a-b3f9-9049d6e65cdd"}]}' + string: '{"value": [{"id": "4b50eca0-32e7-4ae6-99b4-205fc6c9a106", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc", + "folderId": "93095a73-0e0b-4e72-81b7-4434e147e108"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2197,15 +2215,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '209' + - '197' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:05:46 GMT + - Wed, 20 May 2026 09:13:57 GMT Pragma: - no-cache RequestId: - - efd36db8-46be-4bef-99b8-6a7d191822c4 + - 9bddbb66-88f6-434c-b1d5-3ad59d65b8b7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2231,13 +2249,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/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders?recursive=True response: body: - string: '{"value": [{"id": "535bb037-4688-443a-b3f9-9049d6e65cdd", "displayName": - "fabcli000003", "workspaceId": "1cb9157d-85d1-400b-81f4-149cbc93cf35"}]}' + string: '{"value": [{"id": "93095a73-0e0b-4e72-81b7-4434e147e108", "displayName": + "fabcli000003", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2246,15 +2264,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:05:46 GMT + - Wed, 20 May 2026 09:13:57 GMT Pragma: - no-cache RequestId: - - b51f8264-5b10-4e8e-89c3-289f68e48f75 + - 7724e407-77f0-4604-a3b1-14831aa30c35 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2280,13 +2298,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/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders?recursive=True response: body: - string: '{"value": [{"id": "535bb037-4688-443a-b3f9-9049d6e65cdd", "displayName": - "fabcli000003", "workspaceId": "1cb9157d-85d1-400b-81f4-149cbc93cf35"}]}' + string: '{"value": [{"id": "93095a73-0e0b-4e72-81b7-4434e147e108", "displayName": + "fabcli000003", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2295,15 +2313,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:05:47 GMT + - Wed, 20 May 2026 09:13:57 GMT Pragma: - no-cache RequestId: - - 8ed51ead-745b-4d75-88b0-3d8af03b961f + - 994059ee-33fd-4b66-8497-7772df7d140b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2329,16 +2347,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "1cb9157d-85d1-400b-81f4-149cbc93cf35", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "9d022e35-1614-42f7-97b7-594991c991ca", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dd9447c2-71bb-48a5-8596-469daec598bc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2347,15 +2368,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:05:48 GMT + - Wed, 20 May 2026 09:13:59 GMT Pragma: - no-cache RequestId: - - 0f8123c8-765d-4208-8f45-061103b07c37 + - 857e278d-891c-44b6-b8c1-31bc7d5eb7c1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2381,14 +2402,14 @@ 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/9d022e35-1614-42f7-97b7-594991c991ca/items + uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/items response: body: - string: '{"value": [{"id": "f5ef9671-6fbd-4bbb-96b6-67d2c8390ba4", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "9d022e35-1614-42f7-97b7-594991c991ca", "folderId": "8eacc126-73a1-4b8e-9628-303da1071109"}]}' + string: '{"value": [{"id": "5a292323-fec9-458d-b445-9f9eb28e89f4", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c", + "folderId": "af920fbb-67a8-4d40-989b-274524d46bf1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2397,15 +2418,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '209' + - '196' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:05:49 GMT + - Wed, 20 May 2026 09:14:00 GMT Pragma: - no-cache RequestId: - - 796a8b2c-ed00-4ce0-a1b1-38879df31e83 + - bec27df3-4f7b-4e32-aa76-2880e8a79563 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2431,13 +2452,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/9d022e35-1614-42f7-97b7-594991c991ca/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/folders?recursive=True response: body: - string: '{"value": [{"id": "8eacc126-73a1-4b8e-9628-303da1071109", "displayName": - "NewFolder", "workspaceId": "9d022e35-1614-42f7-97b7-594991c991ca"}]}' + string: '{"value": [{"id": "af920fbb-67a8-4d40-989b-274524d46bf1", "displayName": + "NewFolder", "workspaceId": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2446,15 +2467,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '139' + - '140' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:05:50 GMT + - Wed, 20 May 2026 09:14:01 GMT Pragma: - no-cache RequestId: - - 301d7e0c-f95a-442c-ab36-037b823a16e2 + - 8866ef14-c05b-4b6f-b4e5-63f1e00691b9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2480,13 +2501,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/9d022e35-1614-42f7-97b7-594991c991ca/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/folders?recursive=True response: body: - string: '{"value": [{"id": "8eacc126-73a1-4b8e-9628-303da1071109", "displayName": - "NewFolder", "workspaceId": "9d022e35-1614-42f7-97b7-594991c991ca"}]}' + string: '{"value": [{"id": "af920fbb-67a8-4d40-989b-274524d46bf1", "displayName": + "NewFolder", "workspaceId": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2495,15 +2516,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '139' + - '140' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:05:51 GMT + - Wed, 20 May 2026 09:14:02 GMT Pragma: - no-cache RequestId: - - 4c53b8f6-c08f-4780-a291-fbffdbaf93d7 + - 8e26201b-e240-478e-ba69-a467d15beb5f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2529,16 +2550,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "1cb9157d-85d1-400b-81f4-149cbc93cf35", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "9d022e35-1614-42f7-97b7-594991c991ca", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dd9447c2-71bb-48a5-8596-469daec598bc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2547,15 +2571,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:05:51 GMT + - Wed, 20 May 2026 09:14:03 GMT Pragma: - no-cache RequestId: - - 73254683-ce5c-49cc-a2dc-ce31d1fc3d93 + - 67d4392b-d4e3-4faa-88ea-7de6d9e6d92e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2581,13 +2605,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/9d022e35-1614-42f7-97b7-594991c991ca/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/folders?recursive=True response: body: - string: '{"value": [{"id": "8eacc126-73a1-4b8e-9628-303da1071109", "displayName": - "NewFolder", "workspaceId": "9d022e35-1614-42f7-97b7-594991c991ca"}]}' + string: '{"value": [{"id": "af920fbb-67a8-4d40-989b-274524d46bf1", "displayName": + "NewFolder", "workspaceId": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2596,15 +2620,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '139' + - '140' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:05:53 GMT + - Wed, 20 May 2026 09:14:03 GMT Pragma: - no-cache RequestId: - - 1b7fb336-e655-49d7-8ec7-1d311c38d89c + - 1c418b0b-0b63-490a-b609-30493bdbdfde Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2630,14 +2654,14 @@ 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/9d022e35-1614-42f7-97b7-594991c991ca/items + uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/items response: body: - string: '{"value": [{"id": "f5ef9671-6fbd-4bbb-96b6-67d2c8390ba4", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "9d022e35-1614-42f7-97b7-594991c991ca", "folderId": "8eacc126-73a1-4b8e-9628-303da1071109"}]}' + string: '{"value": [{"id": "5a292323-fec9-458d-b445-9f9eb28e89f4", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c", + "folderId": "af920fbb-67a8-4d40-989b-274524d46bf1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2646,15 +2670,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '209' + - '196' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:05:53 GMT + - Wed, 20 May 2026 09:14:04 GMT Pragma: - no-cache RequestId: - - d34ec4ad-713d-49f9-9b88-7977442026fa + - bd6fc3ae-eee7-4f38-9f0d-a844d289a5bf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2680,13 +2704,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/9d022e35-1614-42f7-97b7-594991c991ca/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/folders?recursive=True response: body: - string: '{"value": [{"id": "8eacc126-73a1-4b8e-9628-303da1071109", "displayName": - "NewFolder", "workspaceId": "9d022e35-1614-42f7-97b7-594991c991ca"}]}' + string: '{"value": [{"id": "af920fbb-67a8-4d40-989b-274524d46bf1", "displayName": + "NewFolder", "workspaceId": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2695,15 +2719,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '139' + - '140' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:05:54 GMT + - Wed, 20 May 2026 09:14:05 GMT Pragma: - no-cache RequestId: - - 9980a13f-a9a5-4c7d-8210-f775c5feadde + - c8fb3a30-d7ad-4e6d-8dfd-035e4ac96e5b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2729,13 +2753,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/9d022e35-1614-42f7-97b7-594991c991ca/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/folders?recursive=True response: body: - string: '{"value": [{"id": "8eacc126-73a1-4b8e-9628-303da1071109", "displayName": - "NewFolder", "workspaceId": "9d022e35-1614-42f7-97b7-594991c991ca"}]}' + string: '{"value": [{"id": "af920fbb-67a8-4d40-989b-274524d46bf1", "displayName": + "NewFolder", "workspaceId": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2744,15 +2768,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '139' + - '140' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:05:55 GMT + - Wed, 20 May 2026 09:14:05 GMT Pragma: - no-cache RequestId: - - f0dbc9f5-a075-4a35-a30c-d2975ef3b274 + - a29d74da-e704-45b5-99db-1be40a71631b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2778,16 +2802,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "1cb9157d-85d1-400b-81f4-149cbc93cf35", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "9d022e35-1614-42f7-97b7-594991c991ca", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dd9447c2-71bb-48a5-8596-469daec598bc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2796,15 +2823,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:05:55 GMT + - Wed, 20 May 2026 09:14:06 GMT Pragma: - no-cache RequestId: - - 108e5143-825a-4a92-a380-ae51ca306884 + - a04eaef8-58e8-43fd-87bd-aaa883fed172 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2830,13 +2857,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/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders?recursive=True response: body: - string: '{"value": [{"id": "535bb037-4688-443a-b3f9-9049d6e65cdd", "displayName": - "fabcli000003", "workspaceId": "1cb9157d-85d1-400b-81f4-149cbc93cf35"}]}' + string: '{"value": [{"id": "93095a73-0e0b-4e72-81b7-4434e147e108", "displayName": + "fabcli000003", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2845,15 +2872,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:05:56 GMT + - Wed, 20 May 2026 09:14:07 GMT Pragma: - no-cache RequestId: - - b7f2cdc0-1d04-492a-9334-2ef20b90b982 + - 72a474e8-e6a5-4c36-aced-72bb55ed007b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2879,14 +2906,14 @@ 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/1cb9157d-85d1-400b-81f4-149cbc93cf35/items + uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/items response: body: - string: '{"value": [{"id": "fc6c5c81-08f5-4655-85e7-9b302d7ad34a", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "1cb9157d-85d1-400b-81f4-149cbc93cf35", "folderId": "535bb037-4688-443a-b3f9-9049d6e65cdd"}]}' + string: '{"value": [{"id": "4b50eca0-32e7-4ae6-99b4-205fc6c9a106", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc", + "folderId": "93095a73-0e0b-4e72-81b7-4434e147e108"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2895,15 +2922,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '209' + - '197' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:05:57 GMT + - Wed, 20 May 2026 09:14:08 GMT Pragma: - no-cache RequestId: - - a0f6e272-6ee0-4947-81a5-d33e30286a1e + - 3be00ef0-defd-4ce2-bda5-caefd7c9dba1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2929,13 +2956,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/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders?recursive=True response: body: - string: '{"value": [{"id": "535bb037-4688-443a-b3f9-9049d6e65cdd", "displayName": - "fabcli000003", "workspaceId": "1cb9157d-85d1-400b-81f4-149cbc93cf35"}]}' + string: '{"value": [{"id": "93095a73-0e0b-4e72-81b7-4434e147e108", "displayName": + "fabcli000003", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2944,15 +2971,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:05:59 GMT + - Wed, 20 May 2026 09:14:09 GMT Pragma: - no-cache RequestId: - - efe5ddb6-3821-4196-b7c1-1a6b4225fc3e + - c3dab100-9d31-44f0-98da-18f62991bc54 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2980,9 +3007,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/1cb9157d-85d1-400b-81f4-149cbc93cf35/items/fc6c5c81-08f5-4655-85e7-9b302d7ad34a + uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/items/4b50eca0-32e7-4ae6-99b4-205fc6c9a106 response: body: string: '' @@ -2998,11 +3025,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:05:59 GMT + - Wed, 20 May 2026 09:14:11 GMT Pragma: - no-cache RequestId: - - 63671653-fb9e-4b31-a53b-4ce782d95b1d + - 8ebc4a17-58ae-44eb-acd2-fa23aa67bc2a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3028,16 +3055,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "1cb9157d-85d1-400b-81f4-149cbc93cf35", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "9d022e35-1614-42f7-97b7-594991c991ca", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dd9447c2-71bb-48a5-8596-469daec598bc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3046,15 +3076,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:06:00 GMT + - Wed, 20 May 2026 09:14:12 GMT Pragma: - no-cache RequestId: - - 12e88d19-6919-4cd7-adfd-23146106a94b + - 17fae42b-bada-4f2f-9898-dd399f5aa620 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3080,13 +3110,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/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders?recursive=True response: body: - string: '{"value": [{"id": "535bb037-4688-443a-b3f9-9049d6e65cdd", "displayName": - "fabcli000003", "workspaceId": "1cb9157d-85d1-400b-81f4-149cbc93cf35"}]}' + string: '{"value": [{"id": "93095a73-0e0b-4e72-81b7-4434e147e108", "displayName": + "fabcli000003", "workspaceId": "dd9447c2-71bb-48a5-8596-469daec598bc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3095,15 +3125,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:06:01 GMT + - Wed, 20 May 2026 09:14:12 GMT Pragma: - no-cache RequestId: - - 599df93d-da15-4234-9223-9f75af5d5add + - 4706c4f0-cc0a-4078-af08-e3bb8f0d8650 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3131,9 +3161,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/1cb9157d-85d1-400b-81f4-149cbc93cf35/folders/535bb037-4688-443a-b3f9-9049d6e65cdd + uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/folders/93095a73-0e0b-4e72-81b7-4434e147e108 response: body: string: '' @@ -3149,11 +3179,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:06:01 GMT + - Wed, 20 May 2026 09:14:13 GMT Pragma: - no-cache RequestId: - - 17ada550-7312-4194-a24d-616e000a2938 + - 41608165-8373-4e72-a5be-e5d7dfa75110 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3179,16 +3209,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "1cb9157d-85d1-400b-81f4-149cbc93cf35", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "9d022e35-1614-42f7-97b7-594991c991ca", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dd9447c2-71bb-48a5-8596-469daec598bc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3197,15 +3230,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:06:02 GMT + - Wed, 20 May 2026 09:14:14 GMT Pragma: - no-cache RequestId: - - e17447ed-1701-4f15-9296-1a68d2d9d49d + - 410999b0-6d55-41ca-bc81-adb962a75bd8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3231,9 +3264,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/1cb9157d-85d1-400b-81f4-149cbc93cf35/items + uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc/items response: body: string: '{"value": []}' @@ -3249,11 +3282,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:06:03 GMT + - Wed, 20 May 2026 09:14:14 GMT Pragma: - no-cache RequestId: - - 3d3d0cef-7e35-4a50-a381-279d1b76c408 + - 373fa25f-8749-490e-8e22-20c24a7d86a9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3281,9 +3314,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/1cb9157d-85d1-400b-81f4-149cbc93cf35 + uri: https://api.fabric.microsoft.com/v1/workspaces/dd9447c2-71bb-48a5-8596-469daec598bc response: body: string: '' @@ -3299,11 +3332,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:06:03 GMT + - Wed, 20 May 2026 09:14:16 GMT Pragma: - no-cache RequestId: - - 343ef7f7-c354-4172-90fb-40b030bbd43c + - 1e8f3ae9-c604-4779-811d-ab1385d52c13 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3329,15 +3362,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "9d022e35-1614-42f7-97b7-594991c991ca", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3346,15 +3381,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2840' + - '2657' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:06:04 GMT + - Wed, 20 May 2026 09:14:17 GMT Pragma: - no-cache RequestId: - - fafa4006-744d-41fd-9302-bf8276230948 + - c5159616-1d29-4f84-a7fb-f2aaf37cf126 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3380,14 +3415,14 @@ 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/9d022e35-1614-42f7-97b7-594991c991ca/items + uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/items response: body: - string: '{"value": [{"id": "f5ef9671-6fbd-4bbb-96b6-67d2c8390ba4", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "9d022e35-1614-42f7-97b7-594991c991ca", "folderId": "8eacc126-73a1-4b8e-9628-303da1071109"}]}' + string: '{"value": [{"id": "5a292323-fec9-458d-b445-9f9eb28e89f4", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c", + "folderId": "af920fbb-67a8-4d40-989b-274524d46bf1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3396,15 +3431,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '209' + - '196' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:06:06 GMT + - Wed, 20 May 2026 09:14:17 GMT Pragma: - no-cache RequestId: - - 2c32343a-61e8-4a89-9be1-cda2c1d7a9d3 + - 6a653248-7e19-4b9b-99c7-ecc92b9e1454 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3430,53 +3465,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/9d022e35-1614-42f7-97b7-594991c991ca/folders?recursive=True - response: - body: - string: '{"requestId": "4db7733d-f578-40db-9b7b-99224902c508", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 8:06:47 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 08:06:05 GMT - RequestId: - - 4db7733d-f578-40db-9b7b-99224902c508 - Retry-After: - - '41' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/9d022e35-1614-42f7-97b7-594991c991ca/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c/folders?recursive=True response: body: - string: '{"value": [{"id": "8eacc126-73a1-4b8e-9628-303da1071109", "displayName": - "NewFolder", "workspaceId": "9d022e35-1614-42f7-97b7-594991c991ca"}]}' + string: '{"value": [{"id": "af920fbb-67a8-4d40-989b-274524d46bf1", "displayName": + "NewFolder", "workspaceId": "bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3485,15 +3480,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '139' + - '140' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:06:50 GMT + - Wed, 20 May 2026 09:14:19 GMT Pragma: - no-cache RequestId: - - 6e274404-05f2-4b7e-9bc7-1a46bc97a85d + - d720f11b-664a-4918-8cdc-364d2dc33c8f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3521,9 +3516,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/9d022e35-1614-42f7-97b7-594991c991ca + uri: https://api.fabric.microsoft.com/v1/workspaces/bf72b47e-5738-4c3e-a7f2-5d4a6fddfa2c response: body: string: '' @@ -3539,11 +3534,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:06:51 GMT + - Wed, 20 May 2026 09:14:20 GMT Pragma: - no-cache RequestId: - - d1385f2d-0bf3-453c-b73b-79b3226d61a4 + - c39e0fa1-edb5-41e5-b090-a50fd2f20585 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_to_same_workspace_success.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_same_workspace_success.yaml index dbc50a2e8..a22698b62 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_same_workspace_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_same_workspace_success.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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:06:52 GMT + - Wed, 20 May 2026 09:14:20 GMT Pragma: - no-cache RequestId: - - c92dfe5b-7c01-4bb9-8afa-0f582ac4976e + - e2408a6e-2985-47f0-aa7e-6cca589c7bb9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:06:53 GMT + - Wed, 20 May 2026 09:14:21 GMT Pragma: - no-cache RequestId: - - e72a88fc-458e-49ed-b73d-e8478ac788fd + - 9687fff1-2879-46cd-bb73-79dcdf13e4d6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,7 +113,7 @@ 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/capacities response: @@ -127,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '427' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:06:59 GMT + - Wed, 20 May 2026 09:14:25 GMT Pragma: - no-cache RequestId: - - 229615dc-e8da-4e76-abe1-2a3ff1fefcb0 + - e8171f86-2c7d-4e59-92b5-47d3f1067997 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -160,16 +162,16 @@ interactions: - keep-alive Content-Length: - '89' - 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 response: body: - string: '{"id": "43f38a69-aa95-4193-b265-3ac2028a6a5d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -178,17 +180,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:05 GMT + - Wed, 20 May 2026 09:14:33 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d + - https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae Pragma: - no-cache RequestId: - - 12e80c29-0498-42ae-b068-76bf363592b3 + - 39503790-c8a8-4b0f-8fd9-0f16949b1e91 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,15 +216,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "43f38a69-aa95-4193-b265-3ac2028a6a5d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -231,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2843' + - '2657' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:06 GMT + - Wed, 20 May 2026 09:14:35 GMT Pragma: - no-cache RequestId: - - c510b241-13af-408b-863d-e2a28c6b51fc + - be38fb66-1ec0-430e-a21e-44af097a3d79 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,9 +269,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/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True response: body: string: '{"value": []}' @@ -283,11 +287,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:07 GMT + - Wed, 20 May 2026 09:14:35 GMT Pragma: - no-cache RequestId: - - 43ad2677-ac07-4ee6-b227-0ab60c6283d4 + - e81936da-d1f7-4e3f-aa22-a89cf7f79652 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -313,9 +317,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/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True response: body: string: '{"value": []}' @@ -331,11 +335,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:08 GMT + - Wed, 20 May 2026 09:14:36 GMT Pragma: - no-cache RequestId: - - 8859b09b-a291-4a64-90b4-8b31ea9e54ae + - cf507dc6-8578-426c-b394-31ef49e50f79 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -359,17 +363,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders response: body: - string: '{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName": "fabcli000002", - "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}' + string: '{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName": "fabcli000002", + "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -378,17 +382,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '130' + - '132' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:09 GMT + - Wed, 20 May 2026 09:14:37 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders/fcdedc27-b0d3-494f-8ffa-c36ec15a5887 + - https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders/f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a Pragma: - no-cache RequestId: - - 9d079626-e409-4bd0-b529-f23c979137ed + - d815a309-ce3f-4c9e-831c-68942048a069 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -414,15 +418,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "43f38a69-aa95-4193-b265-3ac2028a6a5d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -431,15 +437,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2843' + - '2657' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:10 GMT + - Wed, 20 May 2026 09:14:38 GMT Pragma: - no-cache RequestId: - - bdcc58d0-0e19-4b69-b63c-a93c813ea24f + - 36477b2e-37f3-49fd-8fb1-da820968da50 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -465,13 +471,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/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True response: body: - string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName": - "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}' + string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName": + "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -480,15 +486,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '141' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:11 GMT + - Wed, 20 May 2026 09:14:38 GMT Pragma: - no-cache RequestId: - - 6cd5f567-1aa3-44e0-b57e-7c4effd0bb2a + - 0950e70b-c93d-4728-afc3-ab2b5e27219d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -514,9 +520,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/43f38a69-aa95-4193-b265-3ac2028a6a5d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items response: body: string: '{"value": []}' @@ -532,11 +538,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:11 GMT + - Wed, 20 May 2026 09:14:38 GMT Pragma: - no-cache RequestId: - - 82655331-2680-41f0-8f49-7054799636a9 + - 64d3fe1a-0299-4ef4-9f4b-805d532b169f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -562,9 +568,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/43f38a69-aa95-4193-b265-3ac2028a6a5d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items response: body: string: '{"value": []}' @@ -580,11 +586,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:12 GMT + - Wed, 20 May 2026 09:14:40 GMT Pragma: - no-cache RequestId: - - 3f82db06-bb06-4815-a6ab-83a02bbfec45 + - 6cf0fffd-8acd-4977-a985-8e561e3b0012 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -599,9 +605,8 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000003", "type": - "Notebook", "folderId": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "definition": - {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", + body: '{"displayName": "fabcli000003", "type": "Notebook", "folderId": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", + "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", "payloadType": "InlineBase64"}]}}' headers: Accept: @@ -612,13 +617,12 @@ interactions: - keep-alive Content-Length: - '765' - 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/43f38a69-aa95-4193-b265-3ac2028a6a5d/notebooks + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/notebooks response: body: string: 'null' @@ -634,15 +638,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:14 GMT + - Wed, 20 May 2026 09:14:41 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/779c763c-4cb0-4821-bc48-771985b10e2b + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/38e7b3a7-741b-4472-8680-4c1b62d63225 Pragma: - no-cache RequestId: - - 6c844e66-d7f3-4181-8eba-4ba7fae651d4 + - 3b2a6593-c852-4ae2-ac9e-1e2cb0b0e9e6 Retry-After: - '20' Strict-Transport-Security: @@ -656,7 +660,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 779c763c-4cb0-4821-bc48-771985b10e2b + - 38e7b3a7-741b-4472-8680-4c1b62d63225 status: code: 202 message: Accepted @@ -672,13 +676,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/779c763c-4cb0-4821-bc48-771985b10e2b + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/38e7b3a7-741b-4472-8680-4c1b62d63225 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:07:14.0641335", - "lastUpdatedTimeUtc": "2026-02-06T08:07:15.5954188", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:14:41.1876165", + "lastUpdatedTimeUtc": "2026-05-20T09:14:43.3036398", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -692,13 +696,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:36 GMT + - Wed, 20 May 2026 09:15:02 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/779c763c-4cb0-4821-bc48-771985b10e2b/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/38e7b3a7-741b-4472-8680-4c1b62d63225/result Pragma: - no-cache RequestId: - - ca49d007-2820-4626-9c9a-70ba7622555b + - 224212bd-debb-4d82-bad1-79c6c4afc102 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -706,7 +710,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 779c763c-4cb0-4821-bc48-771985b10e2b + - 38e7b3a7-741b-4472-8680-4c1b62d63225 status: code: 200 message: OK @@ -722,14 +726,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/779c763c-4cb0-4821-bc48-771985b10e2b/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/38e7b3a7-741b-4472-8680-4c1b62d63225/result response: body: - string: '{"id": "a96e8cf6-2653-4097-9363-bb9d28960d02", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "43f38a69-aa95-4193-b265-3ac2028a6a5d", "folderId": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887"}' + string: '{"id": "b59fd03e-912f-40be-bc72-64a5c2268b66", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", + "folderId": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a"}' headers: Access-Control-Expose-Headers: - RequestId @@ -740,11 +744,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 08:07:37 GMT + - Wed, 20 May 2026 09:15:02 GMT Pragma: - no-cache RequestId: - - 114b98e9-ac08-4892-b5e2-ad140d0b426c + - 386a8f3e-ccf1-414c-9a42-cb2ef5dd1409 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -768,15 +772,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "43f38a69-aa95-4193-b265-3ac2028a6a5d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -785,15 +791,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2843' + - '2657' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:38 GMT + - Wed, 20 May 2026 09:15:04 GMT Pragma: - no-cache RequestId: - - c1f7034f-f6c0-4ec2-8b6f-ac457c62da97 + - 4b2c4536-8c90-4907-9226-5bef3f64850a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -819,13 +825,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/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True response: body: - string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName": - "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}' + string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName": + "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -834,15 +840,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '141' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:38 GMT + - Wed, 20 May 2026 09:15:05 GMT Pragma: - no-cache RequestId: - - 43efd509-5963-43b5-9390-82fdd4b75f90 + - 0708b11c-5c7f-43dd-a5ca-e045785efe0c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -868,15 +874,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "43f38a69-aa95-4193-b265-3ac2028a6a5d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -885,15 +893,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2843' + - '2657' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:40 GMT + - Wed, 20 May 2026 09:15:06 GMT Pragma: - no-cache RequestId: - - fa382e2d-c9c2-4c19-ac45-1785085afbfc + - 2bbc6ce0-3824-4625-8032-05782ac07bee Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -919,15 +927,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "43f38a69-aa95-4193-b265-3ac2028a6a5d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -936,15 +946,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2843' + - '2657' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:40 GMT + - Wed, 20 May 2026 09:15:06 GMT Pragma: - no-cache RequestId: - - b024b21f-3cc2-42cb-b4fe-4e5c638dfdd9 + - d3238653-91e4-475f-9a4e-6c0b8f3e0e73 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -970,13 +980,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/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True response: body: - string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName": - "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}' + string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName": + "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -985,15 +995,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '141' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:42 GMT + - Wed, 20 May 2026 09:15:06 GMT Pragma: - no-cache RequestId: - - 984c00e2-aab1-418c-b25e-7042b9f135ea + - a0ee9491-0597-4273-9d2b-2b165b33dff8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1019,13 +1029,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/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True response: body: - string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName": - "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}' + string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName": + "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1034,15 +1044,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '141' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:43 GMT + - Wed, 20 May 2026 09:15:07 GMT Pragma: - no-cache RequestId: - - 50d577af-2f00-425d-b135-43f17756dcb9 + - facca48f-5118-424c-9160-00be937ec75f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1066,17 +1076,17 @@ interactions: Connection: - keep-alive Content-Length: - - '73' + - '40' 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/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders response: body: - string: '{"id": "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy", - "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}' + string: '{"id": "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy", + "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -1085,17 +1095,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '133' + - '136' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:43 GMT + - Wed, 20 May 2026 09:15:08 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders/f844a32a-5b75-4f6e-9b5f-3bbad08950ab + - https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders/403eae67-8f7d-473d-aaee-4b87df873d4d Pragma: - no-cache RequestId: - - 00b51ba4-cb5e-49d0-a701-63ec7ac24508 + - c8f3a924-21dd-43a9-bb3a-487ed6f719dc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1121,14 +1131,14 @@ 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/43f38a69-aa95-4193-b265-3ac2028a6a5d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items response: body: - string: '{"value": [{"id": "a96e8cf6-2653-4097-9363-bb9d28960d02", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "43f38a69-aa95-4193-b265-3ac2028a6a5d", "folderId": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887"}]}' + string: '{"value": [{"id": "b59fd03e-912f-40be-bc72-64a5c2268b66", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", + "folderId": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1137,15 +1147,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '207' + - '194' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:44 GMT + - Wed, 20 May 2026 09:15:09 GMT Pragma: - no-cache RequestId: - - 09e28757-167c-4f95-a7da-a957fe74b70f + - 2a584329-ca2f-465b-a4cb-bf1eb212187c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1171,15 +1181,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/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True response: body: - string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName": - "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id": - "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy", - "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}' + string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName": + "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id": + "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy", + "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1188,15 +1198,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '180' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:45 GMT + - Wed, 20 May 2026 09:15:09 GMT Pragma: - no-cache RequestId: - - ca998d88-d116-4277-ac4f-138331626c5b + - 2c868c84-46fa-4002-bfe7-0f933f5f6571 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1222,15 +1232,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/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True response: body: - string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName": - "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id": - "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy", - "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}' + string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName": + "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id": + "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy", + "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1239,15 +1249,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '180' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:46 GMT + - Wed, 20 May 2026 09:15:10 GMT Pragma: - no-cache RequestId: - - c218199f-cd29-4c80-97f5-b73b3fe89c75 + - 6417bb65-7152-4181-8eac-e38c1f82c7e6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1273,14 +1283,14 @@ 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/43f38a69-aa95-4193-b265-3ac2028a6a5d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items response: body: - string: '{"value": [{"id": "a96e8cf6-2653-4097-9363-bb9d28960d02", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "43f38a69-aa95-4193-b265-3ac2028a6a5d", "folderId": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887"}]}' + string: '{"value": [{"id": "b59fd03e-912f-40be-bc72-64a5c2268b66", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", + "folderId": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1289,15 +1299,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '207' + - '194' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:46 GMT + - Wed, 20 May 2026 09:15:11 GMT Pragma: - no-cache RequestId: - - dc0e8588-ced9-4298-a37b-64c13ecae276 + - 9ff5512c-15f5-4a7e-b58d-51a640b99414 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1323,15 +1333,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/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True response: body: - string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName": - "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id": - "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy", - "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}' + string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName": + "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id": + "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy", + "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1340,15 +1350,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '180' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:47 GMT + - Wed, 20 May 2026 09:15:11 GMT Pragma: - no-cache RequestId: - - 49cf5dbd-de31-4e9c-90f0-8b92f93927f8 + - dee00603-845a-432e-921f-b8b430438c42 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1374,55 +1384,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True - response: - body: - string: '{"requestId": "4b181da6-bfff-4f01-bba2-678a28d03dbc", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 8:07:51 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 08:07:48 GMT - RequestId: - - 4b181da6-bfff-4f01-bba2-678a28d03dbc - Retry-After: - - '2' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True response: body: - string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName": - "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id": - "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy", - "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}' + string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName": + "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id": + "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy", + "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1431,15 +1401,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '180' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:51 GMT + - Wed, 20 May 2026 09:15:13 GMT Pragma: - no-cache RequestId: - - 3ff28c69-2bcc-4b93-bc98-fbb470030490 + - d2f8862a-f63e-4f1c-8d90-a74e9d4d15e2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1465,15 +1435,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "43f38a69-aa95-4193-b265-3ac2028a6a5d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1482,15 +1454,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2843' + - '2657' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:52 GMT + - Wed, 20 May 2026 09:15:13 GMT Pragma: - no-cache RequestId: - - 108a0abb-ce14-4272-a886-515964eaf24d + - efce5ae5-fde6-471f-a565-b3f205162a2a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1516,15 +1488,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/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True response: body: - string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName": - "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id": - "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy", - "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}' + string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName": + "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id": + "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy", + "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1533,15 +1505,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '180' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:53 GMT + - Wed, 20 May 2026 09:15:14 GMT Pragma: - no-cache RequestId: - - a76729e1-5552-4f64-b1e8-29cc3490746e + - a246890d-e69f-4046-99dc-fd7829749b50 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1567,14 +1539,14 @@ 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/43f38a69-aa95-4193-b265-3ac2028a6a5d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items response: body: - string: '{"value": [{"id": "a96e8cf6-2653-4097-9363-bb9d28960d02", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "43f38a69-aa95-4193-b265-3ac2028a6a5d", "folderId": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887"}]}' + string: '{"value": [{"id": "b59fd03e-912f-40be-bc72-64a5c2268b66", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", + "folderId": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1583,15 +1555,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '207' + - '194' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:53 GMT + - Wed, 20 May 2026 09:15:15 GMT Pragma: - no-cache RequestId: - - 71efcbf2-16f8-48b1-9e5f-6a97c6df3eba + - b468f1b0-8ec7-4f16-afbf-0acfce2ff082 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1617,15 +1589,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/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True response: body: - string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName": - "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id": - "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy", - "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}' + string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName": + "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id": + "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy", + "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1634,15 +1606,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '180' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:54 GMT + - Wed, 20 May 2026 09:15:16 GMT Pragma: - no-cache RequestId: - - 2af70adf-8bf0-4b6b-9249-c9fff495508f + - 83bfeadf-f77e-4837-be5e-4be9f030e861 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1668,14 +1640,14 @@ 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/43f38a69-aa95-4193-b265-3ac2028a6a5d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items response: body: - string: '{"value": [{"id": "a96e8cf6-2653-4097-9363-bb9d28960d02", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "43f38a69-aa95-4193-b265-3ac2028a6a5d", "folderId": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887"}]}' + string: '{"value": [{"id": "b59fd03e-912f-40be-bc72-64a5c2268b66", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", + "folderId": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1684,15 +1656,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '207' + - '194' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:56 GMT + - Wed, 20 May 2026 09:15:17 GMT Pragma: - no-cache RequestId: - - b098b6f4-9e8c-4770-b498-3723a89f259c + - ec581a8f-4c07-4636-a73d-208b8834f18c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1718,15 +1690,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/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True response: body: - string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName": - "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id": - "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy", - "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}' + string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName": + "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id": + "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy", + "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1735,15 +1707,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '180' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:56 GMT + - Wed, 20 May 2026 09:15:18 GMT Pragma: - no-cache RequestId: - - d810cdbc-f3dc-45fb-91a6-dd43b0f78e19 + - fa987c38-fc0c-4d8f-bd3b-8e665790d863 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1769,14 +1741,14 @@ 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/43f38a69-aa95-4193-b265-3ac2028a6a5d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items response: body: - string: '{"value": [{"id": "a96e8cf6-2653-4097-9363-bb9d28960d02", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "43f38a69-aa95-4193-b265-3ac2028a6a5d", "folderId": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887"}]}' + string: '{"value": [{"id": "b59fd03e-912f-40be-bc72-64a5c2268b66", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", + "folderId": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1785,15 +1757,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '207' + - '194' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:57 GMT + - Wed, 20 May 2026 09:15:18 GMT Pragma: - no-cache RequestId: - - 1af865cf-49f6-4ed2-9ab6-a567747d5752 + - 81698678-b77d-46f4-9153-733fdeedc927 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1819,15 +1791,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/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True response: body: - string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName": - "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id": - "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy", - "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}' + string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName": + "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id": + "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy", + "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1836,15 +1808,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '180' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:58 GMT + - Wed, 20 May 2026 09:15:20 GMT Pragma: - no-cache RequestId: - - c3c1186a-5ca9-4683-a1bf-153d751cba2c + - f28d1da3-83fb-4773-bf22-fbfe0bd4a54b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1870,14 +1842,14 @@ 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/43f38a69-aa95-4193-b265-3ac2028a6a5d/items/a96e8cf6-2653-4097-9363-bb9d28960d02 + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items/b59fd03e-912f-40be-bc72-64a5c2268b66 response: body: - string: '{"id": "a96e8cf6-2653-4097-9363-bb9d28960d02", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "43f38a69-aa95-4193-b265-3ac2028a6a5d", "folderId": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887"}' + string: '{"id": "b59fd03e-912f-40be-bc72-64a5c2268b66", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", + "folderId": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1886,17 +1858,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '195' + - '181' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:59 GMT + - Wed, 20 May 2026 09:15:20 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 63c8796c-6403-4550-852c-41bd3baf3e9a + - 6c6965db-bc67-45f1-8c0c-8a12e7f620aa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1924,9 +1896,9 @@ interactions: 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/43f38a69-aa95-4193-b265-3ac2028a6a5d/items/a96e8cf6-2653-4097-9363-bb9d28960d02/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items/b59fd03e-912f-40be-bc72-64a5c2268b66/getDefinition response: body: string: 'null' @@ -1942,13 +1914,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:07:59 GMT + - Wed, 20 May 2026 09:15:22 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9b660712-9739-484a-8686-13280eb9abc8 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/52b1bc87-cb80-41f1-b4be-cf0934965843 Pragma: - no-cache RequestId: - - 790885c6-dcbe-4c4a-a40d-b487b6a3c602 + - 53028c10-8ed8-4c78-af90-bb78c2f331e8 Retry-After: - '20' Strict-Transport-Security: @@ -1962,7 +1934,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 9b660712-9739-484a-8686-13280eb9abc8 + - 52b1bc87-cb80-41f1-b4be-cf0934965843 status: code: 202 message: Accepted @@ -1978,13 +1950,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9b660712-9739-484a-8686-13280eb9abc8 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/52b1bc87-cb80-41f1-b4be-cf0934965843 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:08:00.5615824", - "lastUpdatedTimeUtc": "2026-02-06T08:08:00.874086", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:15:22.1997963", + "lastUpdatedTimeUtc": "2026-05-20T09:15:22.9645529", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1994,17 +1966,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '128' + - '129' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:08:21 GMT + - Wed, 20 May 2026 09:15:43 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9b660712-9739-484a-8686-13280eb9abc8/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/52b1bc87-cb80-41f1-b4be-cf0934965843/result Pragma: - no-cache RequestId: - - b3a97d3e-b784-4de4-9fdf-70d128373435 + - 30e0786c-e1bc-4096-b070-0138703d1e48 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2012,7 +1984,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 9b660712-9739-484a-8686-13280eb9abc8 + - 52b1bc87-cb80-41f1-b4be-cf0934965843 status: code: 200 message: OK @@ -2028,14 +2000,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9b660712-9739-484a-8686-13280eb9abc8/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/52b1bc87-cb80-41f1-b4be-cf0934965843/result response: body: string: '{"definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -2047,11 +2019,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 08:08:22 GMT + - Wed, 20 May 2026 09:15:43 GMT Pragma: - no-cache RequestId: - - ffe5d170-66d9-488d-b488-4645a40b4586 + - c6b0e9cb-ef70-4488-ba4a-769ae92b8a4f Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -2064,10 +2036,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "Notebook", "displayName": "fabcli000003_copy", - "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", - "payloadType": "InlineBase64"}]}, "folderId": "f844a32a-5b75-4f6e-9b5f-3bbad08950ab"}' + body: '{"type": "Notebook", "displayName": "fabcli000003_copy", "definition": + {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}]}, "folderId": "403eae67-8f7d-473d-aaee-4b87df873d4d"}' headers: Accept: - '*/*' @@ -2076,14 +2048,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1291' - + - '1243' 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/43f38a69-aa95-4193-b265-3ac2028a6a5d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items response: body: string: 'null' @@ -2099,15 +2070,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:08:24 GMT + - Wed, 20 May 2026 09:15:46 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b59ff118-4359-41a2-8c83-c4b156be53f0 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/66579e4a-cb03-4531-93f0-8f5129070b33 Pragma: - no-cache RequestId: - - f3c73899-a4cd-425f-aa9b-697a4ff31831 + - 63f1e931-9c23-47d4-bbf9-1c55bd2f8e5e Retry-After: - '20' Strict-Transport-Security: @@ -2121,7 +2092,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - b59ff118-4359-41a2-8c83-c4b156be53f0 + - 66579e4a-cb03-4531-93f0-8f5129070b33 status: code: 202 message: Accepted @@ -2137,13 +2108,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b59ff118-4359-41a2-8c83-c4b156be53f0 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/66579e4a-cb03-4531-93f0-8f5129070b33 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:08:24.3019911", - "lastUpdatedTimeUtc": "2026-02-06T08:08:25.5677609", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:15:45.4680714", + "lastUpdatedTimeUtc": "2026-05-20T09:15:48.4980511", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -2153,17 +2124,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '130' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:08:46 GMT + - Wed, 20 May 2026 09:16:06 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b59ff118-4359-41a2-8c83-c4b156be53f0/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/66579e4a-cb03-4531-93f0-8f5129070b33/result Pragma: - no-cache RequestId: - - e82a9f3b-704b-41fe-bd6b-9b499a1e3f7e + - 3296df6a-becd-48bf-9bc5-b75c494aa9da Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2171,7 +2142,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - b59ff118-4359-41a2-8c83-c4b156be53f0 + - 66579e4a-cb03-4531-93f0-8f5129070b33 status: code: 200 message: OK @@ -2187,14 +2158,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b59ff118-4359-41a2-8c83-c4b156be53f0/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/66579e4a-cb03-4531-93f0-8f5129070b33/result response: body: - string: '{"id": "3e9ad918-faa8-4056-894e-3a5c34052326", "type": "Notebook", - "displayName": "fabcli000003_copy", "workspaceId": - "43f38a69-aa95-4193-b265-3ac2028a6a5d", "folderId": "f844a32a-5b75-4f6e-9b5f-3bbad08950ab"}' + string: '{"id": "d10f341c-2e72-498b-818f-62597426673a", "type": "Notebook", + "displayName": "fabcli000003_copy", "description": "", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", + "folderId": "403eae67-8f7d-473d-aaee-4b87df873d4d"}' headers: Access-Control-Expose-Headers: - RequestId @@ -2205,11 +2176,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 08:08:47 GMT + - Wed, 20 May 2026 09:16:07 GMT Pragma: - no-cache RequestId: - - 197d59ff-840a-4d9b-835a-ea2dffa54184 + - d7cd724f-3c7c-42eb-972b-a94ae1110d51 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -2233,17 +2204,16 @@ 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/43f38a69-aa95-4193-b265-3ac2028a6a5d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items response: body: - string: '{"value": [{"id": "a96e8cf6-2653-4097-9363-bb9d28960d02", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "43f38a69-aa95-4193-b265-3ac2028a6a5d", "folderId": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887"}, - {"id": "3e9ad918-faa8-4056-894e-3a5c34052326", "type": "Notebook", "displayName": - "fabcli000003_copy", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d", - "folderId": "f844a32a-5b75-4f6e-9b5f-3bbad08950ab"}]}' + string: '{"value": [{"id": "b59fd03e-912f-40be-bc72-64a5c2268b66", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", + "folderId": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a"}, {"id": "d10f341c-2e72-498b-818f-62597426673a", + "type": "Notebook", "displayName": "fabcli000003_copy", "description": "", + "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "folderId": "403eae67-8f7d-473d-aaee-4b87df873d4d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2252,15 +2222,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '268' + - '257' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:08:48 GMT + - Wed, 20 May 2026 09:16:08 GMT Pragma: - no-cache RequestId: - - 84813142-9504-4262-9688-eb14555d4ff3 + - 2a3e4ecf-c7c7-464d-acd6-56cc3107e8bb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2286,15 +2256,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/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True response: body: - string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName": - "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id": - "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy", - "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}' + string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName": + "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id": + "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy", + "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2303,15 +2273,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '180' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:08:48 GMT + - Wed, 20 May 2026 09:16:09 GMT Pragma: - no-cache RequestId: - - 524379cc-ec57-4076-ad2f-0f9cbfba625b + - 7500ba14-82ea-4f80-a9ac-7fb7cca06fd1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2337,15 +2307,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/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True response: body: - string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName": - "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id": - "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy", - "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}' + string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName": + "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id": + "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy", + "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2354,15 +2324,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '180' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:08:49 GMT + - Wed, 20 May 2026 09:16:10 GMT Pragma: - no-cache RequestId: - - 1a9c479f-74b9-4e19-b032-0432b6e27b47 + - 5a6aa948-cd49-4ab2-bb58-6627e6972d42 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2388,15 +2358,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/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True response: body: - string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName": - "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id": - "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy", - "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}' + string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName": + "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id": + "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy", + "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2405,15 +2375,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '180' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:08:50 GMT + - Wed, 20 May 2026 09:16:11 GMT Pragma: - no-cache RequestId: - - 93b849f0-09e3-4a28-812c-fc6fce18b006 + - 0a468bde-d0e3-4075-80cb-de58164560fb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2439,15 +2409,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "43f38a69-aa95-4193-b265-3ac2028a6a5d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2456,15 +2428,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2843' + - '2657' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:08:51 GMT + - Wed, 20 May 2026 09:16:11 GMT Pragma: - no-cache RequestId: - - 14a194f8-758a-436c-9f81-242c0adb9b57 + - 70115cb4-db37-49af-8a81-4b2a3c5cebdc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2490,17 +2462,16 @@ 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/43f38a69-aa95-4193-b265-3ac2028a6a5d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items response: body: - string: '{"value": [{"id": "a96e8cf6-2653-4097-9363-bb9d28960d02", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "43f38a69-aa95-4193-b265-3ac2028a6a5d", "folderId": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887"}, - {"id": "3e9ad918-faa8-4056-894e-3a5c34052326", "type": "Notebook", "displayName": - "fabcli000003_copy", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d", - "folderId": "f844a32a-5b75-4f6e-9b5f-3bbad08950ab"}]}' + string: '{"value": [{"id": "b59fd03e-912f-40be-bc72-64a5c2268b66", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", + "folderId": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a"}, {"id": "d10f341c-2e72-498b-818f-62597426673a", + "type": "Notebook", "displayName": "fabcli000003_copy", "description": "", + "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "folderId": "403eae67-8f7d-473d-aaee-4b87df873d4d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2509,15 +2480,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '268' + - '257' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:08:52 GMT + - Wed, 20 May 2026 09:16:12 GMT Pragma: - no-cache RequestId: - - f973ab26-3d96-43da-a835-f704a8f81b67 + - 54b99fee-b973-43de-bd61-996a16dba860 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2543,15 +2514,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/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True response: body: - string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName": - "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id": - "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy", - "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}' + string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName": + "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id": + "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy", + "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2560,15 +2531,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '180' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:08:52 GMT + - Wed, 20 May 2026 09:16:13 GMT Pragma: - no-cache RequestId: - - 47de45c4-b389-4c2e-b69f-2e456991d1a4 + - 742f92b4-b02a-4751-bc4e-dae2501c23dc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2594,15 +2565,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/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True response: body: - string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName": - "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id": - "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy", - "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}' + string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName": + "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id": + "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy", + "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2611,15 +2582,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '180' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:08:53 GMT + - Wed, 20 May 2026 09:16:14 GMT Pragma: - no-cache RequestId: - - e17b1103-6361-4369-aa3f-9aad0517bcc3 + - 03ad2395-3b1a-4034-9279-a024841cc35b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2645,15 +2616,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/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True response: body: - string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName": - "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id": - "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy", - "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}' + string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName": + "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id": + "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy", + "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2662,15 +2633,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '180' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:08:54 GMT + - Wed, 20 May 2026 09:16:14 GMT Pragma: - no-cache RequestId: - - 3f684e42-0c8c-445a-a365-39f0b16c64d3 + - f82c1cb6-ac7f-4126-a751-5ff39ce13f02 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2696,15 +2667,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "43f38a69-aa95-4193-b265-3ac2028a6a5d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2713,15 +2686,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2843' + - '2657' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:08:55 GMT + - Wed, 20 May 2026 09:16:16 GMT Pragma: - no-cache RequestId: - - eec8d8d3-f333-400d-b4f3-8ed43fd07793 + - 942b1b3e-0832-4a45-8805-1662d70112a0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2747,15 +2720,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/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True response: body: - string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName": - "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id": - "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy", - "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}' + string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName": + "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id": + "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy", + "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2764,15 +2737,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '180' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:08:55 GMT + - Wed, 20 May 2026 09:16:17 GMT Pragma: - no-cache RequestId: - - a24637c3-4acc-4f90-b3a9-f8d682e0f409 + - 8770dc0b-9ea1-4284-91e2-897ab8f490b1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2798,17 +2771,16 @@ 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/43f38a69-aa95-4193-b265-3ac2028a6a5d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items response: body: - string: '{"value": [{"id": "a96e8cf6-2653-4097-9363-bb9d28960d02", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "43f38a69-aa95-4193-b265-3ac2028a6a5d", "folderId": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887"}, - {"id": "3e9ad918-faa8-4056-894e-3a5c34052326", "type": "Notebook", "displayName": - "fabcli000003_copy", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d", - "folderId": "f844a32a-5b75-4f6e-9b5f-3bbad08950ab"}]}' + string: '{"value": [{"id": "b59fd03e-912f-40be-bc72-64a5c2268b66", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", + "folderId": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a"}, {"id": "d10f341c-2e72-498b-818f-62597426673a", + "type": "Notebook", "displayName": "fabcli000003_copy", "description": "", + "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "folderId": "403eae67-8f7d-473d-aaee-4b87df873d4d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2817,15 +2789,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '268' + - '257' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:08:57 GMT + - Wed, 20 May 2026 09:16:17 GMT Pragma: - no-cache RequestId: - - 579fd6e8-3662-40c4-bc86-d1415e5ca2c2 + - e938a392-cd8a-44b4-b4d0-4c1de628db55 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2851,15 +2823,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/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True response: body: - string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName": - "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id": - "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy", - "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}' + string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName": + "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id": + "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy", + "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2868,15 +2840,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '180' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:08:57 GMT + - Wed, 20 May 2026 09:16:18 GMT Pragma: - no-cache RequestId: - - 86d03bdf-72fa-4ecd-908d-41098bc3f6de + - f5c40972-06fe-447d-9ccb-e17af88f217b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2902,15 +2874,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/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True response: body: - string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName": - "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id": - "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy", - "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}' + string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName": + "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id": + "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy", + "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2919,15 +2891,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '180' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:08:58 GMT + - Wed, 20 May 2026 09:16:20 GMT Pragma: - no-cache RequestId: - - e4752f7d-419e-4562-a08f-9e3095149d75 + - 81c3952f-39e4-4f4c-964b-1969c0aa35cc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2953,15 +2925,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/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True response: body: - string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName": - "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id": - "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy", - "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}' + string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName": + "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id": + "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy", + "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2970,15 +2942,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '180' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:08:59 GMT + - Wed, 20 May 2026 09:16:20 GMT Pragma: - no-cache RequestId: - - eaaa2338-003a-47fc-bd1e-7d018a1bdf8f + - c1f76712-cb92-46ec-b498-5e6bd54dd272 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3004,15 +2976,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "43f38a69-aa95-4193-b265-3ac2028a6a5d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3021,15 +2995,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2843' + - '2657' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:08:59 GMT + - Wed, 20 May 2026 09:16:21 GMT Pragma: - no-cache RequestId: - - f43ba627-6666-4f9e-8f1e-943d7180ddc5 + - feebe12d-ea24-48ba-8ea0-4e498e476f4b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3055,15 +3029,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/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True response: body: - string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName": - "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id": - "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy", - "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}' + string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName": + "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id": + "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy", + "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3072,15 +3046,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '180' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:09:00 GMT + - Wed, 20 May 2026 09:16:22 GMT Pragma: - no-cache RequestId: - - 591cccc6-ecd1-443a-b21d-a8f76407b8cd + - f7174467-34c0-4b8a-828c-845a4a82dd8b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3106,17 +3080,16 @@ 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/43f38a69-aa95-4193-b265-3ac2028a6a5d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items response: body: - string: '{"value": [{"id": "a96e8cf6-2653-4097-9363-bb9d28960d02", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "43f38a69-aa95-4193-b265-3ac2028a6a5d", "folderId": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887"}, - {"id": "3e9ad918-faa8-4056-894e-3a5c34052326", "type": "Notebook", "displayName": - "fabcli000003_copy", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d", - "folderId": "f844a32a-5b75-4f6e-9b5f-3bbad08950ab"}]}' + string: '{"value": [{"id": "b59fd03e-912f-40be-bc72-64a5c2268b66", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", + "folderId": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a"}, {"id": "d10f341c-2e72-498b-818f-62597426673a", + "type": "Notebook", "displayName": "fabcli000003_copy", "description": "", + "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "folderId": "403eae67-8f7d-473d-aaee-4b87df873d4d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3125,15 +3098,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '268' + - '257' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:09:01 GMT + - Wed, 20 May 2026 09:16:23 GMT Pragma: - no-cache RequestId: - - e89c24e0-474f-4cd7-9ada-14afc589b898 + - 4da5a635-47d3-4274-8494-a61812b5a7b7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3159,15 +3132,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/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True response: body: - string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName": - "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id": - "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy", - "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}' + string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName": + "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id": + "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy", + "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3176,15 +3149,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '180' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:09:02 GMT + - Wed, 20 May 2026 09:16:24 GMT Pragma: - no-cache RequestId: - - 0abe008d-e016-4c3e-b129-18a67f9473ec + - 0e353913-a6fa-4680-90cc-1454e35f43a9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3210,15 +3183,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/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True response: body: - string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName": - "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id": - "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy", - "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}' + string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName": + "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id": + "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy", + "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3227,15 +3200,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '180' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:09:02 GMT + - Wed, 20 May 2026 09:16:25 GMT Pragma: - no-cache RequestId: - - f09b9e3d-0a90-4ff7-8990-7504c64ceeda + - e6ae0a9a-561d-4686-ae44-347be3e20bdc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3263,9 +3236,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/43f38a69-aa95-4193-b265-3ac2028a6a5d/items/a96e8cf6-2653-4097-9363-bb9d28960d02 + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items/b59fd03e-912f-40be-bc72-64a5c2268b66 response: body: string: '' @@ -3281,11 +3254,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:09:04 GMT + - Wed, 20 May 2026 09:16:25 GMT Pragma: - no-cache RequestId: - - c2fda6b1-7587-4a67-b466-e066495dcce1 + - 8c4e30e1-e1be-44ac-a019-829e07267c1c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3311,15 +3284,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "43f38a69-aa95-4193-b265-3ac2028a6a5d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3328,15 +3303,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2843' + - '2657' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:09:04 GMT + - Wed, 20 May 2026 09:16:26 GMT Pragma: - no-cache RequestId: - - 9b4a30e8-9abd-4694-9f91-c2035a20c4f6 + - 681f5066-03aa-4ff7-861f-00fe9d848db3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3362,55 +3337,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True - response: - body: - string: '{"requestId": "d83ae5b7-92be-4724-ae35-a988a4eb4a92", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 8:09:53 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 08:09:05 GMT - RequestId: - - d83ae5b7-92be-4724-ae35-a988a4eb4a92 - Retry-After: - - '48' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True response: body: - string: '{"value": [{"id": "fcdedc27-b0d3-494f-8ffa-c36ec15a5887", "displayName": - "fabcli000002", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}, {"id": - "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": "fabcli000002_copy", - "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}' + string: '{"value": [{"id": "f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a", "displayName": + "fabcli000002", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}, {"id": + "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": "fabcli000002_copy", + "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3419,15 +3354,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '180' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:09:56 GMT + - Wed, 20 May 2026 09:16:26 GMT Pragma: - no-cache RequestId: - - 4480cce9-0c30-4eb6-9e25-6a2405d165da + - 47101c06-8e0a-42bc-80d9-021f1df2f843 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3455,9 +3390,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/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders/fcdedc27-b0d3-494f-8ffa-c36ec15a5887 + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders/f13d3cf6-99e9-4f9a-b34d-5f0b9bf0195a response: body: string: '' @@ -3473,11 +3408,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:09:57 GMT + - Wed, 20 May 2026 09:16:27 GMT Pragma: - no-cache RequestId: - - ea69dee5-4236-4843-9825-9cc6f39584b4 + - 025bda9c-9c56-4a2f-be71-d65c3333ae7a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3503,15 +3438,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "43f38a69-aa95-4193-b265-3ac2028a6a5d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3520,15 +3457,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2843' + - '2657' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:09:58 GMT + - Wed, 20 May 2026 09:16:28 GMT Pragma: - no-cache RequestId: - - 43066e5a-67ae-493a-8fd1-bbbc76a1213d + - 1c18b3f2-cef9-40b9-ace7-42d19386d86b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3554,14 +3491,14 @@ 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/43f38a69-aa95-4193-b265-3ac2028a6a5d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/items response: body: - string: '{"value": [{"id": "3e9ad918-faa8-4056-894e-3a5c34052326", "type": "Notebook", - "displayName": "fabcli000003_copy", "workspaceId": - "43f38a69-aa95-4193-b265-3ac2028a6a5d", "folderId": "f844a32a-5b75-4f6e-9b5f-3bbad08950ab"}]}' + string: '{"value": [{"id": "d10f341c-2e72-498b-818f-62597426673a", "type": "Notebook", + "displayName": "fabcli000003_copy", "description": "", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae", + "folderId": "403eae67-8f7d-473d-aaee-4b87df873d4d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3570,15 +3507,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '210' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:09:59 GMT + - Wed, 20 May 2026 09:16:29 GMT Pragma: - no-cache RequestId: - - bc34db58-32ff-42d5-8141-2dba17bf5bac + - dfe11f98-957d-43ff-83c8-8fdb6ca1bf66 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3604,13 +3541,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/43f38a69-aa95-4193-b265-3ac2028a6a5d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae/folders?recursive=True response: body: - string: '{"value": [{"id": "f844a32a-5b75-4f6e-9b5f-3bbad08950ab", "displayName": - "fabcli000002_copy", "workspaceId": "43f38a69-aa95-4193-b265-3ac2028a6a5d"}]}' + string: '{"value": [{"id": "403eae67-8f7d-473d-aaee-4b87df873d4d", "displayName": + "fabcli000002_copy", "workspaceId": "e9a98b56-95d2-41b6-bea3-b37eb9d693ae"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3619,15 +3556,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '147' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:10:00 GMT + - Wed, 20 May 2026 09:16:30 GMT Pragma: - no-cache RequestId: - - 08dc618a-bae1-4426-9cec-46ba218723a3 + - 24ad32d2-83ad-4d26-b181-144fa987e3b2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3655,9 +3592,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/43f38a69-aa95-4193-b265-3ac2028a6a5d + uri: https://api.fabric.microsoft.com/v1/workspaces/e9a98b56-95d2-41b6-bea3-b37eb9d693ae response: body: string: '' @@ -3673,11 +3610,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:10:00 GMT + - Wed, 20 May 2026 09:16:31 GMT Pragma: - no-cache RequestId: - - 41a418bc-7d23-4852-a1ac-28c0e9aa0a45 + - 0c2d9293-bc85-4f3d-a626-323e455badf5 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_to_workspace_nested_folder_success.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_workspace_nested_folder_success.yaml index 8bc60ad6c..fd65607df 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_workspace_nested_folder_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_workspace_nested_folder_success.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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:50:59 GMT + - Wed, 20 May 2026 09:05:45 GMT Pragma: - no-cache RequestId: - - 980c2c93-28d2-4d6d-9fcc-231734e0bce7 + - 9e0250c7-1cef-475e-9a34-ef0b1c84b57d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:51:01 GMT + - Wed, 20 May 2026 09:05:45 GMT Pragma: - no-cache RequestId: - - adb95462-e0b2-4f34-b724-3c95a1987a1e + - 519e68f7-19dc-4dac-847a-36565f95b393 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,7 +113,7 @@ 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/capacities response: @@ -127,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '429' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:51:06 GMT + - Wed, 20 May 2026 09:05:50 GMT Pragma: - no-cache RequestId: - - 9ab271a3-3a40-4674-adcf-c96e63db3321 + - a3748c28-f3fa-47c4-ac31-9878af1ceab5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -160,16 +162,16 @@ interactions: - keep-alive Content-Length: - '89' - 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 response: body: - string: '{"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -178,17 +180,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '153' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:51:15 GMT + - Wed, 20 May 2026 09:05:59 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e + - https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a Pragma: - no-cache RequestId: - - 848e4cb3-c3a4-4491-a7c2-0ef429dc5dac + - adc3a526-09b1-4dd8-99b0-2dde8bc2c6b6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,15 +216,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -231,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2842' + - '2656' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:51:16 GMT + - Wed, 20 May 2026 09:06:00 GMT Pragma: - no-cache RequestId: - - d3476ddd-2181-491d-868a-fc3c86439461 + - 207d1bfc-051c-439f-bd17-ae903343b391 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,15 +269,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -282,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2842' + - '2656' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:51:16 GMT + - Wed, 20 May 2026 09:06:00 GMT Pragma: - no-cache RequestId: - - a52aeea1-7306-4803-9c7c-dc6e1b06b03e + - fdd2af5c-bb9d-41c0-89da-36023d3381bb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,7 +322,7 @@ 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/capacities response: @@ -332,15 +338,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '427' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:51:19 GMT + - Wed, 20 May 2026 09:06:05 GMT Pragma: - no-cache RequestId: - - 0676ad62-1b91-4af6-b556-49cf846b0615 + - 041b9ef3-9c64-4cf3-8fef-c0c2ab275e5e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -365,16 +371,16 @@ interactions: - keep-alive Content-Length: - '89' - 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 response: body: - string: '{"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -383,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:51:27 GMT + - Wed, 20 May 2026 09:06:12 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734 + - https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf Pragma: - no-cache RequestId: - - 68e9fd32-e03b-4e1c-bd49-557580ec837f + - 164d4ac1-c05c-4a69-83f4-279f4f319d91 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -419,16 +425,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -437,15 +446,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:51:28 GMT + - Wed, 20 May 2026 09:06:12 GMT Pragma: - no-cache RequestId: - - 7983811d-688d-4ba7-ad27-b7ca85327705 + - 2ac1cceb-9098-4282-aef3-d567f775c339 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -471,9 +480,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: string: '{"value": []}' @@ -489,11 +498,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:51:29 GMT + - Wed, 20 May 2026 09:06:14 GMT Pragma: - no-cache RequestId: - - 08067838-29c4-4e22-892a-3915bec1f265 + - 67155ef3-09b4-4982-b826-62aa8d437954 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -519,9 +528,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: string: '{"value": []}' @@ -537,11 +546,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:51:30 GMT + - Wed, 20 May 2026 09:06:15 GMT Pragma: - no-cache RequestId: - - 068d71e5-6d0b-4d70-b345-6d316afd6e2a + - 9ae45fb3-c34b-49fa-8d72-d66016e7056b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -565,17 +574,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/39a1a111-e03b-4684-841a-e0a5e631000e/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders response: body: - string: '{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": "fabcli000003", - "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}' + string: '{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": "fabcli000003", + "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -588,13 +597,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:51:30 GMT + - Wed, 20 May 2026 09:06:15 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders/286030e4-8cb5-4735-9b6c-bdda8b2f4dfe + - https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders/06ca94aa-2456-4ddf-a53e-f41bce88c0bb Pragma: - no-cache RequestId: - - 1405af4e-e988-402c-8cc2-5ac6959c15aa + - ac7abd50-8060-4bda-92b8-19c9e7df1f7b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -620,16 +629,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -638,15 +650,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:51:31 GMT + - Wed, 20 May 2026 09:06:16 GMT Pragma: - no-cache RequestId: - - a4fd541b-f9c5-45eb-8f89-8755f274075d + - 01d9d274-e63b-4cf2-942c-45aadf976370 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -672,13 +684,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -687,15 +699,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:51:32 GMT + - Wed, 20 May 2026 09:06:17 GMT Pragma: - no-cache RequestId: - - 7d0e3860-f1f4-4861-9cd0-2c054b87b53f + - 845e2002-5c14-471c-86d6-b2b08aa8254f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -721,13 +733,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -736,15 +748,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:51:33 GMT + - Wed, 20 May 2026 09:06:18 GMT Pragma: - no-cache RequestId: - - 5920e662-4cd9-4e85-882d-30422c05bf16 + - f212dc92-df2c-4dfc-8736-80189e3e3248 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -770,13 +782,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -785,15 +797,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:51:34 GMT + - Wed, 20 May 2026 09:06:19 GMT Pragma: - no-cache RequestId: - - 8227b161-5659-46cd-a76d-7f3f3ce440cc + - f5a5b401-c4bc-4bc9-894d-4be4886b4f9e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -808,8 +820,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe"}' + body: '{"displayName": "fabcli000004", "parentFolderId": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb"}' headers: Accept: - '*/*' @@ -819,17 +830,16 @@ interactions: - keep-alive Content-Length: - '93' - 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/39a1a111-e03b-4684-841a-e0a5e631000e/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders response: body: - string: '{"id": "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", - "parentFolderId": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}' + string: '{"id": "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", + "parentFolderId": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -838,17 +848,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '167' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:51:35 GMT + - Wed, 20 May 2026 09:06:20 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders/b6217fa4-8911-4c8b-98c4-2507fb6fb87c + - https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders/170128a0-234a-431b-b133-4fc0dc6c2258 Pragma: - no-cache RequestId: - - 1d89a4b8-61da-49ef-a841-0a18ffb2d66d + - e63d532d-ba5a-4e9a-9133-77b66d884ab4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -874,16 +884,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -892,15 +905,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:51:35 GMT + - Wed, 20 May 2026 09:06:21 GMT Pragma: - no-cache RequestId: - - 3144aef9-bccf-497c-94c5-602318482c7f + - a68df27a-8962-4822-8d0e-189b8898ad6e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -926,9 +939,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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: string: '{"value": []}' @@ -944,11 +957,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:51:36 GMT + - Wed, 20 May 2026 09:06:22 GMT Pragma: - no-cache RequestId: - - 264ab13a-b18a-4d3a-bc50-bbab6e8d1e23 + - bcc967ea-abc3-4eda-8894-58342f4f7bcb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -974,9 +987,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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: string: '{"value": []}' @@ -992,11 +1005,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:51:37 GMT + - Wed, 20 May 2026 09:06:22 GMT Pragma: - no-cache RequestId: - - 17ee1d5e-7795-4b3d-b30a-5332963613ed + - 4607b66c-ae06-41e4-8a8f-4013b325aacc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1020,17 +1033,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders response: body: - string: '{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": "fabcli000005", - "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}' + string: '{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": "fabcli000005", + "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -1039,17 +1052,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:51:37 GMT + - Wed, 20 May 2026 09:06:23 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders/197237c1-a9dd-44e4-81c8-15ae690cf0a6 + - https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders/2a976532-472f-4773-bd29-35c87ea62cdf Pragma: - no-cache RequestId: - - b08719cd-de3b-469d-a47f-f6884bae02bf + - 0436ff64-9ee3-4704-bf00-243d283fe21e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1075,16 +1088,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1093,15 +1109,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:51:38 GMT + - Wed, 20 May 2026 09:06:24 GMT Pragma: - no-cache RequestId: - - 7849b815-e54f-4443-922a-12e2852750bd + - 8ba1e88f-44c4-4f28-96bf-d395d33974cb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1127,55 +1143,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True - response: - body: - string: '{"requestId": "c8cd8a19-5f5d-4e01-8a43-6e9b0c488557", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 7:51:49 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:51:39 GMT - RequestId: - - c8cd8a19-5f5d-4e01-8a43-6e9b0c488557 - Retry-After: - - '9' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1188,11 +1164,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:51:50 GMT + - Wed, 20 May 2026 09:06:25 GMT Pragma: - no-cache RequestId: - - 9edd1076-3212-40af-89f6-ffbd35de6561 + - e291850a-500c-4b76-988e-4423fb2a89c8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1218,9 +1194,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/39a1a111-e03b-4684-841a-e0a5e631000e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items response: body: string: '{"value": []}' @@ -1236,11 +1212,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:51:51 GMT + - Wed, 20 May 2026 09:06:26 GMT Pragma: - no-cache RequestId: - - 2e0e6125-8aba-4f1b-be53-68fd5da8a5cf + - f2f29115-7d42-4815-bea6-38828db3523e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1266,9 +1242,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/39a1a111-e03b-4684-841a-e0a5e631000e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items response: body: string: '{"value": []}' @@ -1284,11 +1260,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:51:52 GMT + - Wed, 20 May 2026 09:06:27 GMT Pragma: - no-cache RequestId: - - c3b11966-b698-4e2b-bd6e-949cdf91f949 + - 5300ea43-4544-4daa-aae0-a568cb0eb8ed Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1303,9 +1279,8 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000006", "type": - "Notebook", "folderId": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "definition": - {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", + body: '{"displayName": "fabcli000006", "type": "Notebook", "folderId": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", + "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", "payloadType": "InlineBase64"}]}}' headers: Accept: @@ -1316,13 +1291,12 @@ interactions: - keep-alive Content-Length: - '765' - 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/39a1a111-e03b-4684-841a-e0a5e631000e/notebooks + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/notebooks response: body: string: 'null' @@ -1338,15 +1312,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:51:54 GMT + - Wed, 20 May 2026 09:06:28 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b8e8d851-1efd-4dd0-a29e-a096cb380378 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/025878ab-d2ee-4925-bb4d-4926ed3ef8a0 Pragma: - no-cache RequestId: - - 7434eb45-33a2-4f96-9e4c-4be9bd9eae99 + - 2bf7ec5a-ec37-4155-87bc-c9e6bf9dc360 Retry-After: - '20' Strict-Transport-Security: @@ -1360,7 +1334,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - b8e8d851-1efd-4dd0-a29e-a096cb380378 + - 025878ab-d2ee-4925-bb4d-4926ed3ef8a0 status: code: 202 message: Accepted @@ -1376,13 +1350,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b8e8d851-1efd-4dd0-a29e-a096cb380378 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/025878ab-d2ee-4925-bb4d-4926ed3ef8a0 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:51:53.7456402", - "lastUpdatedTimeUtc": "2026-02-06T07:51:55.1684247", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:06:28.7327109", + "lastUpdatedTimeUtc": "2026-05-20T09:06:30.5728068", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1396,13 +1370,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:15 GMT + - Wed, 20 May 2026 09:06:49 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b8e8d851-1efd-4dd0-a29e-a096cb380378/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/025878ab-d2ee-4925-bb4d-4926ed3ef8a0/result Pragma: - no-cache RequestId: - - adbb5176-db90-45be-994e-e48c3ecb5065 + - fbea703a-c440-4152-b4b3-32a793785b0d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1410,7 +1384,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - b8e8d851-1efd-4dd0-a29e-a096cb380378 + - 025878ab-d2ee-4925-bb4d-4926ed3ef8a0 status: code: 200 message: OK @@ -1426,14 +1400,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b8e8d851-1efd-4dd0-a29e-a096cb380378/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/025878ab-d2ee-4925-bb4d-4926ed3ef8a0/result response: body: - string: '{"id": "92270156-79b2-409b-bd1a-bad40cff71fe", "type": "Notebook", - "displayName": "fabcli000006", "workspaceId": - "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe"}' + string: '{"id": "0485d3f6-d4ac-42e9-89da-b1411eb85bf0", "type": "Notebook", + "displayName": "fabcli000006", "description": "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", + "folderId": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb"}' headers: Access-Control-Expose-Headers: - RequestId @@ -1444,11 +1418,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 07:52:16 GMT + - Wed, 20 May 2026 09:06:51 GMT Pragma: - no-cache RequestId: - - bbec0b0e-e233-46ef-820e-def77d64cd18 + - 942901ea-6861-4365-b35b-cecdf4dcf7ad Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1472,16 +1446,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1490,15 +1467,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:17 GMT + - Wed, 20 May 2026 09:06:51 GMT Pragma: - no-cache RequestId: - - 1d7a5e42-efca-4aaf-af31-8e9a2e05967f + - 31ee6b67-1ccd-49ea-bc22-c42511aee65f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1524,15 +1501,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1545,11 +1522,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:18 GMT + - Wed, 20 May 2026 09:06:52 GMT Pragma: - no-cache RequestId: - - 2412737b-58ed-4025-ae70-6d1e233e6e92 + - 3c62f1b1-2c19-4bf3-9e7d-921960f2c5a8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1575,15 +1552,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1596,11 +1573,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:19 GMT + - Wed, 20 May 2026 09:06:53 GMT Pragma: - no-cache RequestId: - - fbe5a6ee-35ee-40dd-8c7f-1870ecb74a0e + - 770542bc-6f73-4837-b5f0-f0ee132facce Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1626,14 +1603,14 @@ 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/39a1a111-e03b-4684-841a-e0a5e631000e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items response: body: - string: '{"value": [{"id": "92270156-79b2-409b-bd1a-bad40cff71fe", "type": "Notebook", - "displayName": "fabcli000006", "workspaceId": - "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe"}]}' + string: '{"value": [{"id": "0485d3f6-d4ac-42e9-89da-b1411eb85bf0", "type": "Notebook", + "displayName": "fabcli000006", "description": "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", + "folderId": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1642,15 +1619,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '209' + - '195' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:20 GMT + - Wed, 20 May 2026 09:06:55 GMT Pragma: - no-cache RequestId: - - df1bb99a-2177-45ea-9604-b2a4ec010cff + - 2c26edae-76d2-4ad2-94b5-7a3afa2bf6d8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1676,15 +1653,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1697,11 +1674,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:21 GMT + - Wed, 20 May 2026 09:06:55 GMT Pragma: - no-cache RequestId: - - 9d9edbb8-abc0-41ab-bbf9-95fc3d170a94 + - 050caf21-535e-4f23-8a51-015de779e1d9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1727,14 +1704,14 @@ 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/39a1a111-e03b-4684-841a-e0a5e631000e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items response: body: - string: '{"value": [{"id": "92270156-79b2-409b-bd1a-bad40cff71fe", "type": "Notebook", - "displayName": "fabcli000006", "workspaceId": - "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe"}]}' + string: '{"value": [{"id": "0485d3f6-d4ac-42e9-89da-b1411eb85bf0", "type": "Notebook", + "displayName": "fabcli000006", "description": "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", + "folderId": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1743,15 +1720,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '209' + - '195' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:21 GMT + - Wed, 20 May 2026 09:06:56 GMT Pragma: - no-cache RequestId: - - f8ce80e2-20ba-4466-a490-055ebfe71b16 + - b33feec6-0170-4a44-9cab-939f71a0cd33 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1777,15 +1754,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1798,11 +1775,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:23 GMT + - Wed, 20 May 2026 09:06:56 GMT Pragma: - no-cache RequestId: - - 38160f8e-2a27-4531-8196-aaeb5ae68e2b + - ae9c4c24-e07c-48de-b8a8-da8c1e3bbd2a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1817,8 +1794,8 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000007", "type": - "SparkJobDefinition", "folderId": "b6217fa4-8911-4c8b-98c4-2507fb6fb87c"}' + body: '{"displayName": "fabcli000007", "type": "SparkJobDefinition", "folderId": + "170128a0-234a-431b-b133-4fc0dc6c2258"}' headers: Accept: - '*/*' @@ -1828,18 +1805,17 @@ interactions: - keep-alive Content-Length: - '117' - 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/39a1a111-e03b-4684-841a-e0a5e631000e/sparkJobDefinitions + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/sparkJobDefinitions response: body: - string: '{"id": "a4517be4-4347-4fc9-9a6a-2dea722c8909", "type": "SparkJobDefinition", - "displayName": "fabcli000007", "workspaceId": - "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "b6217fa4-8911-4c8b-98c4-2507fb6fb87c"}' + string: '{"id": "e0829343-6e57-4aa6-b665-6913f1c56998", "type": "SparkJobDefinition", + "displayName": "fabcli000007", "description": "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", + "folderId": "170128a0-234a-431b-b133-4fc0dc6c2258"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1848,17 +1824,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '204' + - '195' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:25 GMT + - Wed, 20 May 2026 09:06:59 GMT ETag: - '""' Pragma: - no-cache RequestId: - - cc08f36a-9c8a-4e07-a86a-40d39d21a04c + - 2fdf3ad8-b48c-439e-9c7a-079678357369 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1884,16 +1860,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1902,15 +1881,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:27 GMT + - Wed, 20 May 2026 09:06:59 GMT Pragma: - no-cache RequestId: - - 1dc2911d-4e01-4c73-8272-9b5b6cdb4511 + - 2e77b699-c7eb-4703-be83-adb8345c156d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1936,15 +1915,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1957,11 +1936,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:27 GMT + - Wed, 20 May 2026 09:07:00 GMT Pragma: - no-cache RequestId: - - 8ea9c5fa-078e-4d4c-a94b-285069db899e + - b87cac91-4683-4b85-83d1-9daaaff35ab4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1987,16 +1966,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2005,15 +1987,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:28 GMT + - Wed, 20 May 2026 09:07:01 GMT Pragma: - no-cache RequestId: - - 258f261a-1a39-4e67-9b3b-45623ac176f2 + - 025e0819-e6bb-43dc-8339-72a57aa8fe2b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2039,13 +2021,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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2054,15 +2036,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:29 GMT + - Wed, 20 May 2026 09:07:02 GMT Pragma: - no-cache RequestId: - - c34c0458-0343-4b73-9bf8-accbd4dccce3 + - e902b9b9-e050-4253-a680-3516faf69428 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2088,16 +2070,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2106,15 +2091,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:29 GMT + - Wed, 20 May 2026 09:07:03 GMT Pragma: - no-cache RequestId: - - 5e1f7bbf-7eea-45ac-88f5-76834c716e0b + - 5cd1da8f-e122-4f1f-be2f-ce58223be02f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2140,13 +2125,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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2155,15 +2140,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:30 GMT + - Wed, 20 May 2026 09:07:04 GMT Pragma: - no-cache RequestId: - - 35c14a14-5161-4c93-872e-558b86826faf + - e3723b28-5b05-4d04-8d3b-4f762e8fcb3e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2189,13 +2174,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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2204,15 +2189,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:30 GMT + - Wed, 20 May 2026 09:07:04 GMT Pragma: - no-cache RequestId: - - 19ada750-0564-4e5c-9eb0-124e6b94b718 + - 77adda55-6fe6-43ee-bb83-669106372a08 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2238,13 +2223,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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2253,15 +2238,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:32 GMT + - Wed, 20 May 2026 09:07:05 GMT Pragma: - no-cache RequestId: - - 0d9a7f5f-f123-473f-9ef5-2c3622056175 + - 4761d0ae-e173-4792-bbec-ac11775170a8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2276,8 +2261,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6"}' + body: '{"displayName": "fabcli000003", "parentFolderId": "2a976532-472f-4773-bd29-35c87ea62cdf"}' headers: Accept: - '*/*' @@ -2287,17 +2271,16 @@ interactions: - keep-alive Content-Length: - '93' - 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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders response: body: - string: '{"id": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", - "parentFolderId": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}' + string: '{"id": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", + "parentFolderId": "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -2306,17 +2289,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '169' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:32 GMT + - Wed, 20 May 2026 09:07:06 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders/397c7786-3d84-460c-9dc4-8d54c1eb9f1b + - https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders/2e9d6478-8558-4fd6-a800-0a991a8318d7 Pragma: - no-cache RequestId: - - 95598d84-ac8b-41ab-a443-9a997e197067 + - 8468f312-bb52-483e-a38a-ec5fc579dce9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2342,17 +2325,16 @@ 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/39a1a111-e03b-4684-841a-e0a5e631000e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items response: body: - string: '{"value": [{"id": "92270156-79b2-409b-bd1a-bad40cff71fe", "type": "Notebook", - "displayName": "fabcli000006", "workspaceId": - "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe"}, - {"id": "a4517be4-4347-4fc9-9a6a-2dea722c8909", "type": "SparkJobDefinition", - "displayName": "fabcli000007", "workspaceId": - "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "b6217fa4-8911-4c8b-98c4-2507fb6fb87c"}]}' + string: '{"value": [{"id": "0485d3f6-d4ac-42e9-89da-b1411eb85bf0", "type": "Notebook", + "displayName": "fabcli000006", "description": "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", + "folderId": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb"}, {"id": "e0829343-6e57-4aa6-b665-6913f1c56998", + "type": "SparkJobDefinition", "displayName": "fabcli000007", "description": + "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "folderId": "170128a0-234a-431b-b133-4fc0dc6c2258"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2361,15 +2343,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '289' + - '277' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:33 GMT + - Wed, 20 May 2026 09:07:07 GMT Pragma: - no-cache RequestId: - - e7e8ab47-c9b7-4e17-9940-87c4b04e1da6 + - ab23ddd8-481d-4b65-8b36-b3d7781d0799 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2395,55 +2377,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"requestId": "c5370741-7797-43ad-89e5-608687842dcf", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 7:52:51 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:52:34 GMT - RequestId: - - c5370741-7797-43ad-89e5-608687842dcf - Retry-After: - - '17' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True - response: - body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2456,11 +2398,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:52 GMT + - Wed, 20 May 2026 09:07:08 GMT Pragma: - no-cache RequestId: - - 49cf4b0d-f4da-4ce4-ab39-c1bf13317590 + - 024697e6-cc3a-403e-bf5b-3550aef187ad Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2486,15 +2428,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2507,11 +2449,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:53 GMT + - Wed, 20 May 2026 09:07:09 GMT Pragma: - no-cache RequestId: - - 33f15325-2d98-442e-9819-d40e9286cb97 + - c6915c69-2f17-4f04-bc2f-5cc274e444d8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2537,15 +2479,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2558,11 +2500,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:54 GMT + - Wed, 20 May 2026 09:07:09 GMT Pragma: - no-cache RequestId: - - 3cdc80fa-1417-4e49-b0f2-81eda1cc77c9 + - c9b51f93-f391-49f5-a5ff-eb337f7d6815 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2588,17 +2530,16 @@ 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/39a1a111-e03b-4684-841a-e0a5e631000e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items response: body: - string: '{"value": [{"id": "92270156-79b2-409b-bd1a-bad40cff71fe", "type": "Notebook", - "displayName": "fabcli000006", "workspaceId": - "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe"}, - {"id": "a4517be4-4347-4fc9-9a6a-2dea722c8909", "type": "SparkJobDefinition", - "displayName": "fabcli000007", "workspaceId": - "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "b6217fa4-8911-4c8b-98c4-2507fb6fb87c"}]}' + string: '{"value": [{"id": "0485d3f6-d4ac-42e9-89da-b1411eb85bf0", "type": "Notebook", + "displayName": "fabcli000006", "description": "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", + "folderId": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb"}, {"id": "e0829343-6e57-4aa6-b665-6913f1c56998", + "type": "SparkJobDefinition", "displayName": "fabcli000007", "description": + "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "folderId": "170128a0-234a-431b-b133-4fc0dc6c2258"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2607,15 +2548,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '289' + - '277' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:54 GMT + - Wed, 20 May 2026 09:07:11 GMT Pragma: - no-cache RequestId: - - 554dae55-55f9-4312-bd46-cf0445514621 + - 289813d5-e698-4574-9710-420a3ccdddd9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2641,15 +2582,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2662,11 +2603,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:55 GMT + - Wed, 20 May 2026 09:07:12 GMT Pragma: - no-cache RequestId: - - fccd6125-4315-4927-8f00-3d6c19913852 + - dec3bcb4-5052-4d5e-a0e3-982a8332a04c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2692,15 +2633,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2713,11 +2654,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:55 GMT + - Wed, 20 May 2026 09:07:12 GMT Pragma: - no-cache RequestId: - - 29d82aa8-53ce-4ba1-becd-9b83551e3630 + - 8f3173ef-95a8-4df7-8dce-3568f60de181 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2743,15 +2684,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2764,11 +2705,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:56 GMT + - Wed, 20 May 2026 09:07:13 GMT Pragma: - no-cache RequestId: - - 2af68861-0be2-4ca8-b03c-072e40d8d769 + - ac915579-0a8d-4224-9cc1-6e420a227d0e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2794,17 +2735,16 @@ 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/39a1a111-e03b-4684-841a-e0a5e631000e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items response: body: - string: '{"value": [{"id": "92270156-79b2-409b-bd1a-bad40cff71fe", "type": "Notebook", - "displayName": "fabcli000006", "workspaceId": - "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe"}, - {"id": "a4517be4-4347-4fc9-9a6a-2dea722c8909", "type": "SparkJobDefinition", - "displayName": "fabcli000007", "workspaceId": - "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "b6217fa4-8911-4c8b-98c4-2507fb6fb87c"}]}' + string: '{"value": [{"id": "0485d3f6-d4ac-42e9-89da-b1411eb85bf0", "type": "Notebook", + "displayName": "fabcli000006", "description": "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", + "folderId": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb"}, {"id": "e0829343-6e57-4aa6-b665-6913f1c56998", + "type": "SparkJobDefinition", "displayName": "fabcli000007", "description": + "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "folderId": "170128a0-234a-431b-b133-4fc0dc6c2258"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2813,15 +2753,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '289' + - '277' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:56 GMT + - Wed, 20 May 2026 09:07:14 GMT Pragma: - no-cache RequestId: - - a94701f6-9081-4bc9-abeb-2f40e1a1c72d + - c7ed78ac-b772-4323-b046-8dceb627556b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2847,15 +2787,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2868,11 +2808,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:58 GMT + - Wed, 20 May 2026 09:07:15 GMT Pragma: - no-cache RequestId: - - 22fb6715-8eb5-4b69-badd-982ccca6dd2e + - 39ee4f54-8e46-4f7d-af8e-615eecbff85b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2898,15 +2838,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2919,11 +2859,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:57 GMT + - Wed, 20 May 2026 09:07:16 GMT Pragma: - no-cache RequestId: - - 6c09a708-7f3b-49c1-89e4-04d7f0a537a8 + - 4438bef8-c118-4743-9e89-254de5bee45f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2949,15 +2889,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2970,11 +2910,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:58 GMT + - Wed, 20 May 2026 09:07:18 GMT Pragma: - no-cache RequestId: - - abc7787d-c997-49bc-a0d5-c12399d5ed05 + - e34376cd-a7e5-40d3-bf8c-2598830c518c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3000,16 +2940,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3018,15 +2961,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:59 GMT + - Wed, 20 May 2026 09:07:18 GMT Pragma: - no-cache RequestId: - - bcdf8169-c8cc-43fc-97bf-9306bf47ee1a + - 0717c022-f29c-4090-aff9-9ddeab0c534e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3052,15 +2995,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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3069,15 +3012,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '203' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:52:59 GMT + - Wed, 20 May 2026 09:07:19 GMT Pragma: - no-cache RequestId: - - bce89db5-5e34-4786-8335-f7e1682f58c0 + - 95fbd6e7-281f-42ae-aa4c-30f8fcaf829d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3103,55 +3046,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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"requestId": "4f4db9ab-1262-4b50-9663-7c0bc2d6e086", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 7:53:54 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:53:00 GMT - RequestId: - - 4f4db9ab-1262-4b50-9663-7c0bc2d6e086 - Retry-After: - - '53' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True - response: - body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3160,15 +3063,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '203' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:53:57 GMT + - Wed, 20 May 2026 09:07:19 GMT Pragma: - no-cache RequestId: - - 257fdd68-6ad3-49b0-a23f-9de523d7d1d2 + - d16a8976-1d08-434f-b6e7-40e181d6aa41 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3194,9 +3097,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/f80ed229-5a94-47c4-b945-151d5c4e1734/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/items response: body: string: '{"value": []}' @@ -3212,11 +3115,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:53:58 GMT + - Wed, 20 May 2026 09:07:21 GMT Pragma: - no-cache RequestId: - - 71fb9bfd-2809-4b01-8a7f-14931669eafc + - 184ce529-eb97-471d-ad6f-09a39a4489a4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3242,9 +3145,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/f80ed229-5a94-47c4-b945-151d5c4e1734/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/items response: body: string: '{"value": []}' @@ -3260,11 +3163,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:53:58 GMT + - Wed, 20 May 2026 09:07:21 GMT Pragma: - no-cache RequestId: - - 42a0f9af-cbd5-4a23-8af7-1f24fba6a9c6 + - d2acca42-abdb-41f5-9450-79df47424614 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3290,9 +3193,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/f80ed229-5a94-47c4-b945-151d5c4e1734/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/items response: body: string: '{"value": []}' @@ -3308,11 +3211,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:53:59 GMT + - Wed, 20 May 2026 09:07:22 GMT Pragma: - no-cache RequestId: - - b1ed761b-b605-4880-8684-f6c3e6e04df6 + - a181afea-5832-486c-b8ce-a945995b1540 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3338,14 +3241,14 @@ 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/39a1a111-e03b-4684-841a-e0a5e631000e/items/92270156-79b2-409b-bd1a-bad40cff71fe + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items/0485d3f6-d4ac-42e9-89da-b1411eb85bf0 response: body: - string: '{"id": "92270156-79b2-409b-bd1a-bad40cff71fe", "type": "Notebook", - "displayName": "fabcli000006", "workspaceId": - "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe"}' + string: '{"id": "0485d3f6-d4ac-42e9-89da-b1411eb85bf0", "type": "Notebook", + "displayName": "fabcli000006", "description": "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", + "folderId": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -3354,17 +3257,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '197' + - '181' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:54:00 GMT + - Wed, 20 May 2026 09:07:23 GMT ETag: - '""' Pragma: - no-cache RequestId: - - ec539ae7-0808-4c8a-bf8b-4da9ff6139f4 + - 9ae2d317-e973-4977-9f95-e5434912c8d2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3392,9 +3295,9 @@ interactions: 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/39a1a111-e03b-4684-841a-e0a5e631000e/items/92270156-79b2-409b-bd1a-bad40cff71fe/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items/0485d3f6-d4ac-42e9-89da-b1411eb85bf0/getDefinition response: body: string: 'null' @@ -3410,13 +3313,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:54:01 GMT + - Wed, 20 May 2026 09:07:24 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bba931ed-1a6a-4d67-9a07-753935196cc6 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fcb599cc-c191-4ed5-9c5b-a5ee05efb983 Pragma: - no-cache RequestId: - - b135c583-d6bf-43e9-902b-ba8008b8f967 + - 47b36c25-e86c-4c33-a365-7ba1372d8fc3 Retry-After: - '20' Strict-Transport-Security: @@ -3430,7 +3333,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - bba931ed-1a6a-4d67-9a07-753935196cc6 + - fcb599cc-c191-4ed5-9c5b-a5ee05efb983 status: code: 202 message: Accepted @@ -3446,13 +3349,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bba931ed-1a6a-4d67-9a07-753935196cc6 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fcb599cc-c191-4ed5-9c5b-a5ee05efb983 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:54:02.2932203", - "lastUpdatedTimeUtc": "2026-02-06T07:54:02.6213465", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:07:24.8910454", + "lastUpdatedTimeUtc": "2026-05-20T09:07:25.6177985", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -3462,17 +3365,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '129' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:54:24 GMT + - Wed, 20 May 2026 09:07:45 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bba931ed-1a6a-4d67-9a07-753935196cc6/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fcb599cc-c191-4ed5-9c5b-a5ee05efb983/result Pragma: - no-cache RequestId: - - 90ca05bc-244a-4a63-ad2c-3babc67a3eb2 + - cbb1a27d-4bf4-4539-8673-3079ad832414 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3480,7 +3383,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - bba931ed-1a6a-4d67-9a07-753935196cc6 + - fcb599cc-c191-4ed5-9c5b-a5ee05efb983 status: code: 200 message: OK @@ -3496,14 +3399,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bba931ed-1a6a-4d67-9a07-753935196cc6/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fcb599cc-c191-4ed5-9c5b-a5ee05efb983/result response: body: string: '{"definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDYiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDYiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -3515,11 +3418,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 07:54:24 GMT + - Wed, 20 May 2026 09:07:46 GMT Pragma: - no-cache RequestId: - - 77df1f8a-c4cf-4d33-8db8-a2cb210e9896 + - 0a406637-c67f-4309-a806-16c4049b4a75 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -3532,10 +3435,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "Notebook", "displayName": "fabcli000006", - "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDYiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", - "payloadType": "InlineBase64"}]}, "folderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b"}' + body: '{"type": "Notebook", "displayName": "fabcli000006", "definition": {"parts": + [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDYiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}]}, "folderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7"}' headers: Accept: - '*/*' @@ -3544,14 +3447,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1286' - + - '1238' 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/f80ed229-5a94-47c4-b945-151d5c4e1734/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/items response: body: string: 'null' @@ -3567,15 +3469,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:54:26 GMT + - Wed, 20 May 2026 09:07:49 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e636a0da-2bbf-4acf-af6e-4b0472619b91 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/acf6a36b-f837-4667-adf0-e2802f681365 Pragma: - no-cache RequestId: - - 888efacc-8a18-4f85-8f31-2b77cd569830 + - 17082bb2-69d1-41f4-bd0d-60128f4e8187 Retry-After: - '20' Strict-Transport-Security: @@ -3589,7 +3491,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - e636a0da-2bbf-4acf-af6e-4b0472619b91 + - acf6a36b-f837-4667-adf0-e2802f681365 status: code: 202 message: Accepted @@ -3605,13 +3507,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e636a0da-2bbf-4acf-af6e-4b0472619b91 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/acf6a36b-f837-4667-adf0-e2802f681365 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:54:26.1879511", - "lastUpdatedTimeUtc": "2026-02-06T07:54:27.703555", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:07:47.8357454", + "lastUpdatedTimeUtc": "2026-05-20T09:07:52.5001982", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -3621,17 +3523,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '130' + - '132' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:54:47 GMT + - Wed, 20 May 2026 09:08:10 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e636a0da-2bbf-4acf-af6e-4b0472619b91/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/acf6a36b-f837-4667-adf0-e2802f681365/result Pragma: - no-cache RequestId: - - eef096e0-eadf-4e1a-9afb-9c46b5a88775 + - c453d201-3fc9-478b-9f5c-e5a2b3d0d650 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3639,7 +3541,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - e636a0da-2bbf-4acf-af6e-4b0472619b91 + - acf6a36b-f837-4667-adf0-e2802f681365 status: code: 200 message: OK @@ -3655,14 +3557,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e636a0da-2bbf-4acf-af6e-4b0472619b91/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/acf6a36b-f837-4667-adf0-e2802f681365/result response: body: - string: '{"id": "929f0151-40f6-4974-a346-61295f187e4e", "type": "Notebook", - "displayName": "fabcli000006", "workspaceId": - "f80ed229-5a94-47c4-b945-151d5c4e1734", "folderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b"}' + string: '{"id": "b9b11c90-13eb-48b2-ae6a-944ce04aa42f", "type": "Notebook", + "displayName": "fabcli000006", "description": "", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf", + "folderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7"}' headers: Access-Control-Expose-Headers: - RequestId @@ -3673,11 +3575,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 07:54:49 GMT + - Wed, 20 May 2026 09:08:10 GMT Pragma: - no-cache RequestId: - - da1fcf3f-044c-4194-bcff-36520af36204 + - 5dfeefd6-95dc-4428-b7e1-668ce6694a4e Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -3701,17 +3603,16 @@ 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/39a1a111-e03b-4684-841a-e0a5e631000e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items response: body: - string: '{"value": [{"id": "92270156-79b2-409b-bd1a-bad40cff71fe", "type": "Notebook", - "displayName": "fabcli000006", "workspaceId": - "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe"}, - {"id": "a4517be4-4347-4fc9-9a6a-2dea722c8909", "type": "SparkJobDefinition", - "displayName": "fabcli000007", "workspaceId": - "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "b6217fa4-8911-4c8b-98c4-2507fb6fb87c"}]}' + string: '{"value": [{"id": "0485d3f6-d4ac-42e9-89da-b1411eb85bf0", "type": "Notebook", + "displayName": "fabcli000006", "description": "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", + "folderId": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb"}, {"id": "e0829343-6e57-4aa6-b665-6913f1c56998", + "type": "SparkJobDefinition", "displayName": "fabcli000007", "description": + "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "folderId": "170128a0-234a-431b-b133-4fc0dc6c2258"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3720,15 +3621,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '289' + - '277' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:54:50 GMT + - Wed, 20 May 2026 09:08:12 GMT Pragma: - no-cache RequestId: - - 84eb8898-1631-47d9-9a7d-33753efeab2c + - bdca479d-d1f1-4dc4-881a-ce6e31bedf86 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3754,15 +3655,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3775,11 +3676,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:54:51 GMT + - Wed, 20 May 2026 09:08:12 GMT Pragma: - no-cache RequestId: - - a3a5e865-335b-49b4-8a0e-a9b62e0cb1ab + - bd7fe385-80a8-4f91-b144-b828e8fd57fd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3805,15 +3706,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3826,11 +3727,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:54:52 GMT + - Wed, 20 May 2026 09:08:14 GMT Pragma: - no-cache RequestId: - - 2a651df8-5fd5-42fa-a431-a926af01ffe7 + - 85267ca7-114b-4127-9f2e-a5fed9dfdaa4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3856,15 +3757,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3877,11 +3778,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:54:53 GMT + - Wed, 20 May 2026 09:08:15 GMT Pragma: - no-cache RequestId: - - f8d9b280-8018-47fb-adfc-ee84984ae3be + - cd30f17e-36d7-4bac-a2e0-91101fc125cb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3907,17 +3808,16 @@ 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/39a1a111-e03b-4684-841a-e0a5e631000e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items response: body: - string: '{"value": [{"id": "92270156-79b2-409b-bd1a-bad40cff71fe", "type": "Notebook", - "displayName": "fabcli000006", "workspaceId": - "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe"}, - {"id": "a4517be4-4347-4fc9-9a6a-2dea722c8909", "type": "SparkJobDefinition", - "displayName": "fabcli000007", "workspaceId": - "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "b6217fa4-8911-4c8b-98c4-2507fb6fb87c"}]}' + string: '{"value": [{"id": "0485d3f6-d4ac-42e9-89da-b1411eb85bf0", "type": "Notebook", + "displayName": "fabcli000006", "description": "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", + "folderId": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb"}, {"id": "e0829343-6e57-4aa6-b665-6913f1c56998", + "type": "SparkJobDefinition", "displayName": "fabcli000007", "description": + "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "folderId": "170128a0-234a-431b-b133-4fc0dc6c2258"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3926,15 +3826,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '289' + - '277' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:54:54 GMT + - Wed, 20 May 2026 09:08:15 GMT Pragma: - no-cache RequestId: - - 1d924fa2-2079-4c32-82c4-27c9d0fc3fac + - cdcc1a17-4dfc-4146-b9d9-6edb6e625723 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3960,15 +3860,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3981,11 +3881,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:54:54 GMT + - Wed, 20 May 2026 09:08:17 GMT Pragma: - no-cache RequestId: - - cc5e24ae-7a38-4661-8e8e-4e635e6d4cbb + - d25ac51b-d9bb-42d7-a692-80eeb3c12cff Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4011,15 +3911,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4032,11 +3932,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:54:55 GMT + - Wed, 20 May 2026 09:08:17 GMT Pragma: - no-cache RequestId: - - a3bff7c2-c859-44cf-9ab8-812e415996ef + - cf46ec53-8a6d-4073-90ad-696ea5d93753 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4062,15 +3962,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4083,11 +3983,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:54:56 GMT + - Wed, 20 May 2026 09:08:18 GMT Pragma: - no-cache RequestId: - - ca360e72-056d-4bf9-a4aa-05abca8926ab + - 888c3e49-2637-488e-8158-b33589ff4a8a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4113,16 +4013,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4131,15 +4034,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:54:57 GMT + - Wed, 20 May 2026 09:08:19 GMT Pragma: - no-cache RequestId: - - d33b9746-03d2-4052-948b-54604fcd0da5 + - f81ce0d0-cee3-418b-b1fc-42a739bdcf26 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4165,15 +4068,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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4182,15 +4085,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '203' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:54:58 GMT + - Wed, 20 May 2026 09:08:20 GMT Pragma: - no-cache RequestId: - - d7a19d95-385a-4477-9795-7a4503147ecb + - df71b3b0-b900-4c70-bf04-e37b8b106d38 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4216,15 +4119,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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4233,15 +4136,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '203' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:54:58 GMT + - Wed, 20 May 2026 09:08:21 GMT Pragma: - no-cache RequestId: - - 0ff48f38-30af-47be-829f-85024aeaddd7 + - 03fdae0d-94aa-4cdf-894f-18b30b4a3948 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4267,15 +4170,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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4284,15 +4187,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '203' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:55:00 GMT + - Wed, 20 May 2026 09:08:22 GMT Pragma: - no-cache RequestId: - - 77286d0e-84e4-4882-88c9-dfe72943fc0c + - 28a9dcf1-d391-4605-8bc6-d14107864e20 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4318,15 +4221,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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4335,15 +4238,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '203' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:55:01 GMT + - Wed, 20 May 2026 09:08:23 GMT Pragma: - no-cache RequestId: - - 114ceb91-dcc3-47c9-b0c6-bcf3fce4becb + - c03093f1-27e5-4abd-a561-56c3f47dde51 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4358,8 +4261,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000004", "parentFolderId": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b"}' + body: '{"displayName": "fabcli000004", "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7"}' headers: Accept: - '*/*' @@ -4369,17 +4271,16 @@ interactions: - keep-alive Content-Length: - '93' - 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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders response: body: - string: '{"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004", - "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}' + string: '{"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004", + "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -4388,17 +4289,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '165' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:55:02 GMT + - Wed, 20 May 2026 09:08:24 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders/106edf30-9814-456c-a065-61d2ba9ffe11 + - https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders/931f8db2-d93d-49af-b62a-3141c57e2bf4 Pragma: - no-cache RequestId: - - 9cd2f14a-dc14-4ebd-bc6e-c5b998d68575 + - f2a9026a-8b62-4dd4-982f-c717d9330f76 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4424,17 +4325,16 @@ 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/39a1a111-e03b-4684-841a-e0a5e631000e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items response: body: - string: '{"value": [{"id": "92270156-79b2-409b-bd1a-bad40cff71fe", "type": "Notebook", - "displayName": "fabcli000006", "workspaceId": - "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe"}, - {"id": "a4517be4-4347-4fc9-9a6a-2dea722c8909", "type": "SparkJobDefinition", - "displayName": "fabcli000007", "workspaceId": - "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "b6217fa4-8911-4c8b-98c4-2507fb6fb87c"}]}' + string: '{"value": [{"id": "0485d3f6-d4ac-42e9-89da-b1411eb85bf0", "type": "Notebook", + "displayName": "fabcli000006", "description": "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", + "folderId": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb"}, {"id": "e0829343-6e57-4aa6-b665-6913f1c56998", + "type": "SparkJobDefinition", "displayName": "fabcli000007", "description": + "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "folderId": "170128a0-234a-431b-b133-4fc0dc6c2258"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4443,15 +4343,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '289' + - '277' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:55:03 GMT + - Wed, 20 May 2026 09:08:25 GMT Pragma: - no-cache RequestId: - - e61b5441-3b1f-4533-8cbb-cdfc3dc9e9e6 + - 5eff2b13-dc0a-4b30-b271-e97d22edf108 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4477,15 +4377,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4498,11 +4398,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:55:03 GMT + - Wed, 20 May 2026 09:08:26 GMT Pragma: - no-cache RequestId: - - 36d44062-9eb9-4289-990e-d40bf4ffaa44 + - 3c0205c1-bc2d-440b-9fa6-53284859bcd1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4528,15 +4428,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4549,11 +4449,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:55:04 GMT + - Wed, 20 May 2026 09:08:26 GMT Pragma: - no-cache RequestId: - - 0bbf4f98-9a7b-4459-bff9-44db62996a81 + - fec8557c-1661-47ca-b88d-4525f35decbe Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4579,15 +4479,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4600,11 +4500,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:55:04 GMT + - Wed, 20 May 2026 09:08:27 GMT Pragma: - no-cache RequestId: - - 3d594cc4-2894-40da-a162-bee4d0655fde + - dff7690f-390f-4304-b260-3234d83f30b6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4630,16 +4530,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4648,15 +4551,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:55:05 GMT + - Wed, 20 May 2026 09:08:28 GMT Pragma: - no-cache RequestId: - - 59dd6427-0418-4a09-9ed0-7e1375360d7e + - ae378b6d-f5b5-4003-bfdf-1300b9fbb009 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4682,17 +4585,17 @@ 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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, - {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004", - "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, + {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004", + "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4705,11 +4608,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:55:05 GMT + - Wed, 20 May 2026 09:08:29 GMT Pragma: - no-cache RequestId: - - 882a4852-2334-47ac-96dd-1759f9fddbb6 + - d9f2e62c-d3d8-4fd2-a54e-af925aa5e1e0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4735,17 +4638,17 @@ 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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, - {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004", - "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, + {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004", + "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4758,11 +4661,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:55:06 GMT + - Wed, 20 May 2026 09:08:30 GMT Pragma: - no-cache RequestId: - - 66c9f1fd-776b-4c15-8d6b-11e48d375867 + - a9657023-b73e-4adf-91e9-a897ab380262 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4788,17 +4691,17 @@ 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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, - {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004", - "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, + {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004", + "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4811,11 +4714,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:55:07 GMT + - Wed, 20 May 2026 09:08:31 GMT Pragma: - no-cache RequestId: - - 0c82119f-bcfc-46f5-9dbd-762f85b02f1f + - 8e6c8c35-d628-43d6-a60b-7df773a9c60e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4841,14 +4744,14 @@ 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/f80ed229-5a94-47c4-b945-151d5c4e1734/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/items response: body: - string: '{"value": [{"id": "929f0151-40f6-4974-a346-61295f187e4e", "type": "Notebook", - "displayName": "fabcli000006", "workspaceId": - "f80ed229-5a94-47c4-b945-151d5c4e1734", "folderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b"}]}' + string: '{"value": [{"id": "b9b11c90-13eb-48b2-ae6a-944ce04aa42f", "type": "Notebook", + "displayName": "fabcli000006", "description": "", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf", + "folderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4857,15 +4760,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '210' + - '195' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:55:08 GMT + - Wed, 20 May 2026 09:08:31 GMT Pragma: - no-cache RequestId: - - f6394a26-c3a4-4cdc-bb7d-356224a4fbc5 + - 97c7bb5d-8a0f-444b-a36d-092cff94ded6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4891,57 +4794,17 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True - response: - body: - string: '{"requestId": "def6c854-7488-40c6-9242-3777c80cf9ff", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 7:55:59 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:55:09 GMT - RequestId: - - def6c854-7488-40c6-9242-3777c80cf9ff - Retry-After: - - '50' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, - {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004", - "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, + {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004", + "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4954,11 +4817,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:56:02 GMT + - Wed, 20 May 2026 09:08:32 GMT Pragma: - no-cache RequestId: - - b55d2ad6-7b5e-46f6-8569-81247ee0283b + - c640e2ea-ee05-472e-8543-143cff395c7a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4984,14 +4847,14 @@ 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/f80ed229-5a94-47c4-b945-151d5c4e1734/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/items response: body: - string: '{"value": [{"id": "929f0151-40f6-4974-a346-61295f187e4e", "type": "Notebook", - "displayName": "fabcli000006", "workspaceId": - "f80ed229-5a94-47c4-b945-151d5c4e1734", "folderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b"}]}' + string: '{"value": [{"id": "b9b11c90-13eb-48b2-ae6a-944ce04aa42f", "type": "Notebook", + "displayName": "fabcli000006", "description": "", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf", + "folderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5000,15 +4863,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '210' + - '195' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:56:03 GMT + - Wed, 20 May 2026 09:08:33 GMT Pragma: - no-cache RequestId: - - 26e54010-5abe-497b-b570-29c0c6a4c332 + - 6bf5ba3b-779b-45b7-81c9-c3676685c48d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5034,17 +4897,17 @@ 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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, - {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004", - "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, + {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004", + "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5057,11 +4920,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:56:03 GMT + - Wed, 20 May 2026 09:08:34 GMT Pragma: - no-cache RequestId: - - 48e3dbf9-784d-4f03-a9bb-44c9569fb83e + - 5423374c-ceb6-4978-9368-b89836b7d623 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5087,14 +4950,14 @@ 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/f80ed229-5a94-47c4-b945-151d5c4e1734/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/items response: body: - string: '{"value": [{"id": "929f0151-40f6-4974-a346-61295f187e4e", "type": "Notebook", - "displayName": "fabcli000006", "workspaceId": - "f80ed229-5a94-47c4-b945-151d5c4e1734", "folderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b"}]}' + string: '{"value": [{"id": "b9b11c90-13eb-48b2-ae6a-944ce04aa42f", "type": "Notebook", + "displayName": "fabcli000006", "description": "", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf", + "folderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5103,15 +4966,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '210' + - '195' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:56:05 GMT + - Wed, 20 May 2026 09:08:35 GMT Pragma: - no-cache RequestId: - - e67b5961-b65e-482e-ae9e-172a1da39dc6 + - d2e170d8-c037-433f-92b4-14adad87fcfa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5137,17 +5000,17 @@ 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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, - {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004", - "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, + {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004", + "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5160,11 +5023,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:56:06 GMT + - Wed, 20 May 2026 09:08:36 GMT Pragma: - no-cache RequestId: - - 8e5688ab-225f-4b36-833c-06a823b7fea7 + - f9367196-3108-421f-b8a4-39d9f1efef8f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5190,14 +5053,14 @@ 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/39a1a111-e03b-4684-841a-e0a5e631000e/items/a4517be4-4347-4fc9-9a6a-2dea722c8909 + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items/e0829343-6e57-4aa6-b665-6913f1c56998 response: body: - string: '{"id": "a4517be4-4347-4fc9-9a6a-2dea722c8909", "type": "SparkJobDefinition", - "displayName": "fabcli000007", "workspaceId": - "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "b6217fa4-8911-4c8b-98c4-2507fb6fb87c"}' + string: '{"id": "e0829343-6e57-4aa6-b665-6913f1c56998", "type": "SparkJobDefinition", + "displayName": "fabcli000007", "description": "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", + "folderId": "170128a0-234a-431b-b133-4fc0dc6c2258"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -5206,17 +5069,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '204' + - '195' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:56:06 GMT + - Wed, 20 May 2026 09:08:36 GMT ETag: - '""' Pragma: - no-cache RequestId: - - db42a8f0-2a0e-40da-a7ad-8a6b8491f7bc + - 8093fd98-4e08-4455-ae4d-dae0a89c29ce Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5244,14 +5107,14 @@ interactions: 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/39a1a111-e03b-4684-841a-e0a5e631000e/items/a4517be4-4347-4fc9-9a6a-2dea722c8909/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items/e0829343-6e57-4aa6-b665-6913f1c56998/getDefinition response: body: string: '{"definition": {"parts": [{"path": "SparkJobDefinitionV1.json", "payload": "ew0KICAiZXhlY3V0YWJsZUZpbGUiOiBudWxsLA0KICAiZGVmYXVsdExha2Vob3VzZUFydGlmYWN0SWQiOiBudWxsLA0KICAibWFpbkNsYXNzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMYWtlaG91c2VJZHMiOiBbXSwNCiAgInJldHJ5UG9saWN5IjogbnVsbCwNCiAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMaWJyYXJ5VXJpcyI6IG51bGwsDQogICJsYW5ndWFnZSI6IG51bGwsDQogICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsDQp9", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA3IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA3IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -5261,15 +5124,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '617' + - '585' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:56:08 GMT + - Wed, 20 May 2026 09:08:39 GMT Pragma: - no-cache RequestId: - - d196506c-d134-44f9-aabf-1cbe8ad4a1e5 + - d23bee69-d2aa-4269-952e-9b47abded8e3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5284,11 +5147,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "SparkJobDefinition", "displayName": - "fabcli000007", "definition": {"parts": [{"path": "SparkJobDefinitionV1.json", - "payload": "ew0KICAiZXhlY3V0YWJsZUZpbGUiOiBudWxsLA0KICAiZGVmYXVsdExha2Vob3VzZUFydGlmYWN0SWQiOiBudWxsLA0KICAibWFpbkNsYXNzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMYWtlaG91c2VJZHMiOiBbXSwNCiAgInJldHJ5UG9saWN5IjogbnVsbCwNCiAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMaWJyYXJ5VXJpcyI6IG51bGwsDQogICJsYW5ndWFnZSI6IG51bGwsDQogICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsDQp9", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA3IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", - "payloadType": "InlineBase64"}]}, "folderId": "106edf30-9814-456c-a065-61d2ba9ffe11"}' + body: '{"type": "SparkJobDefinition", "displayName": "fabcli000007", "definition": + {"parts": [{"path": "SparkJobDefinitionV1.json", "payload": "ew0KICAiZXhlY3V0YWJsZUZpbGUiOiBudWxsLA0KICAiZGVmYXVsdExha2Vob3VzZUFydGlmYWN0SWQiOiBudWxsLA0KICAibWFpbkNsYXNzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMYWtlaG91c2VJZHMiOiBbXSwNCiAgInJldHJ5UG9saWN5IjogbnVsbCwNCiAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMaWJyYXJ5VXJpcyI6IG51bGwsDQogICJsYW5ndWFnZSI6IG51bGwsDQogICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsDQp9", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA3IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "payloadType": "InlineBase64"}]}, "folderId": "931f8db2-d93d-49af-b62a-3141c57e2bf4"}' headers: Accept: - '*/*' @@ -5297,19 +5159,18 @@ interactions: Connection: - keep-alive Content-Length: - - '1126' - + - '1074' 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/f80ed229-5a94-47c4-b945-151d5c4e1734/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/items response: body: - string: '{"id": "fb81e7f4-338b-4d77-ac4d-05fb43000131", "type": "SparkJobDefinition", - "displayName": "fabcli000007", "workspaceId": - "f80ed229-5a94-47c4-b945-151d5c4e1734", "folderId": "106edf30-9814-456c-a065-61d2ba9ffe11"}' + string: '{"id": "7faf7942-e738-47e7-88f4-3bdbd66dbb02", "type": "SparkJobDefinition", + "displayName": "fabcli000007", "description": "", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf", + "folderId": "931f8db2-d93d-49af-b62a-3141c57e2bf4"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -5318,17 +5179,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '203' + - '195' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:56:10 GMT + - Wed, 20 May 2026 09:08:42 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 09970700-37f1-46ed-b425-3b77f4134142 + - 34803a8b-a7d5-44af-8c44-f0a66b0008f1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5354,16 +5215,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5372,15 +5236,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:56:11 GMT + - Wed, 20 May 2026 09:08:43 GMT Pragma: - no-cache RequestId: - - 60539473-d781-4516-9a02-1e95868a7279 + - 4fdab48c-72f8-4169-8e38-50970213b064 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5406,17 +5270,16 @@ 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/f80ed229-5a94-47c4-b945-151d5c4e1734/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/items response: body: - string: '{"value": [{"id": "929f0151-40f6-4974-a346-61295f187e4e", "type": "Notebook", - "displayName": "fabcli000006", "workspaceId": - "f80ed229-5a94-47c4-b945-151d5c4e1734", "folderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b"}, - {"id": "fb81e7f4-338b-4d77-ac4d-05fb43000131", "type": "SparkJobDefinition", - "displayName": "fabcli000007", "workspaceId": - "f80ed229-5a94-47c4-b945-151d5c4e1734", "folderId": "106edf30-9814-456c-a065-61d2ba9ffe11"}]}' + string: '{"value": [{"id": "b9b11c90-13eb-48b2-ae6a-944ce04aa42f", "type": "Notebook", + "displayName": "fabcli000006", "description": "", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf", + "folderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7"}, {"id": "7faf7942-e738-47e7-88f4-3bdbd66dbb02", + "type": "SparkJobDefinition", "displayName": "fabcli000007", "description": + "", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "folderId": "931f8db2-d93d-49af-b62a-3141c57e2bf4"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5425,15 +5288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '291' + - '278' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:56:12 GMT + - Wed, 20 May 2026 09:08:43 GMT Pragma: - no-cache RequestId: - - 5ce80732-00bb-464e-a831-edb8a1781ca9 + - 6d3cbf8d-116e-48ee-bacc-6920fd67395d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5459,17 +5322,17 @@ 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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, - {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004", - "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, + {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004", + "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5482,11 +5345,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:56:12 GMT + - Wed, 20 May 2026 09:08:44 GMT Pragma: - no-cache RequestId: - - 13664f0b-a38a-454a-8b69-9f4b3d55e52e + - 1b21ee18-247b-4548-af2e-25c889da24c9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5512,17 +5375,17 @@ 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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, - {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004", - "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, + {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004", + "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5535,11 +5398,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:56:14 GMT + - Wed, 20 May 2026 09:08:45 GMT Pragma: - no-cache RequestId: - - 9bffda53-356d-4201-a448-5f13c4f15a24 + - ea039ffd-feff-4d2a-ab8d-6c59cef02f3f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5565,17 +5428,17 @@ 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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, - {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004", - "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, + {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004", + "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5588,11 +5451,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:56:15 GMT + - Wed, 20 May 2026 09:08:46 GMT Pragma: - no-cache RequestId: - - 47410b61-cd1e-4db9-8c21-6ecab2fb6f3d + - 1d91d8c7-d82d-45f1-9a50-10429c65b87f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5618,16 +5481,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5636,15 +5502,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:56:15 GMT + - Wed, 20 May 2026 09:08:46 GMT Pragma: - no-cache RequestId: - - e799a751-7182-447a-a3b2-b0201e3592fa + - 3de74c59-c7ac-4ec6-aaca-890edc9b49dc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5670,17 +5536,17 @@ 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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, - {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004", - "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, + {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004", + "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5693,11 +5559,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:56:16 GMT + - Wed, 20 May 2026 09:08:47 GMT Pragma: - no-cache RequestId: - - 9355e02c-fad5-4402-8508-6167dc26a305 + - cab41a3c-cd9a-4f14-bf78-3c5b9c5fc40b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5723,17 +5589,16 @@ 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/f80ed229-5a94-47c4-b945-151d5c4e1734/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/items response: body: - string: '{"value": [{"id": "929f0151-40f6-4974-a346-61295f187e4e", "type": "Notebook", - "displayName": "fabcli000006", "workspaceId": - "f80ed229-5a94-47c4-b945-151d5c4e1734", "folderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b"}, - {"id": "fb81e7f4-338b-4d77-ac4d-05fb43000131", "type": "SparkJobDefinition", - "displayName": "fabcli000007", "workspaceId": - "f80ed229-5a94-47c4-b945-151d5c4e1734", "folderId": "106edf30-9814-456c-a065-61d2ba9ffe11"}]}' + string: '{"value": [{"id": "b9b11c90-13eb-48b2-ae6a-944ce04aa42f", "type": "Notebook", + "displayName": "fabcli000006", "description": "", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf", + "folderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7"}, {"id": "7faf7942-e738-47e7-88f4-3bdbd66dbb02", + "type": "SparkJobDefinition", "displayName": "fabcli000007", "description": + "", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "folderId": "931f8db2-d93d-49af-b62a-3141c57e2bf4"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5742,15 +5607,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '291' + - '278' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:56:16 GMT + - Wed, 20 May 2026 09:08:48 GMT Pragma: - no-cache RequestId: - - 2f80249a-1f34-43e8-8536-c29e691315e1 + - 3e79c0c3-e43c-4878-91ec-0d1542527fd3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5776,17 +5641,17 @@ 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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, - {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004", - "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, + {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004", + "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5799,11 +5664,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:56:18 GMT + - Wed, 20 May 2026 09:08:49 GMT Pragma: - no-cache RequestId: - - b929b311-c592-40af-b4cc-5384a0f956bf + - 848d062d-682a-4576-a0fc-31b048d36290 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5829,17 +5694,17 @@ 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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, - {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004", - "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, + {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004", + "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5852,11 +5717,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:56:18 GMT + - Wed, 20 May 2026 09:08:50 GMT Pragma: - no-cache RequestId: - - b9248c63-8924-4e94-ae20-5f317e9f09c5 + - 53a8cf3c-4d40-4f91-a138-0e2eb8dd116d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5882,17 +5747,17 @@ 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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, - {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004", - "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, + {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004", + "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5905,11 +5770,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:56:19 GMT + - Wed, 20 May 2026 09:08:51 GMT Pragma: - no-cache RequestId: - - 314e384c-fc42-4fe9-915c-e83add2f5f67 + - b50e2f32-8061-42d8-bec5-d1383259eb3d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5935,16 +5800,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5953,15 +5821,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:56:19 GMT + - Wed, 20 May 2026 09:08:51 GMT Pragma: - no-cache RequestId: - - 2a5b444a-838a-430c-9479-c1fbdc6cd49c + - 4ac3cc3b-3816-4151-8c10-f20d56c5dc6c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5987,57 +5855,17 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True - response: - body: - string: '{"requestId": "04c7c7e0-5cf3-491c-bbca-254b823ed312", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 7:57:03 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:56:20 GMT - RequestId: - - 04c7c7e0-5cf3-491c-bbca-254b823ed312 - Retry-After: - - '42' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, - {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004", - "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, + {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004", + "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6050,11 +5878,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:57:05 GMT + - Wed, 20 May 2026 09:08:52 GMT Pragma: - no-cache RequestId: - - 4547bf1a-70d8-4a4d-88d8-6887b4eccfe5 + - 060c8467-df90-467b-99c8-db8671d960ab Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6080,17 +5908,17 @@ 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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, - {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004", - "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, + {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004", + "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6103,11 +5931,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:57:06 GMT + - Wed, 20 May 2026 09:08:53 GMT Pragma: - no-cache RequestId: - - 8da87230-2ab5-4aa0-bec0-af5dccaf273b + - f4d27792-3572-41ee-9eea-9e6df41ed0d3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6133,17 +5961,16 @@ 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/f80ed229-5a94-47c4-b945-151d5c4e1734/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/items response: body: - string: '{"value": [{"id": "929f0151-40f6-4974-a346-61295f187e4e", "type": "Notebook", - "displayName": "fabcli000006", "workspaceId": - "f80ed229-5a94-47c4-b945-151d5c4e1734", "folderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b"}, - {"id": "fb81e7f4-338b-4d77-ac4d-05fb43000131", "type": "SparkJobDefinition", - "displayName": "fabcli000007", "workspaceId": - "f80ed229-5a94-47c4-b945-151d5c4e1734", "folderId": "106edf30-9814-456c-a065-61d2ba9ffe11"}]}' + string: '{"value": [{"id": "b9b11c90-13eb-48b2-ae6a-944ce04aa42f", "type": "Notebook", + "displayName": "fabcli000006", "description": "", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf", + "folderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7"}, {"id": "7faf7942-e738-47e7-88f4-3bdbd66dbb02", + "type": "SparkJobDefinition", "displayName": "fabcli000007", "description": + "", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "folderId": "931f8db2-d93d-49af-b62a-3141c57e2bf4"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6152,15 +5979,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '291' + - '278' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:57:07 GMT + - Wed, 20 May 2026 09:08:54 GMT Pragma: - no-cache RequestId: - - 4638251f-a443-46a2-866a-c8e9de144ee8 + - c051197d-99ca-4fed-99a4-1c8212900d0c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6186,17 +6013,17 @@ 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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, - {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004", - "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, + {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004", + "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6209,11 +6036,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:57:08 GMT + - Wed, 20 May 2026 09:08:55 GMT Pragma: - no-cache RequestId: - - 4bc53337-2bc6-4494-8f64-fa2907bd5f8b + - 9cda14d0-b727-459e-8f26-97aa602534eb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6239,17 +6066,17 @@ 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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, - {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004", - "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, + {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004", + "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6262,11 +6089,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:57:09 GMT + - Wed, 20 May 2026 09:08:56 GMT Pragma: - no-cache RequestId: - - 9d5f5a3a-837c-4c50-9805-1b3f33c4ad44 + - 7e2c8381-6702-4de1-ab44-58ceb3433735 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6292,17 +6119,17 @@ 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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, - {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004", - "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, + {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004", + "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6315,11 +6142,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:57:10 GMT + - Wed, 20 May 2026 09:08:56 GMT Pragma: - no-cache RequestId: - - 8f859d29-7293-4ad7-aacb-21b2772f7c8e + - 5b5f54b1-005e-4e30-b737-57d0a395a1fc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6345,16 +6172,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6363,15 +6193,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:57:11 GMT + - Wed, 20 May 2026 09:08:57 GMT Pragma: - no-cache RequestId: - - 4e571a74-848b-4713-95ce-4dc9aa33b88e + - 77b79187-12ba-4df7-96c7-18cc800dc549 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6397,17 +6227,17 @@ 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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, - {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004", - "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, + {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004", + "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6420,11 +6250,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:57:11 GMT + - Wed, 20 May 2026 09:08:57 GMT Pragma: - no-cache RequestId: - - 81f6027e-8e6d-4289-a514-da3a6718773e + - 56700b71-8e86-4971-894c-0041698fcf91 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6450,17 +6280,17 @@ 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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, - {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004", - "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, + {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004", + "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6473,11 +6303,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:57:12 GMT + - Wed, 20 May 2026 09:08:57 GMT Pragma: - no-cache RequestId: - - 09d90219-5f66-4242-9609-9e444a4291d0 + - 5a6a2d24-9077-4620-9b43-06774d95cc61 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6503,17 +6333,17 @@ 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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, - {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004", - "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, + {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004", + "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6526,11 +6356,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:57:13 GMT + - Wed, 20 May 2026 09:08:58 GMT Pragma: - no-cache RequestId: - - 448f1c19-afd6-45ca-b65b-b17016d0d749 + - 0bda5330-9c50-4198-97ff-2390dc1cceae Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6556,17 +6386,16 @@ 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/f80ed229-5a94-47c4-b945-151d5c4e1734/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/items response: body: - string: '{"value": [{"id": "929f0151-40f6-4974-a346-61295f187e4e", "type": "Notebook", - "displayName": "fabcli000006", "workspaceId": - "f80ed229-5a94-47c4-b945-151d5c4e1734", "folderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b"}, - {"id": "fb81e7f4-338b-4d77-ac4d-05fb43000131", "type": "SparkJobDefinition", - "displayName": "fabcli000007", "workspaceId": - "f80ed229-5a94-47c4-b945-151d5c4e1734", "folderId": "106edf30-9814-456c-a065-61d2ba9ffe11"}]}' + string: '{"value": [{"id": "b9b11c90-13eb-48b2-ae6a-944ce04aa42f", "type": "Notebook", + "displayName": "fabcli000006", "description": "", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf", + "folderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7"}, {"id": "7faf7942-e738-47e7-88f4-3bdbd66dbb02", + "type": "SparkJobDefinition", "displayName": "fabcli000007", "description": + "", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "folderId": "931f8db2-d93d-49af-b62a-3141c57e2bf4"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6575,15 +6404,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '291' + - '278' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:57:13 GMT + - Wed, 20 May 2026 09:08:59 GMT Pragma: - no-cache RequestId: - - 19fce5fe-d570-46c0-a3d6-65498ad79307 + - 30b4ba0d-be1f-46d0-91ad-0c983bc5da7e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6609,17 +6438,17 @@ 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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, - {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004", - "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, + {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004", + "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6632,11 +6461,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:57:14 GMT + - Wed, 20 May 2026 09:09:00 GMT Pragma: - no-cache RequestId: - - a99ed911-a2d0-4231-b9d7-1f2c7e1d9f96 + - ba2a4153-bd68-4caf-8f16-2f7c73c8f69f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6662,17 +6491,17 @@ 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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, - {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004", - "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, + {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004", + "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6685,11 +6514,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:57:15 GMT + - Wed, 20 May 2026 09:09:00 GMT Pragma: - no-cache RequestId: - - 845f4aca-d219-4666-a5fc-ab532314da91 + - 4879c956-d3ec-4a0c-92d7-0142f3d414a0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6715,57 +6544,17 @@ 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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"requestId": "cbddaaa2-181f-49d0-b874-ee919b709588", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 7:58:07 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:57:17 GMT - RequestId: - - cbddaaa2-181f-49d0-b874-ee919b709588 - Retry-After: - - '50' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True - response: - body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, - {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004", - "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, + {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004", + "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6778,11 +6567,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:58:10 GMT + - Wed, 20 May 2026 09:09:02 GMT Pragma: - no-cache RequestId: - - 561fc628-81ac-4226-b2ca-9fea2f690c4c + - 31f18656-487e-4344-8108-6b670495e053 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6808,16 +6597,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6826,15 +6618,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:58:11 GMT + - Wed, 20 May 2026 09:09:03 GMT Pragma: - no-cache RequestId: - - 36faed39-269b-409b-8f99-57a1297800eb + - 409a0f4f-35af-41bf-b6b4-acc6930dbba7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6860,15 +6652,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6881,11 +6673,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:58:12 GMT + - Wed, 20 May 2026 09:09:03 GMT Pragma: - no-cache RequestId: - - c4e8c43c-8343-4a34-a3e0-bf03f1a9891e + - 300341f2-959f-4d0e-a83f-c7ac41079789 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6911,15 +6703,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6932,11 +6724,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:58:12 GMT + - Wed, 20 May 2026 09:09:04 GMT Pragma: - no-cache RequestId: - - b9cd1235-40ba-4480-9173-90107a10dacf + - c5d194f3-53ea-474c-b1b6-2e0f79cd5597 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6962,17 +6754,16 @@ 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/39a1a111-e03b-4684-841a-e0a5e631000e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items response: body: - string: '{"value": [{"id": "92270156-79b2-409b-bd1a-bad40cff71fe", "type": "Notebook", - "displayName": "fabcli000006", "workspaceId": - "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe"}, - {"id": "a4517be4-4347-4fc9-9a6a-2dea722c8909", "type": "SparkJobDefinition", - "displayName": "fabcli000007", "workspaceId": - "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "b6217fa4-8911-4c8b-98c4-2507fb6fb87c"}]}' + string: '{"value": [{"id": "0485d3f6-d4ac-42e9-89da-b1411eb85bf0", "type": "Notebook", + "displayName": "fabcli000006", "description": "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", + "folderId": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb"}, {"id": "e0829343-6e57-4aa6-b665-6913f1c56998", + "type": "SparkJobDefinition", "displayName": "fabcli000007", "description": + "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "folderId": "170128a0-234a-431b-b133-4fc0dc6c2258"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6981,15 +6772,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '289' + - '277' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:58:13 GMT + - Wed, 20 May 2026 09:09:05 GMT Pragma: - no-cache RequestId: - - b32f1e62-9dca-49fa-a962-fd9cb896fa1a + - ada78bef-471c-4a8f-b9ac-2a90d7b45d25 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7015,15 +6806,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7036,11 +6827,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:58:15 GMT + - Wed, 20 May 2026 09:09:06 GMT Pragma: - no-cache RequestId: - - aef7f152-0242-40c7-b995-06e0c6e020f5 + - 8e6b650e-2b3f-4e53-9425-38208bbf2c14 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7066,15 +6857,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7087,11 +6878,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:58:15 GMT + - Wed, 20 May 2026 09:09:07 GMT Pragma: - no-cache RequestId: - - ecc33e69-948d-4dd8-b9f2-903e71041105 + - fe96dfc8-f7d4-4d8d-83a4-ee6d27368149 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7119,9 +6910,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/39a1a111-e03b-4684-841a-e0a5e631000e/items/a4517be4-4347-4fc9-9a6a-2dea722c8909 + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items/e0829343-6e57-4aa6-b665-6913f1c56998 response: body: string: '' @@ -7137,11 +6928,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:58:15 GMT + - Wed, 20 May 2026 09:09:07 GMT Pragma: - no-cache RequestId: - - 48bd7b43-14ed-4b0d-9963-a966392e13ab + - 88f31d68-d50e-4d44-922e-5c6b396ab1eb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7167,16 +6958,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7185,15 +6979,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:58:17 GMT + - Wed, 20 May 2026 09:09:08 GMT Pragma: - no-cache RequestId: - - ebd0646b-8e75-4101-80e7-499e8db8571c + - aae0bb5b-c95b-4161-8e06-1c192c0706cc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7219,15 +7013,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7240,11 +7034,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:58:17 GMT + - Wed, 20 May 2026 09:09:09 GMT Pragma: - no-cache RequestId: - - 4032e33a-e9a9-4f65-829e-c3cdd6c67fc1 + - 4095079d-a281-449d-9413-d02e2a84dde3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7270,14 +7064,14 @@ 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/39a1a111-e03b-4684-841a-e0a5e631000e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items response: body: - string: '{"value": [{"id": "92270156-79b2-409b-bd1a-bad40cff71fe", "type": "Notebook", - "displayName": "fabcli000006", "workspaceId": - "39a1a111-e03b-4684-841a-e0a5e631000e", "folderId": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe"}]}' + string: '{"value": [{"id": "0485d3f6-d4ac-42e9-89da-b1411eb85bf0", "type": "Notebook", + "displayName": "fabcli000006", "description": "", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", + "folderId": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7286,15 +7080,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '209' + - '195' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:58:18 GMT + - Wed, 20 May 2026 09:09:10 GMT Pragma: - no-cache RequestId: - - c27d989b-eafc-4a7b-943e-6529735be928 + - cbdbe3af-b488-4d88-b9a2-b7b23b144f11 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7320,15 +7114,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7341,11 +7135,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:58:19 GMT + - Wed, 20 May 2026 09:09:11 GMT Pragma: - no-cache RequestId: - - 3cf2cf92-10db-4b8e-9053-08afce841e12 + - b9fdb057-543a-4896-8627-703c031c69d2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7373,9 +7167,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/39a1a111-e03b-4684-841a-e0a5e631000e/items/92270156-79b2-409b-bd1a-bad40cff71fe + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items/0485d3f6-d4ac-42e9-89da-b1411eb85bf0 response: body: string: '' @@ -7391,11 +7185,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:58:20 GMT + - Wed, 20 May 2026 09:09:12 GMT Pragma: - no-cache RequestId: - - 722f0be0-ce43-45d6-8aa2-c23004257bf2 + - 05d5ee70-77bb-4f78-9f89-f2eca44dd0ab Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7421,16 +7215,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7439,15 +7236,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:58:21 GMT + - Wed, 20 May 2026 09:09:12 GMT Pragma: - no-cache RequestId: - - ce774f3f-5d56-49a8-a6bc-95693f14e7a5 + - 8350f26c-89a2-43bc-bc44-6d242ee603a0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7473,15 +7270,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7494,11 +7291,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:58:22 GMT + - Wed, 20 May 2026 09:09:12 GMT Pragma: - no-cache RequestId: - - 15972ee7-a983-4c06-8b66-57dbdcee9bb3 + - d6b94d12-e834-4b33-b6be-e2d4ada4a3cc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7524,15 +7321,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}, {"id": - "b6217fa4-8911-4c8b-98c4-2507fb6fb87c", "displayName": "fabcli000004", "parentFolderId": - "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}, {"id": + "170128a0-234a-431b-b133-4fc0dc6c2258", "displayName": "fabcli000004", "parentFolderId": + "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7545,11 +7342,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:58:23 GMT + - Wed, 20 May 2026 09:09:14 GMT Pragma: - no-cache RequestId: - - 5b0fa4bd-b2df-439d-b3d6-a276fb958de2 + - d2efac6f-64f8-430b-ab3f-fc23dcac7d16 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7577,9 +7374,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders/b6217fa4-8911-4c8b-98c4-2507fb6fb87c + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders/170128a0-234a-431b-b133-4fc0dc6c2258 response: body: string: '' @@ -7595,11 +7392,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:58:24 GMT + - Wed, 20 May 2026 09:09:13 GMT Pragma: - no-cache RequestId: - - 3991d598-179e-420e-a7cc-df24131653b9 + - c559173c-94e5-4d72-ae97-eb1c8723e42e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7625,16 +7422,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7643,15 +7443,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:58:24 GMT + - Wed, 20 May 2026 09:09:14 GMT Pragma: - no-cache RequestId: - - d27590a4-c770-4380-82d2-53982e05ca2e + - d9ba8276-35c7-42e1-a37e-6a255f88594f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7677,13 +7477,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders?recursive=True response: body: - string: '{"value": [{"id": "286030e4-8cb5-4735-9b6c-bdda8b2f4dfe", "displayName": - "fabcli000003", "workspaceId": "39a1a111-e03b-4684-841a-e0a5e631000e"}]}' + string: '{"value": [{"id": "06ca94aa-2456-4ddf-a53e-f41bce88c0bb", "displayName": + "fabcli000003", "workspaceId": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7692,15 +7492,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:58:26 GMT + - Wed, 20 May 2026 09:09:16 GMT Pragma: - no-cache RequestId: - - 578c740b-43f9-44f1-92d7-6efce5e96533 + - e0d891e0-dfea-443a-b0f3-3c50091cee23 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7728,9 +7528,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/39a1a111-e03b-4684-841a-e0a5e631000e/folders/286030e4-8cb5-4735-9b6c-bdda8b2f4dfe + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/folders/06ca94aa-2456-4ddf-a53e-f41bce88c0bb response: body: string: '' @@ -7746,11 +7546,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:58:27 GMT + - Wed, 20 May 2026 09:09:16 GMT Pragma: - no-cache RequestId: - - 36cd3597-3751-46a7-99fd-ceb34692da1d + - e560f620-ed5a-449f-a001-258acae18155 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7776,16 +7576,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "39a1a111-e03b-4684-841a-e0a5e631000e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "c888bcdf-71fa-4ba5-bab9-3fbec377aa2a", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7794,15 +7597,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:58:27 GMT + - Wed, 20 May 2026 09:09:17 GMT Pragma: - no-cache RequestId: - - 368933cd-626d-4d20-82ed-19c3e76afdaf + - d5156e9b-88b7-4ec2-af84-5503c77c874a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7828,9 +7631,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/39a1a111-e03b-4684-841a-e0a5e631000e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a/items response: body: string: '{"value": []}' @@ -7846,11 +7649,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:58:28 GMT + - Wed, 20 May 2026 09:09:17 GMT Pragma: - no-cache RequestId: - - 333967c7-6653-42cc-966e-7eae8627c2fa + - c1cb3809-bd00-4bfc-9b9d-3c4020455776 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7878,9 +7681,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/39a1a111-e03b-4684-841a-e0a5e631000e + uri: https://api.fabric.microsoft.com/v1/workspaces/c888bcdf-71fa-4ba5-bab9-3fbec377aa2a response: body: string: '' @@ -7896,11 +7699,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:58:29 GMT + - Wed, 20 May 2026 09:09:18 GMT Pragma: - no-cache RequestId: - - def7c6a0-94e9-42eb-b3c8-317b8c0f54fe + - 51df5944-9f5c-4c24-9329-bce04d1e05d2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7926,15 +7729,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f80ed229-5a94-47c4-b945-151d5c4e1734", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7943,15 +7748,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2840' + - '2658' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:58:29 GMT + - Wed, 20 May 2026 09:09:19 GMT Pragma: - no-cache RequestId: - - 235d9069-d5e7-4869-bc67-0599468785d0 + - c9c2ef73-a5d7-4008-897b-4c9203274989 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7977,17 +7782,16 @@ 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/f80ed229-5a94-47c4-b945-151d5c4e1734/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/items response: body: - string: '{"value": [{"id": "929f0151-40f6-4974-a346-61295f187e4e", "type": "Notebook", - "displayName": "fabcli000006", "workspaceId": - "f80ed229-5a94-47c4-b945-151d5c4e1734", "folderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b"}, - {"id": "fb81e7f4-338b-4d77-ac4d-05fb43000131", "type": "SparkJobDefinition", - "displayName": "fabcli000007", "workspaceId": - "f80ed229-5a94-47c4-b945-151d5c4e1734", "folderId": "106edf30-9814-456c-a065-61d2ba9ffe11"}]}' + string: '{"value": [{"id": "b9b11c90-13eb-48b2-ae6a-944ce04aa42f", "type": "Notebook", + "displayName": "fabcli000006", "description": "", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf", + "folderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7"}, {"id": "7faf7942-e738-47e7-88f4-3bdbd66dbb02", + "type": "SparkJobDefinition", "displayName": "fabcli000007", "description": + "", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf", "folderId": "931f8db2-d93d-49af-b62a-3141c57e2bf4"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7996,15 +7800,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '291' + - '278' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:58:31 GMT + - Wed, 20 May 2026 09:09:19 GMT Pragma: - no-cache RequestId: - - e02c3c91-e7e0-43c6-8c2b-5485b15ec19c + - aa24be3d-ef69-4f20-9d07-a2244c8cc548 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -8030,57 +7834,17 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True - response: - body: - string: '{"requestId": "6d71e019-c049-4f98-8fa6-c24d2d532626", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 7:59:11 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:58:31 GMT - RequestId: - - 6d71e019-c049-4f98-8fa6-c24d2d532626 - Retry-After: - - '39' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, - {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004", - "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, + {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004", + "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -8093,11 +7857,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:59:14 GMT + - Wed, 20 May 2026 09:09:20 GMT Pragma: - no-cache RequestId: - - 82b5a2d5-bf1d-4e7c-ba9d-c2c00b83043a + - b7235179-409b-48e2-9256-3d3acb09e940 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -8123,17 +7887,17 @@ 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/f80ed229-5a94-47c4-b945-151d5c4e1734/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf/folders?recursive=True response: body: - string: '{"value": [{"id": "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "displayName": - "fabcli000005", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, {"id": - "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "displayName": "fabcli000003", "parentFolderId": - "197237c1-a9dd-44e4-81c8-15ae690cf0a6", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}, - {"id": "106edf30-9814-456c-a065-61d2ba9ffe11", "displayName": "fabcli000004", - "parentFolderId": "397c7786-3d84-460c-9dc4-8d54c1eb9f1b", "workspaceId": "f80ed229-5a94-47c4-b945-151d5c4e1734"}]}' + string: '{"value": [{"id": "2a976532-472f-4773-bd29-35c87ea62cdf", "displayName": + "fabcli000005", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, {"id": + "2e9d6478-8558-4fd6-a800-0a991a8318d7", "displayName": "fabcli000003", "parentFolderId": + "2a976532-472f-4773-bd29-35c87ea62cdf", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}, + {"id": "931f8db2-d93d-49af-b62a-3141c57e2bf4", "displayName": "fabcli000004", + "parentFolderId": "2e9d6478-8558-4fd6-a800-0a991a8318d7", "workspaceId": "9cd05d4b-a608-4a24-aa00-8723a03369bf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -8146,11 +7910,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:59:14 GMT + - Wed, 20 May 2026 09:09:21 GMT Pragma: - no-cache RequestId: - - 3ff43611-0635-4f45-a8cc-cf14314f0288 + - ee0c22d8-1b2c-4896-9dff-7a5fbb50e131 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -8178,9 +7942,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/f80ed229-5a94-47c4-b945-151d5c4e1734 + uri: https://api.fabric.microsoft.com/v1/workspaces/9cd05d4b-a608-4a24-aa00-8723a03369bf response: body: string: '' @@ -8196,11 +7960,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:59:16 GMT + - Wed, 20 May 2026 09:09:21 GMT Pragma: - no-cache RequestId: - - e5fef65a-1f9b-4eaf-90d4-1febefb33637 + - bfe40a2d-6378-4a9e-bd7e-5a4bcd1488b4 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_to_workspace_non_recursive_failure.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_workspace_non_recursive_failure.yaml index 43672b1d3..04cde7240 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_workspace_non_recursive_failure.yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_workspace_non_recursive_failure.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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:55 GMT + - Wed, 20 May 2026 09:02:27 GMT Pragma: - no-cache RequestId: - - f3135b1c-3aa0-4b62-a869-2be456d97816 + - b83b9458-755f-4025-aae2-2896d1c0856c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:55 GMT + - Wed, 20 May 2026 09:02:28 GMT Pragma: - no-cache RequestId: - - 52e9f3e4-833d-4cdf-9a7d-9ebbb2c6f7f8 + - 02a3e0f1-a2b2-4fe8-b636-a4fc8b1af991 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,7 +113,7 @@ 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/capacities response: @@ -127,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:47:01 GMT + - Wed, 20 May 2026 09:02:32 GMT Pragma: - no-cache RequestId: - - af147cc1-4795-4fb5-8794-9fe10a5c9237 + - 26f6904d-3d16-4614-bbb1-072e38c691ac Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -160,16 +162,16 @@ interactions: - keep-alive Content-Length: - '89' - 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 response: body: - string: '{"id": "880f932f-0f13-4ad8-8cdb-c678342510a4", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "5b30103a-86b5-4071-b8b6-f46de83fd528", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -178,17 +180,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:47:09 GMT + - Wed, 20 May 2026 09:02:40 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/880f932f-0f13-4ad8-8cdb-c678342510a4 + - https://api.fabric.microsoft.com/v1/workspaces/5b30103a-86b5-4071-b8b6-f46de83fd528 Pragma: - no-cache RequestId: - - aa60778d-2ba0-4e0c-9f66-9d6f611a64d4 + - 345864d6-12c0-483f-96c4-75b22fd13e02 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,15 +216,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "880f932f-0f13-4ad8-8cdb-c678342510a4", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "5b30103a-86b5-4071-b8b6-f46de83fd528", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -231,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2839' + - '2658' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:47:09 GMT + - Wed, 20 May 2026 09:02:42 GMT Pragma: - no-cache RequestId: - - 31ab0201-4848-414f-af3a-6c6487922ff1 + - 5f2b0a5a-ebe1-4271-8673-c3e8c67ab193 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,15 +269,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "880f932f-0f13-4ad8-8cdb-c678342510a4", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "5b30103a-86b5-4071-b8b6-f46de83fd528", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -282,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2839' + - '2658' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:47:10 GMT + - Wed, 20 May 2026 09:02:42 GMT Pragma: - no-cache RequestId: - - e0bdaea4-9326-4b72-9891-10f0f520b946 + - 1cba204b-4872-4203-a51f-cb8d3fefe3c9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,7 +322,7 @@ 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/capacities response: @@ -332,15 +338,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '425' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:47:16 GMT + - Wed, 20 May 2026 09:02:48 GMT Pragma: - no-cache RequestId: - - 01cd9f20-f548-42be-bc44-b3d63f041641 + - 4e9ea1fa-333d-4231-baa2-1add4a27bd95 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -365,16 +371,16 @@ interactions: - keep-alive Content-Length: - '89' - 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 response: body: - string: '{"id": "fed2fb31-d782-4c62-9aec-a03c5a9484d0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "4a2e78ed-085e-433c-9e07-bd4adfaf4186", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -383,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:47:24 GMT + - Wed, 20 May 2026 09:02:56 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/fed2fb31-d782-4c62-9aec-a03c5a9484d0 + - https://api.fabric.microsoft.com/v1/workspaces/4a2e78ed-085e-433c-9e07-bd4adfaf4186 Pragma: - no-cache RequestId: - - 6f5e1edc-c8c4-45ac-8a66-abc4617e9f2b + - e4708f76-1711-4c29-a95c-dfd6685b7be8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -419,16 +425,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "880f932f-0f13-4ad8-8cdb-c678342510a4", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "fed2fb31-d782-4c62-9aec-a03c5a9484d0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "5b30103a-86b5-4071-b8b6-f46de83fd528", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4a2e78ed-085e-433c-9e07-bd4adfaf4186", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -437,15 +446,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:47:25 GMT + - Wed, 20 May 2026 09:02:57 GMT Pragma: - no-cache RequestId: - - 3a3450b9-1810-4962-b06c-d0d967dd1e81 + - 0cb7d20e-ec67-4bea-8931-1dba67c3a296 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -471,9 +480,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/880f932f-0f13-4ad8-8cdb-c678342510a4/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/5b30103a-86b5-4071-b8b6-f46de83fd528/folders?recursive=True response: body: string: '{"value": []}' @@ -489,11 +498,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:47:25 GMT + - Wed, 20 May 2026 09:02:58 GMT Pragma: - no-cache RequestId: - - def0fe91-46af-493d-9603-d7130e9452c8 + - afcdff22-43db-47a6-a6df-51123477a409 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -519,9 +528,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/880f932f-0f13-4ad8-8cdb-c678342510a4/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/5b30103a-86b5-4071-b8b6-f46de83fd528/folders?recursive=True response: body: string: '{"value": []}' @@ -537,11 +546,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:47:26 GMT + - Wed, 20 May 2026 09:02:59 GMT Pragma: - no-cache RequestId: - - 9bddd753-3931-470d-9668-d715e37fb311 + - 38e739cf-1d74-45aa-b697-98d15d38a4e9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -565,17 +574,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/880f932f-0f13-4ad8-8cdb-c678342510a4/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/5b30103a-86b5-4071-b8b6-f46de83fd528/folders response: body: - string: '{"id": "75141f12-346e-47c5-a201-5c936938c46d", "displayName": "fabcli000003", - "workspaceId": "880f932f-0f13-4ad8-8cdb-c678342510a4"}' + string: '{"id": "7751fe4d-bb45-4b5e-b81b-5bf4e418de8a", "displayName": "fabcli000003", + "workspaceId": "5b30103a-86b5-4071-b8b6-f46de83fd528"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -584,17 +593,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '133' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:47:27 GMT + - Wed, 20 May 2026 09:03:00 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/880f932f-0f13-4ad8-8cdb-c678342510a4/folders/75141f12-346e-47c5-a201-5c936938c46d + - https://api.fabric.microsoft.com/v1/workspaces/5b30103a-86b5-4071-b8b6-f46de83fd528/folders/7751fe4d-bb45-4b5e-b81b-5bf4e418de8a Pragma: - no-cache RequestId: - - ab8f4576-35d1-4aaa-a10a-51cbad4a3af8 + - bdc8362a-ff08-497f-81f2-3daefb46eaf8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -620,16 +629,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "880f932f-0f13-4ad8-8cdb-c678342510a4", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "fed2fb31-d782-4c62-9aec-a03c5a9484d0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "5b30103a-86b5-4071-b8b6-f46de83fd528", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4a2e78ed-085e-433c-9e07-bd4adfaf4186", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -638,15 +650,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:47:28 GMT + - Wed, 20 May 2026 09:03:01 GMT Pragma: - no-cache RequestId: - - 6da15cd8-0ab5-4e0a-991a-35374145d9e2 + - 3f3cac84-1795-46f3-9f89-7786a647cb1b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -672,13 +684,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/880f932f-0f13-4ad8-8cdb-c678342510a4/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/5b30103a-86b5-4071-b8b6-f46de83fd528/folders?recursive=True response: body: - string: '{"value": [{"id": "75141f12-346e-47c5-a201-5c936938c46d", "displayName": - "fabcli000003", "workspaceId": "880f932f-0f13-4ad8-8cdb-c678342510a4"}]}' + string: '{"value": [{"id": "7751fe4d-bb45-4b5e-b81b-5bf4e418de8a", "displayName": + "fabcli000003", "workspaceId": "5b30103a-86b5-4071-b8b6-f46de83fd528"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -687,15 +699,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:47:28 GMT + - Wed, 20 May 2026 09:03:02 GMT Pragma: - no-cache RequestId: - - 8457418a-3481-4b39-bde9-182236e82368 + - 44f84fc4-bd75-42c1-9106-513c8bd68dcf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -721,16 +733,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "880f932f-0f13-4ad8-8cdb-c678342510a4", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "fed2fb31-d782-4c62-9aec-a03c5a9484d0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "5b30103a-86b5-4071-b8b6-f46de83fd528", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4a2e78ed-085e-433c-9e07-bd4adfaf4186", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -739,15 +754,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:47:29 GMT + - Wed, 20 May 2026 09:03:02 GMT Pragma: - no-cache RequestId: - - ead56177-8790-48b6-8165-df27d89c08f4 + - 1e520aa7-3aff-4683-ab1c-10e868fc590f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -773,16 +788,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "880f932f-0f13-4ad8-8cdb-c678342510a4", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "fed2fb31-d782-4c62-9aec-a03c5a9484d0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "5b30103a-86b5-4071-b8b6-f46de83fd528", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4a2e78ed-085e-433c-9e07-bd4adfaf4186", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -791,15 +809,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:47:29 GMT + - Wed, 20 May 2026 09:03:04 GMT Pragma: - no-cache RequestId: - - d558869d-fada-47cc-bff5-ec6b1e7821d0 + - 3af01b5e-a33a-4258-a151-54cb853132bc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -825,13 +843,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/880f932f-0f13-4ad8-8cdb-c678342510a4/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/5b30103a-86b5-4071-b8b6-f46de83fd528/folders?recursive=True response: body: - string: '{"value": [{"id": "75141f12-346e-47c5-a201-5c936938c46d", "displayName": - "fabcli000003", "workspaceId": "880f932f-0f13-4ad8-8cdb-c678342510a4"}]}' + string: '{"value": [{"id": "7751fe4d-bb45-4b5e-b81b-5bf4e418de8a", "displayName": + "fabcli000003", "workspaceId": "5b30103a-86b5-4071-b8b6-f46de83fd528"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -840,15 +858,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:47:30 GMT + - Wed, 20 May 2026 09:03:05 GMT Pragma: - no-cache RequestId: - - 664de2d2-b70b-4416-9a41-05c0d870bfbe + - c9a6dad3-ca7e-4722-8b2e-0b615857628e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -876,9 +894,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/880f932f-0f13-4ad8-8cdb-c678342510a4/folders/75141f12-346e-47c5-a201-5c936938c46d + uri: https://api.fabric.microsoft.com/v1/workspaces/5b30103a-86b5-4071-b8b6-f46de83fd528/folders/7751fe4d-bb45-4b5e-b81b-5bf4e418de8a response: body: string: '' @@ -894,11 +912,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:47:31 GMT + - Wed, 20 May 2026 09:03:06 GMT Pragma: - no-cache RequestId: - - 90521941-ad72-4429-9660-05ca4762955f + - a3bedc2f-c68f-4865-afdb-c2e7f22fe402 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -924,16 +942,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "880f932f-0f13-4ad8-8cdb-c678342510a4", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "fed2fb31-d782-4c62-9aec-a03c5a9484d0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "5b30103a-86b5-4071-b8b6-f46de83fd528", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4a2e78ed-085e-433c-9e07-bd4adfaf4186", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -942,15 +963,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:47:31 GMT + - Wed, 20 May 2026 09:03:06 GMT Pragma: - no-cache RequestId: - - 592f2b33-e86e-44c3-9621-33c0de823b92 + - b27debd8-27ac-438e-ab20-73a09f8668f4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -976,9 +997,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/880f932f-0f13-4ad8-8cdb-c678342510a4/items + uri: https://api.fabric.microsoft.com/v1/workspaces/5b30103a-86b5-4071-b8b6-f46de83fd528/items response: body: string: '{"value": []}' @@ -994,11 +1015,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:47:32 GMT + - Wed, 20 May 2026 09:03:07 GMT Pragma: - no-cache RequestId: - - 2307e8e9-ea86-4042-9e2a-e75bf3c8ac29 + - e34d67bd-18df-4844-b977-99bf9258e6d0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1026,9 +1047,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/880f932f-0f13-4ad8-8cdb-c678342510a4 + uri: https://api.fabric.microsoft.com/v1/workspaces/5b30103a-86b5-4071-b8b6-f46de83fd528 response: body: string: '' @@ -1044,11 +1065,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:47:33 GMT + - Wed, 20 May 2026 09:03:08 GMT Pragma: - no-cache RequestId: - - 8492b116-172a-4507-b965-428983cc7953 + - b86e5641-fa32-4ff0-b2ee-b316090adbf1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1074,15 +1095,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "fed2fb31-d782-4c62-9aec-a03c5a9484d0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4a2e78ed-085e-433c-9e07-bd4adfaf4186", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1091,15 +1114,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2845' + - '2659' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:47:34 GMT + - Wed, 20 May 2026 09:03:09 GMT Pragma: - no-cache RequestId: - - 072c0a10-b39f-428c-8323-f00d8e8a507b + - f43e8c55-5866-4357-bb61-9c81bf6b4dc9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1125,9 +1148,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/fed2fb31-d782-4c62-9aec-a03c5a9484d0/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4a2e78ed-085e-433c-9e07-bd4adfaf4186/items response: body: string: '{"value": []}' @@ -1143,11 +1166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:47:35 GMT + - Wed, 20 May 2026 09:03:10 GMT Pragma: - no-cache RequestId: - - 60899624-3be9-44a4-b135-bf4bd6191bf0 + - efb9f08e-ab50-45da-b620-e0c11488cf07 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1175,9 +1198,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/fed2fb31-d782-4c62-9aec-a03c5a9484d0 + uri: https://api.fabric.microsoft.com/v1/workspaces/4a2e78ed-085e-433c-9e07-bd4adfaf4186 response: body: string: '' @@ -1193,11 +1216,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:47:36 GMT + - Wed, 20 May 2026 09:03:11 GMT Pragma: - no-cache RequestId: - - a2d3e594-adea-4ce4-85d4-33bb16754951 + - cc035251-5b94-424a-96b2-84f35e48d96d 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_to_workspace_sucess.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_workspace_sucess.yaml index 2e0cbe1dd..f2b0c0e53 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_workspace_sucess.yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_to_workspace_sucess.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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:47:37 GMT + - Wed, 20 May 2026 09:03:12 GMT Pragma: - no-cache RequestId: - - 420944be-d1bc-4842-b0eb-516cfffd0071 + - 95688915-3598-43db-ba94-c0fa62e51033 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:47:37 GMT + - Wed, 20 May 2026 09:03:13 GMT Pragma: - no-cache RequestId: - - eb62193b-b6e8-40b4-ae4b-2ab7bc9d66d2 + - 39b5a7d1-dd71-4ef9-b922-cd3a1c5990a6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,7 +113,7 @@ 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/capacities response: @@ -127,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:47:43 GMT + - Wed, 20 May 2026 09:03:19 GMT Pragma: - no-cache RequestId: - - 1ffdce57-0ee5-4005-b044-2de9df00c130 + - 1cfcb21c-29bb-4e80-994b-2ddf621be8ba Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -160,16 +162,16 @@ interactions: - keep-alive Content-Length: - '89' - 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 response: body: - string: '{"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -178,17 +180,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '154' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:47:51 GMT + - Wed, 20 May 2026 09:03:25 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f + - https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7 Pragma: - no-cache RequestId: - - 7fbcca60-68b1-4d43-bb5d-021ae4bd0086 + - f663cecf-04d2-4522-ba12-11b5477d595d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,15 +216,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -231,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2841' + - '2657' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:47:52 GMT + - Wed, 20 May 2026 09:03:26 GMT Pragma: - no-cache RequestId: - - ce6ad327-bfe8-400c-9421-37d61ab26b2c + - fb4e3175-63e0-40c0-80d2-4869ac06b9ca Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,15 +269,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -282,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2841' + - '2657' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:47:52 GMT + - Wed, 20 May 2026 09:03:26 GMT Pragma: - no-cache RequestId: - - 4c517a68-cc87-430a-af81-6868787de247 + - 2e4231ee-206a-4aaa-a6a1-c1724d5c4dc8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,7 +322,7 @@ 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/capacities response: @@ -332,15 +338,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:47:58 GMT + - Wed, 20 May 2026 09:03:33 GMT Pragma: - no-cache RequestId: - - 0c450565-13b7-4faf-a9bf-67ede8deadf9 + - 9880829f-4308-4e26-86ec-824ff9a761f5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -365,16 +371,16 @@ interactions: - keep-alive Content-Length: - '89' - 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 response: body: - string: '{"id": "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "b5197fda-1783-4bc7-8b19-657840562dfd", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -383,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:48:05 GMT + - Wed, 20 May 2026 09:03:39 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/13bc1b7a-612b-49a6-a134-e09fb0e565a7 + - https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd Pragma: - no-cache RequestId: - - cc47ad82-95cc-40fd-94e6-b8ff6e33e680 + - 011b6921-194a-497f-b4d7-51128bfaf02c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -419,16 +425,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b5197fda-1783-4bc7-8b19-657840562dfd", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -437,15 +446,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:48:07 GMT + - Wed, 20 May 2026 09:03:39 GMT Pragma: - no-cache RequestId: - - ab0c6401-c0cf-4ed5-8425-f6f0c7a9fcff + - ae8f6dfa-e0aa-4fbd-9024-678ae2782b35 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -471,9 +480,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/53297cef-1d90-40ae-88f7-07170438ec2f/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders?recursive=True response: body: string: '{"value": []}' @@ -489,11 +498,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:48:07 GMT + - Wed, 20 May 2026 09:03:41 GMT Pragma: - no-cache RequestId: - - 365bec2f-7217-4be3-92dc-c478c8b77828 + - 07b1346a-48a2-4507-a88d-9f59fb843109 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -519,9 +528,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/53297cef-1d90-40ae-88f7-07170438ec2f/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders?recursive=True response: body: string: '{"value": []}' @@ -537,11 +546,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:48:08 GMT + - Wed, 20 May 2026 09:03:41 GMT Pragma: - no-cache RequestId: - - 63981d71-88b3-405b-8fcf-0872de3c6465 + - f90a5f11-2b94-4d23-9122-dc09153173a0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -565,17 +574,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/53297cef-1d90-40ae-88f7-07170438ec2f/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders response: body: - string: '{"id": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef", "displayName": "fabcli000003", - "workspaceId": "53297cef-1d90-40ae-88f7-07170438ec2f"}' + string: '{"id": "b8e4fdb7-b278-425e-a72b-680794f1f91c", "displayName": "fabcli000003", + "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -584,17 +593,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '133' + - '132' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:48:08 GMT + - Wed, 20 May 2026 09:03:42 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f/folders/4cb417a0-e34f-4733-b1d8-045c6b4e09ef + - https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders/b8e4fdb7-b278-425e-a72b-680794f1f91c Pragma: - no-cache RequestId: - - 75d7def9-5073-479f-a8b1-9740d0da0cda + - cbd15188-e64b-402c-9d17-9eb5a4277bbe Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -620,16 +629,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b5197fda-1783-4bc7-8b19-657840562dfd", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -638,15 +650,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:48:10 GMT + - Wed, 20 May 2026 09:03:43 GMT Pragma: - no-cache RequestId: - - dfb16298-1516-4b57-9416-78232c015ede + - d538806b-c563-419f-88fb-3c5175855991 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -672,13 +684,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/53297cef-1d90-40ae-88f7-07170438ec2f/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders?recursive=True response: body: - string: '{"value": [{"id": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef", "displayName": - "fabcli000003", "workspaceId": "53297cef-1d90-40ae-88f7-07170438ec2f"}]}' + string: '{"value": [{"id": "b8e4fdb7-b278-425e-a72b-680794f1f91c", "displayName": + "fabcli000003", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -687,15 +699,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:48:10 GMT + - Wed, 20 May 2026 09:03:45 GMT Pragma: - no-cache RequestId: - - 93873027-27ae-40db-ba3f-fc53b136befe + - 3eb10490-8d3c-4ce8-9f09-e86d6f38658a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -721,9 +733,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/53297cef-1d90-40ae-88f7-07170438ec2f/items + uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/items response: body: string: '{"value": []}' @@ -739,11 +751,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:48:11 GMT + - Wed, 20 May 2026 09:03:45 GMT Pragma: - no-cache RequestId: - - 40229745-a62d-429a-8c21-7e247e32431c + - 3b6ecd52-e0a0-40a7-8b4a-f35d0e0c9956 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -769,9 +781,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/53297cef-1d90-40ae-88f7-07170438ec2f/items + uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/items response: body: string: '{"value": []}' @@ -787,11 +799,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:48:12 GMT + - Wed, 20 May 2026 09:03:46 GMT Pragma: - no-cache RequestId: - - e6543136-90af-4490-abba-2077dfcf1d1d + - ccb6cf07-1c4b-41f0-8687-b380f1ec4510 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -806,9 +818,8 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000004", "type": - "Notebook", "folderId": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef", "definition": - {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", + body: '{"displayName": "fabcli000004", "type": "Notebook", "folderId": "b8e4fdb7-b278-425e-a72b-680794f1f91c", + "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", "payloadType": "InlineBase64"}]}}' headers: Accept: @@ -819,13 +830,12 @@ interactions: - keep-alive Content-Length: - '765' - 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/53297cef-1d90-40ae-88f7-07170438ec2f/notebooks + uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/notebooks response: body: string: 'null' @@ -841,15 +851,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:48:14 GMT + - Wed, 20 May 2026 09:03:48 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cb96d310-3f09-46b9-8110-939746f8c493 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/93da45b9-012b-4311-b7e7-46cb8c114366 Pragma: - no-cache RequestId: - - 2a74b63c-6cbe-4e06-b94e-10416e6c754f + - a003c285-0547-4e7e-8923-6ef16d011678 Retry-After: - '20' Strict-Transport-Security: @@ -863,7 +873,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - cb96d310-3f09-46b9-8110-939746f8c493 + - 93da45b9-012b-4311-b7e7-46cb8c114366 status: code: 202 message: Accepted @@ -879,13 +889,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cb96d310-3f09-46b9-8110-939746f8c493 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/93da45b9-012b-4311-b7e7-46cb8c114366 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:48:13.8489931", - "lastUpdatedTimeUtc": "2026-02-06T07:48:17.2711496", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:03:48.0133525", + "lastUpdatedTimeUtc": "2026-05-20T09:03:49.6628292", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -899,13 +909,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:48:36 GMT + - Wed, 20 May 2026 09:04:09 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cb96d310-3f09-46b9-8110-939746f8c493/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/93da45b9-012b-4311-b7e7-46cb8c114366/result Pragma: - no-cache RequestId: - - 3a9acdf0-97fd-4abf-87a9-db11954d8432 + - 465946be-bc00-4ba6-95ed-778d8c99a830 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -913,7 +923,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - cb96d310-3f09-46b9-8110-939746f8c493 + - 93da45b9-012b-4311-b7e7-46cb8c114366 status: code: 200 message: OK @@ -929,14 +939,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cb96d310-3f09-46b9-8110-939746f8c493/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/93da45b9-012b-4311-b7e7-46cb8c114366/result response: body: - string: '{"id": "bf2d1795-59e1-4e4c-a1ea-e07d1fe76b72", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "53297cef-1d90-40ae-88f7-07170438ec2f", "folderId": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef"}' + string: '{"id": "1e1ad4c2-6eda-4517-af8a-3b40887b2500", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", + "folderId": "b8e4fdb7-b278-425e-a72b-680794f1f91c"}' headers: Access-Control-Expose-Headers: - RequestId @@ -947,11 +957,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 07:48:37 GMT + - Wed, 20 May 2026 09:04:11 GMT Pragma: - no-cache RequestId: - - 6e2effd6-3d39-49a5-9ce8-671db9f1eb9c + - da4bbb00-a9ff-4511-a420-0696843487a2 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -975,16 +985,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b5197fda-1783-4bc7-8b19-657840562dfd", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -993,15 +1006,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:48:38 GMT + - Wed, 20 May 2026 09:04:11 GMT Pragma: - no-cache RequestId: - - b4b151b8-3d39-4c32-bb7c-f892e8217354 + - 533739b8-d95c-48d4-aa3a-d28d6dcba897 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1027,13 +1040,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/53297cef-1d90-40ae-88f7-07170438ec2f/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders?recursive=True response: body: - string: '{"value": [{"id": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef", "displayName": - "fabcli000003", "workspaceId": "53297cef-1d90-40ae-88f7-07170438ec2f"}]}' + string: '{"value": [{"id": "b8e4fdb7-b278-425e-a72b-680794f1f91c", "displayName": + "fabcli000003", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1042,15 +1055,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:48:38 GMT + - Wed, 20 May 2026 09:04:12 GMT Pragma: - no-cache RequestId: - - 1cf9d223-fd85-44dc-89ff-c2d41b443bfc + - de6e2a14-fcd9-4113-892b-f15bf96d68f5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1076,16 +1089,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b5197fda-1783-4bc7-8b19-657840562dfd", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1094,15 +1110,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:48:40 GMT + - Wed, 20 May 2026 09:04:12 GMT Pragma: - no-cache RequestId: - - 217332d3-2979-41fa-9b1e-1d088c57df6c + - 9a1da0e0-eaeb-4f97-a4cf-dd88b15e8e12 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1128,16 +1144,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b5197fda-1783-4bc7-8b19-657840562dfd", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1146,15 +1165,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:48:40 GMT + - Wed, 20 May 2026 09:04:13 GMT Pragma: - no-cache RequestId: - - 05e0c758-a1e3-4345-86f0-6ee1ea97a28c + - e98a6307-8eaa-430e-9df6-9f2ae5c93f2f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1180,9 +1199,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/13bc1b7a-612b-49a6-a134-e09fb0e565a7/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/folders?recursive=True response: body: string: '{"value": []}' @@ -1198,11 +1217,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:48:41 GMT + - Wed, 20 May 2026 09:04:14 GMT Pragma: - no-cache RequestId: - - 6cbc209e-c3b2-4baa-801f-65885c798581 + - ce0fd860-6a20-4d59-bb46-2f2db80809a7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1228,9 +1247,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/13bc1b7a-612b-49a6-a134-e09fb0e565a7/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/folders?recursive=True response: body: string: '{"value": []}' @@ -1246,11 +1265,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:48:42 GMT + - Wed, 20 May 2026 09:04:15 GMT Pragma: - no-cache RequestId: - - 7ce0394d-df82-4a66-ad5d-91ce786eb917 + - 71b65ec0-7e83-4bd4-b27e-8b8c77f39346 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1274,17 +1293,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/13bc1b7a-612b-49a6-a134-e09fb0e565a7/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/folders response: body: - string: '{"id": "89903e53-6be2-4ffa-9962-cb330ad26313", "displayName": "fabcli000003", - "workspaceId": "13bc1b7a-612b-49a6-a134-e09fb0e565a7"}' + string: '{"id": "d9d3b476-096f-4584-9215-eef82a458f31", "displayName": "fabcli000003", + "workspaceId": "b5197fda-1783-4bc7-8b19-657840562dfd"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -1293,17 +1312,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '133' + - '134' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:48:43 GMT + - Wed, 20 May 2026 09:04:16 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/13bc1b7a-612b-49a6-a134-e09fb0e565a7/folders/89903e53-6be2-4ffa-9962-cb330ad26313 + - https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/folders/d9d3b476-096f-4584-9215-eef82a458f31 Pragma: - no-cache RequestId: - - 1a55dc8a-da92-43b5-a676-0e9a8789a2b1 + - 93b905e3-85f7-48bf-8c67-ebe895203493 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1329,14 +1348,14 @@ 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/53297cef-1d90-40ae-88f7-07170438ec2f/items + uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/items response: body: - string: '{"value": [{"id": "bf2d1795-59e1-4e4c-a1ea-e07d1fe76b72", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "53297cef-1d90-40ae-88f7-07170438ec2f", "folderId": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef"}]}' + string: '{"value": [{"id": "1e1ad4c2-6eda-4517-af8a-3b40887b2500", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", + "folderId": "b8e4fdb7-b278-425e-a72b-680794f1f91c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1345,15 +1364,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '208' + - '193' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:48:44 GMT + - Wed, 20 May 2026 09:04:17 GMT Pragma: - no-cache RequestId: - - 96b453a9-3385-4c7f-97c9-4eeacc7c4eb6 + - 1bce4bc0-8df8-4d13-835d-0136cc87075f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1379,13 +1398,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/53297cef-1d90-40ae-88f7-07170438ec2f/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders?recursive=True response: body: - string: '{"value": [{"id": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef", "displayName": - "fabcli000003", "workspaceId": "53297cef-1d90-40ae-88f7-07170438ec2f"}]}' + string: '{"value": [{"id": "b8e4fdb7-b278-425e-a72b-680794f1f91c", "displayName": + "fabcli000003", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1394,15 +1413,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:48:45 GMT + - Wed, 20 May 2026 09:04:18 GMT Pragma: - no-cache RequestId: - - 73351387-970f-445c-91a5-d8576c8f79bf + - cb6500af-5ea8-405d-b74e-05ab0d2f485d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1428,13 +1447,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/53297cef-1d90-40ae-88f7-07170438ec2f/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders?recursive=True response: body: - string: '{"value": [{"id": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef", "displayName": - "fabcli000003", "workspaceId": "53297cef-1d90-40ae-88f7-07170438ec2f"}]}' + string: '{"value": [{"id": "b8e4fdb7-b278-425e-a72b-680794f1f91c", "displayName": + "fabcli000003", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1443,15 +1462,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:48:46 GMT + - Wed, 20 May 2026 09:04:19 GMT Pragma: - no-cache RequestId: - - 8cd008f6-d3ac-4314-ab0d-1857f904f2bd + - dce859b0-0a48-45f5-8a03-40deea1a4869 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1477,14 +1496,14 @@ 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/53297cef-1d90-40ae-88f7-07170438ec2f/items + uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/items response: body: - string: '{"value": [{"id": "bf2d1795-59e1-4e4c-a1ea-e07d1fe76b72", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "53297cef-1d90-40ae-88f7-07170438ec2f", "folderId": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef"}]}' + string: '{"value": [{"id": "1e1ad4c2-6eda-4517-af8a-3b40887b2500", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", + "folderId": "b8e4fdb7-b278-425e-a72b-680794f1f91c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1493,15 +1512,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '208' + - '193' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:48:47 GMT + - Wed, 20 May 2026 09:04:20 GMT Pragma: - no-cache RequestId: - - 8e76bd7b-808e-4987-9e8f-482a7b1db6f9 + - 2c80b74a-5a17-4afb-a247-97eaee9cbc25 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1527,13 +1546,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/53297cef-1d90-40ae-88f7-07170438ec2f/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders?recursive=True response: body: - string: '{"value": [{"id": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef", "displayName": - "fabcli000003", "workspaceId": "53297cef-1d90-40ae-88f7-07170438ec2f"}]}' + string: '{"value": [{"id": "b8e4fdb7-b278-425e-a72b-680794f1f91c", "displayName": + "fabcli000003", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1542,15 +1561,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:48:47 GMT + - Wed, 20 May 2026 09:04:21 GMT Pragma: - no-cache RequestId: - - 214ab35d-b6b7-4a5c-883c-698bcc5f6f2f + - 3e42ec0f-f092-40ae-b709-44ea56e20055 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1576,13 +1595,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/53297cef-1d90-40ae-88f7-07170438ec2f/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders?recursive=True response: body: - string: '{"value": [{"id": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef", "displayName": - "fabcli000003", "workspaceId": "53297cef-1d90-40ae-88f7-07170438ec2f"}]}' + string: '{"value": [{"id": "b8e4fdb7-b278-425e-a72b-680794f1f91c", "displayName": + "fabcli000003", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1591,15 +1610,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:48:49 GMT + - Wed, 20 May 2026 09:04:22 GMT Pragma: - no-cache RequestId: - - dba1292c-37b6-4746-ba6a-0ab38c43996b + - 0db42a64-d077-4d20-8039-d4b38a25c566 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1625,16 +1644,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b5197fda-1783-4bc7-8b19-657840562dfd", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1643,15 +1665,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:48:49 GMT + - Wed, 20 May 2026 09:04:23 GMT Pragma: - no-cache RequestId: - - d78c02c5-b9fd-40c7-8bdc-a98351f4836d + - b4d2864f-68f2-4aeb-a8a3-e7dd49f27046 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1677,13 +1699,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/13bc1b7a-612b-49a6-a134-e09fb0e565a7/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/folders?recursive=True response: body: - string: '{"value": [{"id": "89903e53-6be2-4ffa-9962-cb330ad26313", "displayName": - "fabcli000003", "workspaceId": "13bc1b7a-612b-49a6-a134-e09fb0e565a7"}]}' + string: '{"value": [{"id": "d9d3b476-096f-4584-9215-eef82a458f31", "displayName": + "fabcli000003", "workspaceId": "b5197fda-1783-4bc7-8b19-657840562dfd"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1692,15 +1714,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:48:50 GMT + - Wed, 20 May 2026 09:04:24 GMT Pragma: - no-cache RequestId: - - 9840ac2e-81cf-4fe6-b264-022945185897 + - cec494a6-cc79-4e37-b2f6-63506ccc1e45 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1726,9 +1748,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/13bc1b7a-612b-49a6-a134-e09fb0e565a7/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/items response: body: string: '{"value": []}' @@ -1744,11 +1766,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:48:51 GMT + - Wed, 20 May 2026 09:04:24 GMT Pragma: - no-cache RequestId: - - 8e4845fc-b40a-421d-b0e8-30ebaf9d4040 + - e9255553-7ce9-4dcd-87c0-92be50a896af Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1774,9 +1796,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/13bc1b7a-612b-49a6-a134-e09fb0e565a7/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/items response: body: string: '{"value": []}' @@ -1792,11 +1814,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:48:52 GMT + - Wed, 20 May 2026 09:04:25 GMT Pragma: - no-cache RequestId: - - d44364bc-1acf-4913-8748-eaa46422edde + - 87e04884-076e-4f33-821f-5285accec40a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1822,9 +1844,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/13bc1b7a-612b-49a6-a134-e09fb0e565a7/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/items response: body: string: '{"value": []}' @@ -1840,11 +1862,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:48:53 GMT + - Wed, 20 May 2026 09:04:26 GMT Pragma: - no-cache RequestId: - - cb271679-34a1-45c4-9ec5-0c82c7deadbc + - f951daf1-28f7-4ced-8e90-5d2271c2a332 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1870,14 +1892,14 @@ 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/53297cef-1d90-40ae-88f7-07170438ec2f/items/bf2d1795-59e1-4e4c-a1ea-e07d1fe76b72 + uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/items/1e1ad4c2-6eda-4517-af8a-3b40887b2500 response: body: - string: '{"id": "bf2d1795-59e1-4e4c-a1ea-e07d1fe76b72", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "53297cef-1d90-40ae-88f7-07170438ec2f", "folderId": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef"}' + string: '{"id": "1e1ad4c2-6eda-4517-af8a-3b40887b2500", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", + "folderId": "b8e4fdb7-b278-425e-a72b-680794f1f91c"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1886,17 +1908,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '197' + - '182' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:48:54 GMT + - Wed, 20 May 2026 09:04:27 GMT ETag: - '""' Pragma: - no-cache RequestId: - - bc4e3852-d82f-47d6-ba29-5fe8cc4a6ab2 + - 6b32366e-8b8a-488e-b7ea-55751db2429d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1924,9 +1946,9 @@ interactions: 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/53297cef-1d90-40ae-88f7-07170438ec2f/items/bf2d1795-59e1-4e4c-a1ea-e07d1fe76b72/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/items/1e1ad4c2-6eda-4517-af8a-3b40887b2500/getDefinition response: body: string: 'null' @@ -1942,13 +1964,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:48:54 GMT + - Wed, 20 May 2026 09:04:29 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5a63d0d5-bcae-4cfe-b6ee-e53fe01f517c + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/056ae957-7046-4ca1-999d-7ead04b2a2a7 Pragma: - no-cache RequestId: - - 6991ea5c-d509-44a2-b519-1ed18846dd37 + - 09188e82-0f83-479b-960e-549b2620a2ba Retry-After: - '20' Strict-Transport-Security: @@ -1962,7 +1984,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 5a63d0d5-bcae-4cfe-b6ee-e53fe01f517c + - 056ae957-7046-4ca1-999d-7ead04b2a2a7 status: code: 202 message: Accepted @@ -1978,13 +2000,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5a63d0d5-bcae-4cfe-b6ee-e53fe01f517c + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/056ae957-7046-4ca1-999d-7ead04b2a2a7 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:48:55.4673039", - "lastUpdatedTimeUtc": "2026-02-06T07:48:55.7955942", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:04:30.1982851", + "lastUpdatedTimeUtc": "2026-05-20T09:04:31.002453", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1994,17 +2016,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:49:16 GMT + - Wed, 20 May 2026 09:04:51 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5a63d0d5-bcae-4cfe-b6ee-e53fe01f517c/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/056ae957-7046-4ca1-999d-7ead04b2a2a7/result Pragma: - no-cache RequestId: - - d9c31836-eabc-4397-a510-de93ecdd16ca + - 73237fa8-8f77-41b5-8885-e3417efd3410 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2012,7 +2034,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 5a63d0d5-bcae-4cfe-b6ee-e53fe01f517c + - 056ae957-7046-4ca1-999d-7ead04b2a2a7 status: code: 200 message: OK @@ -2028,14 +2050,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/5a63d0d5-bcae-4cfe-b6ee-e53fe01f517c/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/056ae957-7046-4ca1-999d-7ead04b2a2a7/result response: body: string: '{"definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -2047,11 +2069,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 07:49:18 GMT + - Wed, 20 May 2026 09:04:51 GMT Pragma: - no-cache RequestId: - - e4bec1f9-a555-4e4f-bb62-28ea37ccec42 + - 3adc1e4c-3731-4c17-9251-d4c05828c297 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -2064,10 +2086,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "Notebook", "displayName": "fabcli000004", - "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", - "payloadType": "InlineBase64"}]}, "folderId": "89903e53-6be2-4ffa-9962-cb330ad26313"}' + body: '{"type": "Notebook", "displayName": "fabcli000004", "definition": {"parts": + [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}]}, "folderId": "d9d3b476-096f-4584-9215-eef82a458f31"}' headers: Accept: - '*/*' @@ -2076,14 +2098,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1286' - + - '1238' 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/13bc1b7a-612b-49a6-a134-e09fb0e565a7/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/items response: body: string: 'null' @@ -2099,15 +2120,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:49:20 GMT + - Wed, 20 May 2026 09:04:53 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c46bf6b6-ad83-4b6e-8c5d-cca369ed9e7b + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/05e1576e-7c0f-4f5e-afbc-76ec5b0481ef Pragma: - no-cache RequestId: - - e767b6ea-e92e-4a81-afa9-af92a52fcfee + - 7dac3fe9-d18d-44d8-932e-a0adcdb9aaa0 Retry-After: - '20' Strict-Transport-Security: @@ -2121,7 +2142,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - c46bf6b6-ad83-4b6e-8c5d-cca369ed9e7b + - 05e1576e-7c0f-4f5e-afbc-76ec5b0481ef status: code: 202 message: Accepted @@ -2137,13 +2158,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c46bf6b6-ad83-4b6e-8c5d-cca369ed9e7b + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/05e1576e-7c0f-4f5e-afbc-76ec5b0481ef response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:49:19.7282426", - "lastUpdatedTimeUtc": "2026-02-06T07:49:21.2285088", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:04:53.4990045", + "lastUpdatedTimeUtc": "2026-05-20T09:04:55.053739", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -2153,17 +2174,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:49:42 GMT + - Wed, 20 May 2026 09:05:14 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c46bf6b6-ad83-4b6e-8c5d-cca369ed9e7b/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/05e1576e-7c0f-4f5e-afbc-76ec5b0481ef/result Pragma: - no-cache RequestId: - - cb7b4dc6-8c22-43bf-a360-3a469496c014 + - 457cb7a8-b5dd-451d-bea3-b2625ef2f152 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2171,7 +2192,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - c46bf6b6-ad83-4b6e-8c5d-cca369ed9e7b + - 05e1576e-7c0f-4f5e-afbc-76ec5b0481ef status: code: 200 message: OK @@ -2187,14 +2208,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c46bf6b6-ad83-4b6e-8c5d-cca369ed9e7b/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/05e1576e-7c0f-4f5e-afbc-76ec5b0481ef/result response: body: - string: '{"id": "e6fa6c43-ec05-4374-8cd6-db7fc60e6bd6", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "folderId": "89903e53-6be2-4ffa-9962-cb330ad26313"}' + string: '{"id": "fe37a758-3c42-4f8b-b6fd-dd4861d607c1", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "b5197fda-1783-4bc7-8b19-657840562dfd", + "folderId": "d9d3b476-096f-4584-9215-eef82a458f31"}' headers: Access-Control-Expose-Headers: - RequestId @@ -2205,11 +2226,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 07:49:43 GMT + - Wed, 20 May 2026 09:05:15 GMT Pragma: - no-cache RequestId: - - aad661c0-d650-4028-ac8f-557892ab97a9 + - 3def2a22-061b-4451-8617-cd53b6e26e57 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -2233,14 +2254,14 @@ 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/53297cef-1d90-40ae-88f7-07170438ec2f/items + uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/items response: body: - string: '{"value": [{"id": "bf2d1795-59e1-4e4c-a1ea-e07d1fe76b72", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "53297cef-1d90-40ae-88f7-07170438ec2f", "folderId": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef"}]}' + string: '{"value": [{"id": "1e1ad4c2-6eda-4517-af8a-3b40887b2500", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", + "folderId": "b8e4fdb7-b278-425e-a72b-680794f1f91c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2249,15 +2270,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '208' + - '193' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:49:43 GMT + - Wed, 20 May 2026 09:05:16 GMT Pragma: - no-cache RequestId: - - cb563e51-164d-43f3-bc65-f3dabe2694ff + - 65a2f6f0-b0cf-44f2-8a84-306129ff75b9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2283,13 +2304,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/53297cef-1d90-40ae-88f7-07170438ec2f/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders?recursive=True response: body: - string: '{"value": [{"id": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef", "displayName": - "fabcli000003", "workspaceId": "53297cef-1d90-40ae-88f7-07170438ec2f"}]}' + string: '{"value": [{"id": "b8e4fdb7-b278-425e-a72b-680794f1f91c", "displayName": + "fabcli000003", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2298,15 +2319,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:49:44 GMT + - Wed, 20 May 2026 09:05:17 GMT Pragma: - no-cache RequestId: - - 505e9d99-32ad-40f1-9d8e-fa7a1cedbaf0 + - 866785bd-e37b-4d80-affb-c44cd89a2ec2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2332,13 +2353,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/53297cef-1d90-40ae-88f7-07170438ec2f/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders?recursive=True response: body: - string: '{"value": [{"id": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef", "displayName": - "fabcli000003", "workspaceId": "53297cef-1d90-40ae-88f7-07170438ec2f"}]}' + string: '{"value": [{"id": "b8e4fdb7-b278-425e-a72b-680794f1f91c", "displayName": + "fabcli000003", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2347,15 +2368,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:49:46 GMT + - Wed, 20 May 2026 09:05:18 GMT Pragma: - no-cache RequestId: - - ee8054f3-d3fa-4285-8cde-a739dd38fe47 + - eaeb2a37-2c0a-4f40-99a2-b4a57df95cb5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2381,16 +2402,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b5197fda-1783-4bc7-8b19-657840562dfd", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2399,15 +2423,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:49:46 GMT + - Wed, 20 May 2026 09:05:18 GMT Pragma: - no-cache RequestId: - - 7fbef4f2-255c-4787-a663-5d615e4dc025 + - 85126088-0260-475f-9535-bc94866d83de Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2433,14 +2457,14 @@ 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/13bc1b7a-612b-49a6-a134-e09fb0e565a7/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/items response: body: - string: '{"value": [{"id": "e6fa6c43-ec05-4374-8cd6-db7fc60e6bd6", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "folderId": "89903e53-6be2-4ffa-9962-cb330ad26313"}]}' + string: '{"value": [{"id": "fe37a758-3c42-4f8b-b6fd-dd4861d607c1", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "b5197fda-1783-4bc7-8b19-657840562dfd", + "folderId": "d9d3b476-096f-4584-9215-eef82a458f31"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2449,15 +2473,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '208' + - '197' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:49:47 GMT + - Wed, 20 May 2026 09:05:19 GMT Pragma: - no-cache RequestId: - - b0df368f-1b50-479d-acec-0bce5cfcb701 + - b10ec1f0-dc57-427e-811c-a0ce9955afd2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2483,13 +2507,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/13bc1b7a-612b-49a6-a134-e09fb0e565a7/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/folders?recursive=True response: body: - string: '{"value": [{"id": "89903e53-6be2-4ffa-9962-cb330ad26313", "displayName": - "fabcli000003", "workspaceId": "13bc1b7a-612b-49a6-a134-e09fb0e565a7"}]}' + string: '{"value": [{"id": "d9d3b476-096f-4584-9215-eef82a458f31", "displayName": + "fabcli000003", "workspaceId": "b5197fda-1783-4bc7-8b19-657840562dfd"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2498,15 +2522,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:49:48 GMT + - Wed, 20 May 2026 09:05:21 GMT Pragma: - no-cache RequestId: - - ac0578c9-ae42-4977-a5ee-327c4942e02e + - ec2beb11-3818-4b9a-a49a-58f8f1d7c7d7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2532,13 +2556,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/13bc1b7a-612b-49a6-a134-e09fb0e565a7/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/folders?recursive=True response: body: - string: '{"value": [{"id": "89903e53-6be2-4ffa-9962-cb330ad26313", "displayName": - "fabcli000003", "workspaceId": "13bc1b7a-612b-49a6-a134-e09fb0e565a7"}]}' + string: '{"value": [{"id": "d9d3b476-096f-4584-9215-eef82a458f31", "displayName": + "fabcli000003", "workspaceId": "b5197fda-1783-4bc7-8b19-657840562dfd"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2547,15 +2571,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:49:49 GMT + - Wed, 20 May 2026 09:05:21 GMT Pragma: - no-cache RequestId: - - 120475c1-1e67-431c-b29a-daa86bc70790 + - f5fc431f-4b14-400f-8769-4f53e2e63202 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2581,16 +2605,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b5197fda-1783-4bc7-8b19-657840562dfd", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2599,15 +2626,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:49:49 GMT + - Wed, 20 May 2026 09:05:22 GMT Pragma: - no-cache RequestId: - - 1cf29014-9c75-4e81-b353-5d359962daca + - 998d5948-35f1-49bd-b318-93a05f4f7a18 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2633,13 +2660,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/13bc1b7a-612b-49a6-a134-e09fb0e565a7/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/folders?recursive=True response: body: - string: '{"value": [{"id": "89903e53-6be2-4ffa-9962-cb330ad26313", "displayName": - "fabcli000003", "workspaceId": "13bc1b7a-612b-49a6-a134-e09fb0e565a7"}]}' + string: '{"value": [{"id": "d9d3b476-096f-4584-9215-eef82a458f31", "displayName": + "fabcli000003", "workspaceId": "b5197fda-1783-4bc7-8b19-657840562dfd"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2648,15 +2675,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:49:50 GMT + - Wed, 20 May 2026 09:05:23 GMT Pragma: - no-cache RequestId: - - e3190498-40ef-4309-9f41-a2cccab278a0 + - de269419-b700-4af9-9a5b-9a41cb17865e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2682,14 +2709,14 @@ 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/13bc1b7a-612b-49a6-a134-e09fb0e565a7/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/items response: body: - string: '{"value": [{"id": "e6fa6c43-ec05-4374-8cd6-db7fc60e6bd6", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "folderId": "89903e53-6be2-4ffa-9962-cb330ad26313"}]}' + string: '{"value": [{"id": "fe37a758-3c42-4f8b-b6fd-dd4861d607c1", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "b5197fda-1783-4bc7-8b19-657840562dfd", + "folderId": "d9d3b476-096f-4584-9215-eef82a458f31"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2698,15 +2725,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '208' + - '197' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:49:51 GMT + - Wed, 20 May 2026 09:05:23 GMT Pragma: - no-cache RequestId: - - 962a0a6c-e3de-41ee-b8cd-afccdb0700a0 + - d0dc4416-3954-4973-969b-c8f7995fea14 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2732,13 +2759,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/13bc1b7a-612b-49a6-a134-e09fb0e565a7/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/folders?recursive=True response: body: - string: '{"value": [{"id": "89903e53-6be2-4ffa-9962-cb330ad26313", "displayName": - "fabcli000003", "workspaceId": "13bc1b7a-612b-49a6-a134-e09fb0e565a7"}]}' + string: '{"value": [{"id": "d9d3b476-096f-4584-9215-eef82a458f31", "displayName": + "fabcli000003", "workspaceId": "b5197fda-1783-4bc7-8b19-657840562dfd"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2747,15 +2774,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:49:51 GMT + - Wed, 20 May 2026 09:05:24 GMT Pragma: - no-cache RequestId: - - c74b05bb-a3b5-4569-bbe9-18c1baf07e1f + - d285df73-2a5c-4ea0-8a47-3b563f158507 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2781,13 +2808,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/13bc1b7a-612b-49a6-a134-e09fb0e565a7/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/folders?recursive=True response: body: - string: '{"value": [{"id": "89903e53-6be2-4ffa-9962-cb330ad26313", "displayName": - "fabcli000003", "workspaceId": "13bc1b7a-612b-49a6-a134-e09fb0e565a7"}]}' + string: '{"value": [{"id": "d9d3b476-096f-4584-9215-eef82a458f31", "displayName": + "fabcli000003", "workspaceId": "b5197fda-1783-4bc7-8b19-657840562dfd"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2796,15 +2823,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:49:52 GMT + - Wed, 20 May 2026 09:05:25 GMT Pragma: - no-cache RequestId: - - 40a3074a-2a3d-47d5-9eb9-024bffc81266 + - 4d51f90d-f050-4d59-acde-806f88514d12 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2830,16 +2857,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b5197fda-1783-4bc7-8b19-657840562dfd", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2848,15 +2878,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:49:53 GMT + - Wed, 20 May 2026 09:05:26 GMT Pragma: - no-cache RequestId: - - 4934d0c6-8e8b-4eb6-9a07-d27f3f6f7f90 + - 4e834014-9d44-452e-91fd-369570db34d0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2882,13 +2912,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/13bc1b7a-612b-49a6-a134-e09fb0e565a7/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/folders?recursive=True response: body: - string: '{"value": [{"id": "89903e53-6be2-4ffa-9962-cb330ad26313", "displayName": - "fabcli000003", "workspaceId": "13bc1b7a-612b-49a6-a134-e09fb0e565a7"}]}' + string: '{"value": [{"id": "d9d3b476-096f-4584-9215-eef82a458f31", "displayName": + "fabcli000003", "workspaceId": "b5197fda-1783-4bc7-8b19-657840562dfd"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2897,15 +2927,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:49:54 GMT + - Wed, 20 May 2026 09:05:27 GMT Pragma: - no-cache RequestId: - - c9665baa-fc1c-4d63-b646-34d3a7de4138 + - 43dc02d0-0a07-41ce-bd59-523b7639e468 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2931,14 +2961,14 @@ 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/13bc1b7a-612b-49a6-a134-e09fb0e565a7/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/items response: body: - string: '{"value": [{"id": "e6fa6c43-ec05-4374-8cd6-db7fc60e6bd6", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "folderId": "89903e53-6be2-4ffa-9962-cb330ad26313"}]}' + string: '{"value": [{"id": "fe37a758-3c42-4f8b-b6fd-dd4861d607c1", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "b5197fda-1783-4bc7-8b19-657840562dfd", + "folderId": "d9d3b476-096f-4584-9215-eef82a458f31"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2947,15 +2977,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '208' + - '197' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:49:55 GMT + - Wed, 20 May 2026 09:05:28 GMT Pragma: - no-cache RequestId: - - fb66f240-2410-467d-a2eb-92851130313e + - 204fbf05-6736-4ae2-9ad0-430c6225349a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2981,13 +3011,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/13bc1b7a-612b-49a6-a134-e09fb0e565a7/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/folders?recursive=True response: body: - string: '{"value": [{"id": "89903e53-6be2-4ffa-9962-cb330ad26313", "displayName": - "fabcli000003", "workspaceId": "13bc1b7a-612b-49a6-a134-e09fb0e565a7"}]}' + string: '{"value": [{"id": "d9d3b476-096f-4584-9215-eef82a458f31", "displayName": + "fabcli000003", "workspaceId": "b5197fda-1783-4bc7-8b19-657840562dfd"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2996,15 +3026,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:49:56 GMT + - Wed, 20 May 2026 09:05:28 GMT Pragma: - no-cache RequestId: - - 30541fea-cb25-4100-b142-11910d6af61c + - 3a099473-e810-4e9d-b174-77f0f0a8de6b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3032,9 +3062,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/13bc1b7a-612b-49a6-a134-e09fb0e565a7/items/e6fa6c43-ec05-4374-8cd6-db7fc60e6bd6 + uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/items/fe37a758-3c42-4f8b-b6fd-dd4861d607c1 response: body: string: '' @@ -3050,11 +3080,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:49:56 GMT + - Wed, 20 May 2026 09:05:29 GMT Pragma: - no-cache RequestId: - - 42c97472-6980-425a-bec0-a0c5e7e692e9 + - 1e2bc56f-567c-4d01-a5f3-d5578282d2ac Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3080,16 +3110,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b5197fda-1783-4bc7-8b19-657840562dfd", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3098,15 +3131,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:49:57 GMT + - Wed, 20 May 2026 09:05:30 GMT Pragma: - no-cache RequestId: - - 528cf464-68c7-4c63-99bf-55683eecfd52 + - 0fd938f1-18b6-4b4f-a1a8-eda2efc69e7f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3132,13 +3165,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/13bc1b7a-612b-49a6-a134-e09fb0e565a7/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/folders?recursive=True response: body: - string: '{"value": [{"id": "89903e53-6be2-4ffa-9962-cb330ad26313", "displayName": - "fabcli000003", "workspaceId": "13bc1b7a-612b-49a6-a134-e09fb0e565a7"}]}' + string: '{"value": [{"id": "d9d3b476-096f-4584-9215-eef82a458f31", "displayName": + "fabcli000003", "workspaceId": "b5197fda-1783-4bc7-8b19-657840562dfd"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3147,15 +3180,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:49:58 GMT + - Wed, 20 May 2026 09:05:31 GMT Pragma: - no-cache RequestId: - - a6e1e390-66f8-4158-ad12-a10b8a64d769 + - 0500dc3a-ee83-4a42-963e-030ca6572546 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3183,9 +3216,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/13bc1b7a-612b-49a6-a134-e09fb0e565a7/folders/89903e53-6be2-4ffa-9962-cb330ad26313 + uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/folders/d9d3b476-096f-4584-9215-eef82a458f31 response: body: string: '' @@ -3201,11 +3234,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:49:59 GMT + - Wed, 20 May 2026 09:05:32 GMT Pragma: - no-cache RequestId: - - ee87325b-a079-48e6-86ad-ab105986dc94 + - 7b8d8adf-dbbf-41f2-97cb-bea2c6e1a41a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3231,16 +3264,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b5197fda-1783-4bc7-8b19-657840562dfd", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3249,15 +3285,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:50:00 GMT + - Wed, 20 May 2026 09:05:33 GMT Pragma: - no-cache RequestId: - - acb350ae-6b9f-4bcd-8f59-e88202449d4c + - 53213c21-1667-45f4-8b56-af790900f7e8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3283,53 +3319,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f/folders?recursive=True - response: - body: - string: '{"requestId": "96157820-b599-4cee-a523-584404ae9af7", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 7:50:45 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:50:01 GMT - RequestId: - - 96157820-b599-4cee-a523-584404ae9af7 - Retry-After: - - '44' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/53297cef-1d90-40ae-88f7-07170438ec2f/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders?recursive=True response: body: - string: '{"value": [{"id": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef", "displayName": - "fabcli000003", "workspaceId": "53297cef-1d90-40ae-88f7-07170438ec2f"}]}' + string: '{"value": [{"id": "b8e4fdb7-b278-425e-a72b-680794f1f91c", "displayName": + "fabcli000003", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3338,15 +3334,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:50:48 GMT + - Wed, 20 May 2026 09:05:34 GMT Pragma: - no-cache RequestId: - - cbe701d9-ac5c-4f85-8a85-31c3e2b8460f + - 07212dfa-9ea3-4525-a678-ae5f8fcf7fd9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3372,14 +3368,14 @@ 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/53297cef-1d90-40ae-88f7-07170438ec2f/items + uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/items response: body: - string: '{"value": [{"id": "bf2d1795-59e1-4e4c-a1ea-e07d1fe76b72", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "53297cef-1d90-40ae-88f7-07170438ec2f", "folderId": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef"}]}' + string: '{"value": [{"id": "1e1ad4c2-6eda-4517-af8a-3b40887b2500", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", + "folderId": "b8e4fdb7-b278-425e-a72b-680794f1f91c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3388,15 +3384,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '208' + - '193' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:50:49 GMT + - Wed, 20 May 2026 09:05:35 GMT Pragma: - no-cache RequestId: - - d1845735-3359-4db7-aa8b-eefc73ca6233 + - c416ed3e-107f-4910-af05-ec0b40e69a5d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3422,13 +3418,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/53297cef-1d90-40ae-88f7-07170438ec2f/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders?recursive=True response: body: - string: '{"value": [{"id": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef", "displayName": - "fabcli000003", "workspaceId": "53297cef-1d90-40ae-88f7-07170438ec2f"}]}' + string: '{"value": [{"id": "b8e4fdb7-b278-425e-a72b-680794f1f91c", "displayName": + "fabcli000003", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3437,15 +3433,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:50:50 GMT + - Wed, 20 May 2026 09:05:35 GMT Pragma: - no-cache RequestId: - - 0b65eb77-7405-40b8-880a-60394b3ed9ee + - ed3a007d-e740-4a23-a1f8-7a045190e965 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3473,9 +3469,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/53297cef-1d90-40ae-88f7-07170438ec2f/items/bf2d1795-59e1-4e4c-a1ea-e07d1fe76b72 + uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/items/1e1ad4c2-6eda-4517-af8a-3b40887b2500 response: body: string: '' @@ -3491,11 +3487,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:50:51 GMT + - Wed, 20 May 2026 09:05:36 GMT Pragma: - no-cache RequestId: - - 6889ceb8-c177-4b83-aafc-6cbfa50c0ccd + - 62129217-56b4-4984-8107-3d309ba544f6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3521,16 +3517,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b5197fda-1783-4bc7-8b19-657840562dfd", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3539,15 +3538,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:50:52 GMT + - Wed, 20 May 2026 09:05:38 GMT Pragma: - no-cache RequestId: - - 6f2f2812-3805-4fbd-9baf-13555d06c9f5 + - 593306b4-a8e8-4b53-869c-94f88339b38e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3573,13 +3572,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/53297cef-1d90-40ae-88f7-07170438ec2f/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders?recursive=True response: body: - string: '{"value": [{"id": "4cb417a0-e34f-4733-b1d8-045c6b4e09ef", "displayName": - "fabcli000003", "workspaceId": "53297cef-1d90-40ae-88f7-07170438ec2f"}]}' + string: '{"value": [{"id": "b8e4fdb7-b278-425e-a72b-680794f1f91c", "displayName": + "fabcli000003", "workspaceId": "fa6cae53-0719-4f18-b8e9-20f5d70568c7"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3588,15 +3587,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:50:53 GMT + - Wed, 20 May 2026 09:05:37 GMT Pragma: - no-cache RequestId: - - 441b7d5a-e37b-424f-9419-13d003791cee + - 950f8441-7c0b-4f8b-b5a4-9a2f614e92e8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3624,9 +3623,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/53297cef-1d90-40ae-88f7-07170438ec2f/folders/4cb417a0-e34f-4733-b1d8-045c6b4e09ef + uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/folders/b8e4fdb7-b278-425e-a72b-680794f1f91c response: body: string: '' @@ -3642,11 +3641,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:50:53 GMT + - Wed, 20 May 2026 09:05:38 GMT Pragma: - no-cache RequestId: - - 6a966642-2a9c-43fd-9ca4-1072fe60d2da + - 101238b7-f02a-42b0-a106-821cb5e687f4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3672,16 +3671,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "53297cef-1d90-40ae-88f7-07170438ec2f", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fa6cae53-0719-4f18-b8e9-20f5d70568c7", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b5197fda-1783-4bc7-8b19-657840562dfd", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3690,15 +3692,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:50:54 GMT + - Wed, 20 May 2026 09:05:39 GMT Pragma: - no-cache RequestId: - - 67005f91-c054-4194-8f1e-de50ad9ca314 + - 6d1476f8-350a-43e6-ae3a-24d8a7e6e779 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3724,9 +3726,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/53297cef-1d90-40ae-88f7-07170438ec2f/items + uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7/items response: body: string: '{"value": []}' @@ -3742,11 +3744,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:50:55 GMT + - Wed, 20 May 2026 09:05:40 GMT Pragma: - no-cache RequestId: - - 1d6ca9a1-902e-49ef-afc4-814681397e92 + - 5b38fb04-b8bb-40bb-80e7-e5540a0585ec Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3774,9 +3776,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/53297cef-1d90-40ae-88f7-07170438ec2f + uri: https://api.fabric.microsoft.com/v1/workspaces/fa6cae53-0719-4f18-b8e9-20f5d70568c7 response: body: string: '' @@ -3792,11 +3794,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:50:56 GMT + - Wed, 20 May 2026 09:05:41 GMT Pragma: - no-cache RequestId: - - 9f1e8c2b-6ba3-424a-a2a6-6b09a3ac4f04 + - 548d8995-176e-4305-b064-8917f916daa3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3822,15 +3824,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "13bc1b7a-612b-49a6-a134-e09fb0e565a7", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b5197fda-1783-4bc7-8b19-657840562dfd", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3839,15 +3843,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2840' + - '2658' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:50:56 GMT + - Wed, 20 May 2026 09:05:42 GMT Pragma: - no-cache RequestId: - - ed87060d-4a00-4c1d-a253-ce1681b0d2bd + - 73204dca-41e8-4263-a37e-e12d3d93b203 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3873,9 +3877,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/13bc1b7a-612b-49a6-a134-e09fb0e565a7/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd/items response: body: string: '{"value": []}' @@ -3891,11 +3895,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:50:58 GMT + - Wed, 20 May 2026 09:05:43 GMT Pragma: - no-cache RequestId: - - 2d041b60-65e5-4ce9-b3f0-9d03d7a1c827 + - e9090b2e-92c4-4bff-97f5-18984535425c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3923,9 +3927,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/13bc1b7a-612b-49a6-a134-e09fb0e565a7 + uri: https://api.fabric.microsoft.com/v1/workspaces/b5197fda-1783-4bc7-8b19-657840562dfd response: body: string: '' @@ -3941,11 +3945,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:50:59 GMT + - Wed, 20 May 2026 09:05:44 GMT Pragma: - no-cache RequestId: - - 30cb8035-2e92-4369-a3b6-47299e0dfb3c + - 906fb433-3937-45bf-87a9-78be6cca65ca 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[CosmosDBDatabase].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[CosmosDBDatabase].yaml index eefb6a77a..1c512a48b 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[CosmosDBDatabase].yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[CosmosDBDatabase].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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:33:19 GMT + - Wed, 20 May 2026 09:31:55 GMT Pragma: - no-cache RequestId: - - ea7be342-a06f-483f-8c5c-65873f75353f + - 24d20f0c-cc9d-4880-af14-866d3a82f217 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:33:19 GMT + - Wed, 20 May 2026 09:31:55 GMT Pragma: - no-cache RequestId: - - 251252c8-3e10-423f-af61-3a3644095b09 + - 117e8314-88b8-48f5-b4ee-94027db4330a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,7 +113,7 @@ 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/capacities response: @@ -127,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:33:25 GMT + - Wed, 20 May 2026 09:31:59 GMT Pragma: - no-cache RequestId: - - a29dd47b-fa0b-408f-9f73-3be2c9034595 + - 2b79af7a-030f-4e9a-8f4d-ce8dae46cbef Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -150,8 +152,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -160,16 +161,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -178,17 +180,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:33:34 GMT + - Wed, 20 May 2026 09:32:08 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d + - https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3 Pragma: - no-cache RequestId: - - 8e8858f5-386a-42b4-be79-c6a955520f72 + - de0960c9-e461-4fcb-802c-88dc2d488bfd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,15 +216,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -231,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2842' + - '2661' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:33:35 GMT + - Wed, 20 May 2026 09:32:08 GMT Pragma: - no-cache RequestId: - - 0f4df12a-e31e-4ac4-8878-264ce622a9f3 + - dce01d7f-ae3b-4fe1-b50c-9a2b472bcec8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,15 +269,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -282,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2842' + - '2661' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:33:36 GMT + - Wed, 20 May 2026 09:32:09 GMT Pragma: - no-cache RequestId: - - 476ffc44-27f6-424c-bf99-f186ace94a72 + - b02134e5-4dc7-4b4b-b887-9b7d187c4138 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,7 +322,7 @@ 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/capacities response: @@ -332,15 +338,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:33:42 GMT + - Wed, 20 May 2026 09:32:14 GMT Pragma: - no-cache RequestId: - - bd25330e-03e9-46bd-aa85-e6d8a69ac0f6 + - 62d092b4-cdcf-49ca-bf37-7c58ce323196 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -355,8 +361,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000002", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -365,16 +370,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "663c8802-1a86-4500-aa99-666f57823e08", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "1be9b197-3830-4d86-be77-c38ed1c9b370", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -383,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:33:49 GMT + - Wed, 20 May 2026 09:32:21 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/663c8802-1a86-4500-aa99-666f57823e08 + - https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370 Pragma: - no-cache RequestId: - - db8ebdab-8446-42bf-95d5-4a51e6b16190 + - f1c6917a-c160-42fa-9ea8-219fc1756452 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -419,16 +425,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "663c8802-1a86-4500-aa99-666f57823e08", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1be9b197-3830-4d86-be77-c38ed1c9b370", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -437,15 +446,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:33:50 GMT + - Wed, 20 May 2026 09:32:21 GMT Pragma: - no-cache RequestId: - - 6fdf37ad-8099-4c2a-ab8e-2f93d67dbcd8 + - 00d40ea8-cf1f-4bac-8bbd-ac272ce3b591 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -471,9 +480,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/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True response: body: string: '{"value": []}' @@ -489,11 +498,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:33:51 GMT + - Wed, 20 May 2026 09:32:23 GMT Pragma: - no-cache RequestId: - - 7d87a7db-301b-41dc-b02d-c0efaa35b716 + - ee2fa700-fd49-4f34-a8ce-ab33073b4d6f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -519,9 +528,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/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True response: body: string: '{"value": []}' @@ -537,11 +546,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:33:52 GMT + - Wed, 20 May 2026 09:32:23 GMT Pragma: - no-cache RequestId: - - 3837e4cc-4961-4c48-9c8f-69ebab6c5b57 + - 5fd358a0-45df-412a-a2f4-f8af6702b97d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -565,17 +574,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders response: body: - string: '{"id": "92de4c19-548f-430f-9778-e87a0a663d84", "displayName": "fabcli000003", - "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d"}' + string: '{"id": "2ce042fb-c657-44b2-85a9-be114cc17493", "displayName": "fabcli000003", + "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -584,17 +593,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '133' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:33:52 GMT + - Wed, 20 May 2026 09:32:25 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders/92de4c19-548f-430f-9778-e87a0a663d84 + - https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders/2ce042fb-c657-44b2-85a9-be114cc17493 Pragma: - no-cache RequestId: - - ec13044b-58b0-4d4f-80e9-b700f3af0f7a + - 6ed7ca38-2c5a-47e8-8a5e-25462bb254f2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -620,16 +629,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "663c8802-1a86-4500-aa99-666f57823e08", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1be9b197-3830-4d86-be77-c38ed1c9b370", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -638,15 +650,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:33:53 GMT + - Wed, 20 May 2026 09:32:25 GMT Pragma: - no-cache RequestId: - - 52d38c24-0a51-4a2a-a03b-2cca5f0fa321 + - 708f5f15-487d-4eac-961d-9c286161040b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -672,13 +684,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/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True response: body: - string: '{"value": [{"id": "92de4c19-548f-430f-9778-e87a0a663d84", "displayName": - "fabcli000003", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d"}]}' + string: '{"value": [{"id": "2ce042fb-c657-44b2-85a9-be114cc17493", "displayName": + "fabcli000003", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -691,11 +703,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:33:54 GMT + - Wed, 20 May 2026 09:32:26 GMT Pragma: - no-cache RequestId: - - 925fd9be-4897-40a8-ad2e-f6c23f026c6d + - 18bb407e-d954-499c-835c-739596300d44 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -721,9 +733,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/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/items response: body: string: '{"value": []}' @@ -739,11 +751,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:33:55 GMT + - Wed, 20 May 2026 09:32:27 GMT Pragma: - no-cache RequestId: - - c8b73454-e3dd-4f14-b856-3353b86f3004 + - c53b5c97-38cc-4eca-8254-25f0b35af003 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -769,9 +781,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/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/items response: body: string: '{"value": []}' @@ -787,11 +799,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:33:55 GMT + - Wed, 20 May 2026 09:32:27 GMT Pragma: - no-cache RequestId: - - 3182cb09-bcf8-4bed-921f-f22908d0aadb + - 4f46dd28-e107-48ea-91bb-8ca2520931cd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -806,8 +818,8 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000004", "type": - "CosmosDBDatabase", "folderId": "92de4c19-548f-430f-9778-e87a0a663d84"}' + body: '{"displayName": "fabcli000004", "type": "CosmosDBDatabase", "folderId": + "2ce042fb-c657-44b2-85a9-be114cc17493"}' headers: Accept: - '*/*' @@ -816,13 +828,13 @@ interactions: Connection: - keep-alive Content-Length: - - '148' + - '115' 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/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/cosmosDbDatabases + uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/cosmosDbDatabases response: body: string: 'null' @@ -838,15 +850,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:34:09 GMT + - Wed, 20 May 2026 09:32:29 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b6006268-073f-45e2-b4f8-64015c20edc5 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3c3f5083-7e5d-4084-b6cd-fd6c486720d6 Pragma: - no-cache RequestId: - - 1a1b3369-6d53-4611-a4f3-987867717a70 + - 3c727c42-8efc-466e-916d-36eb7ea68428 Retry-After: - '20' Strict-Transport-Security: @@ -860,7 +872,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - b6006268-073f-45e2-b4f8-64015c20edc5 + - 3c3f5083-7e5d-4084-b6cd-fd6c486720d6 status: code: 202 message: Accepted @@ -876,13 +888,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b6006268-073f-45e2-b4f8-64015c20edc5 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3c3f5083-7e5d-4084-b6cd-fd6c486720d6 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:33:57.5025274", - "lastUpdatedTimeUtc": "2026-02-06T08:34:18.4315259", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:32:29.4014396", + "lastUpdatedTimeUtc": "2026-05-20T09:32:38.6163162", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -892,17 +904,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '133' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:34:31 GMT + - Wed, 20 May 2026 09:32:50 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b6006268-073f-45e2-b4f8-64015c20edc5/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3c3f5083-7e5d-4084-b6cd-fd6c486720d6/result Pragma: - no-cache RequestId: - - c82f68bf-b483-4354-9170-e95dfc66129f + - 74893325-adbe-4f6d-8de6-1694be1ef129 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -910,7 +922,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - b6006268-073f-45e2-b4f8-64015c20edc5 + - 3c3f5083-7e5d-4084-b6cd-fd6c486720d6 status: code: 200 message: OK @@ -926,14 +938,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b6006268-073f-45e2-b4f8-64015c20edc5/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3c3f5083-7e5d-4084-b6cd-fd6c486720d6/result response: body: - string: '{"id": "fa0c9832-d9ba-43e8-9d4b-3abf4f1436f5", "type": "CosmosDBDatabase", - "displayName": "fabcli000004", "workspaceId": - "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "folderId": "92de4c19-548f-430f-9778-e87a0a663d84"}' + string: '{"id": "024305ac-06b1-4d39-a83e-3cf0bd50a65e", "type": "CosmosDBDatabase", + "displayName": "fabcli000004", "description": "", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", + "folderId": "2ce042fb-c657-44b2-85a9-be114cc17493"}' headers: Access-Control-Expose-Headers: - RequestId @@ -944,11 +956,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 08:34:32 GMT + - Wed, 20 May 2026 09:32:52 GMT Pragma: - no-cache RequestId: - - 3d550f9f-cd88-492c-b1bb-32d42baeb069 + - d0202e8b-5ae0-40bd-adf7-0e0d35baacc4 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -972,16 +984,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "663c8802-1a86-4500-aa99-666f57823e08", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1be9b197-3830-4d86-be77-c38ed1c9b370", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -990,15 +1005,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:34:33 GMT + - Wed, 20 May 2026 09:32:53 GMT Pragma: - no-cache RequestId: - - 4bc13363-3165-4a56-baf4-1b4e5bbf3d9c + - 75c426b3-ac1d-410a-b7ee-c7c846a88bf5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1024,13 +1039,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/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True response: body: - string: '{"value": [{"id": "92de4c19-548f-430f-9778-e87a0a663d84", "displayName": - "fabcli000003", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d"}]}' + string: '{"value": [{"id": "2ce042fb-c657-44b2-85a9-be114cc17493", "displayName": + "fabcli000003", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1043,11 +1058,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:34:34 GMT + - Wed, 20 May 2026 09:32:53 GMT Pragma: - no-cache RequestId: - - 37e1caf4-c3d0-48e2-bb37-52634dacdee5 + - 9aed208f-b4eb-4b42-89d6-8b2aba17f35e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1073,16 +1088,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "663c8802-1a86-4500-aa99-666f57823e08", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1be9b197-3830-4d86-be77-c38ed1c9b370", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1091,15 +1109,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:34:35 GMT + - Wed, 20 May 2026 09:32:54 GMT Pragma: - no-cache RequestId: - - 1f78e48d-94ea-4986-9c52-2cb4f5de5f0e + - 4abcc4e8-f4a7-4999-87b3-ed5aef960062 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1125,16 +1143,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "663c8802-1a86-4500-aa99-666f57823e08", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1be9b197-3830-4d86-be77-c38ed1c9b370", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1143,15 +1164,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:34:36 GMT + - Wed, 20 May 2026 09:32:55 GMT Pragma: - no-cache RequestId: - - 8bb4180c-430e-4dc5-b7c4-ac9435ac9e86 + - 4f4b6405-a3f4-4bcd-a9e7-820f4001a978 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1177,9 +1198,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/663c8802-1a86-4500-aa99-666f57823e08/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders?recursive=True response: body: string: '{"value": []}' @@ -1195,11 +1216,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:34:37 GMT + - Wed, 20 May 2026 09:32:56 GMT Pragma: - no-cache RequestId: - - 2e049832-1042-4510-bd99-c7ff65f62bdc + - a9a87187-2bc2-4bf0-b11c-6ae60c83468f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1225,9 +1246,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/663c8802-1a86-4500-aa99-666f57823e08/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders?recursive=True response: body: string: '{"value": []}' @@ -1243,11 +1264,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:34:37 GMT + - Wed, 20 May 2026 09:32:57 GMT Pragma: - no-cache RequestId: - - e1a34eba-6b9b-4bf4-889e-e8c09dbb65c3 + - e89388ef-f1fa-42cb-8402-9495a83cbfa9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1271,17 +1292,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/663c8802-1a86-4500-aa99-666f57823e08/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders response: body: - string: '{"id": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2", "displayName": "fabcli000003", - "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08"}' + string: '{"id": "221f066b-5f19-48b1-8833-357e29b0c051", "displayName": "fabcli000003", + "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -1290,17 +1311,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '133' + - '134' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:34:38 GMT + - Wed, 20 May 2026 09:32:58 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/663c8802-1a86-4500-aa99-666f57823e08/folders/ec965fb9-2de0-40fe-a41e-73d3a79c8df2 + - https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders/221f066b-5f19-48b1-8833-357e29b0c051 Pragma: - no-cache RequestId: - - af713adb-fa88-43bb-8da3-d0a833c4c6b3 + - 82824d99-58be-4238-8b4e-6415263ad04d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1326,14 +1347,14 @@ 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/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/items response: body: - string: '{"value": [{"id": "fa0c9832-d9ba-43e8-9d4b-3abf4f1436f5", "type": "CosmosDBDatabase", - "displayName": "fabcli000004", "workspaceId": - "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "folderId": "92de4c19-548f-430f-9778-e87a0a663d84"}]}' + string: '{"value": [{"id": "024305ac-06b1-4d39-a83e-3cf0bd50a65e", "type": "CosmosDBDatabase", + "displayName": "fabcli000004", "description": "", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", + "folderId": "2ce042fb-c657-44b2-85a9-be114cc17493"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1342,15 +1363,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '215' + - '206' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:34:39 GMT + - Wed, 20 May 2026 09:32:58 GMT Pragma: - no-cache RequestId: - - 78811538-ea2d-43b9-8076-da257fa9c47d + - 518f9a5e-1c04-4463-a7c4-3859e9a9e449 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1376,13 +1397,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/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True response: body: - string: '{"value": [{"id": "92de4c19-548f-430f-9778-e87a0a663d84", "displayName": - "fabcli000003", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d"}]}' + string: '{"value": [{"id": "2ce042fb-c657-44b2-85a9-be114cc17493", "displayName": + "fabcli000003", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1395,11 +1416,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:34:40 GMT + - Wed, 20 May 2026 09:33:00 GMT Pragma: - no-cache RequestId: - - 04388baf-b707-490d-b762-e5867dadc1a8 + - e8d6dc5a-e42e-40c9-9a8b-e68cef67d79f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1425,13 +1446,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/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True response: body: - string: '{"value": [{"id": "92de4c19-548f-430f-9778-e87a0a663d84", "displayName": - "fabcli000003", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d"}]}' + string: '{"value": [{"id": "2ce042fb-c657-44b2-85a9-be114cc17493", "displayName": + "fabcli000003", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1444,11 +1465,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:34:41 GMT + - Wed, 20 May 2026 09:33:01 GMT Pragma: - no-cache RequestId: - - 64bdbca0-7d41-4133-af93-3cb0f68b9536 + - 48557f62-161a-4100-9ef1-bb2fc270eabb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1474,14 +1495,16 @@ 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/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/items response: body: - string: '{"value": [{"id": "fa0c9832-d9ba-43e8-9d4b-3abf4f1436f5", "type": "CosmosDBDatabase", - "displayName": "fabcli000004", "workspaceId": - "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "folderId": "92de4c19-548f-430f-9778-e87a0a663d84"}]}' + string: '{"value": [{"id": "359d312d-1c20-4498-8545-59b5a1acfc65", "type": "SQLEndpoint", + "displayName": "fabcli000004", "description": "", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", + "folderId": "2ce042fb-c657-44b2-85a9-be114cc17493"}, {"id": "024305ac-06b1-4d39-a83e-3cf0bd50a65e", + "type": "CosmosDBDatabase", "displayName": "fabcli000004", "description": + "", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "folderId": "2ce042fb-c657-44b2-85a9-be114cc17493"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1490,15 +1513,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '215' + - '251' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:34:42 GMT + - Wed, 20 May 2026 09:33:02 GMT Pragma: - no-cache RequestId: - - 1ea76add-318b-4646-a2e4-f6cf82b58627 + - 54389e6e-885f-4f9c-a66b-78881362c962 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1524,13 +1547,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/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True response: body: - string: '{"value": [{"id": "92de4c19-548f-430f-9778-e87a0a663d84", "displayName": - "fabcli000003", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d"}]}' + string: '{"value": [{"id": "2ce042fb-c657-44b2-85a9-be114cc17493", "displayName": + "fabcli000003", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1543,11 +1566,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:34:42 GMT + - Wed, 20 May 2026 09:33:02 GMT Pragma: - no-cache RequestId: - - 22950a17-d65f-4849-bbbf-69da32204dd2 + - 52690fae-06e6-4fcb-91c0-747f59f814dc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1573,13 +1596,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/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True response: body: - string: '{"value": [{"id": "92de4c19-548f-430f-9778-e87a0a663d84", "displayName": - "fabcli000003", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d"}]}' + string: '{"value": [{"id": "2ce042fb-c657-44b2-85a9-be114cc17493", "displayName": + "fabcli000003", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1592,11 +1615,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:34:44 GMT + - Wed, 20 May 2026 09:33:03 GMT Pragma: - no-cache RequestId: - - 7ba5ca4b-0bc8-4560-9ff5-5bd98018fb80 + - 02ee136f-c9cb-4904-8e16-afa2f56d8e56 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1622,16 +1645,68 @@ 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/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True + response: + body: + string: '{"value": [{"id": "2ce042fb-c657-44b2-85a9-be114cc17493", "displayName": + "fabcli000003", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3"}]}' + 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: + - Wed, 20 May 2026 09:33:03 GMT + Pragma: + - no-cache + RequestId: + - 4b7df644-0829-4505-851c-758d86207011 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "663c8802-1a86-4500-aa99-666f57823e08", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1be9b197-3830-4d86-be77-c38ed1c9b370", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1640,15 +1715,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:34:45 GMT + - Wed, 20 May 2026 09:33:05 GMT Pragma: - no-cache RequestId: - - 44d99c6c-28c2-42f2-b11c-6cfd55c64436 + - 146f59e1-b012-4203-9a18-bc92b5883c12 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1674,13 +1749,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/663c8802-1a86-4500-aa99-666f57823e08/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders?recursive=True response: body: - string: '{"value": [{"id": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2", "displayName": - "fabcli000003", "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08"}]}' + string: '{"value": [{"id": "221f066b-5f19-48b1-8833-357e29b0c051", "displayName": + "fabcli000003", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1689,15 +1764,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:34:45 GMT + - Wed, 20 May 2026 09:33:06 GMT Pragma: - no-cache RequestId: - - ae7dae60-86c6-46fd-92eb-296c61de8dd2 + - 38d0e3c8-b28b-475b-8668-fef6248f5386 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1723,9 +1798,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/663c8802-1a86-4500-aa99-666f57823e08/items + uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/items response: body: string: '{"value": []}' @@ -1741,11 +1816,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:34:46 GMT + - Wed, 20 May 2026 09:33:07 GMT Pragma: - no-cache RequestId: - - 9d31ca17-b1d3-4444-9d35-f9bc762cf8c5 + - c078b83e-dc44-4fb4-981c-0bdc4dc28635 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1771,9 +1846,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/663c8802-1a86-4500-aa99-666f57823e08/items + uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/items response: body: string: '{"value": []}' @@ -1789,11 +1864,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:34:47 GMT + - Wed, 20 May 2026 09:33:07 GMT Pragma: - no-cache RequestId: - - 02a744ff-e576-43de-bc6f-aa906fa15e27 + - e072dd19-c15d-4c51-814b-1af2529148d7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1819,9 +1894,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/663c8802-1a86-4500-aa99-666f57823e08/items + uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/items response: body: string: '{"value": []}' @@ -1837,11 +1912,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:34:48 GMT + - Wed, 20 May 2026 09:33:08 GMT Pragma: - no-cache RequestId: - - 3830632e-61ac-493f-8683-751a243d45f8 + - 751d5d0d-ea4d-4a40-9d78-08f3fa454b9b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1867,14 +1942,14 @@ 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/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/items/fa0c9832-d9ba-43e8-9d4b-3abf4f1436f5 + uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/items/024305ac-06b1-4d39-a83e-3cf0bd50a65e response: body: - string: '{"id": "fa0c9832-d9ba-43e8-9d4b-3abf4f1436f5", "type": "CosmosDBDatabase", - "displayName": "fabcli000004", "workspaceId": - "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "folderId": "92de4c19-548f-430f-9778-e87a0a663d84"}' + string: '{"id": "024305ac-06b1-4d39-a83e-3cf0bd50a65e", "type": "CosmosDBDatabase", + "displayName": "fabcli000004", "description": "", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", + "folderId": "2ce042fb-c657-44b2-85a9-be114cc17493"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1883,17 +1958,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '202' + - '195' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:34:48 GMT + - Wed, 20 May 2026 09:33:10 GMT ETag: - '""' Pragma: - no-cache RequestId: - - ddd1066c-bc1d-4c19-920e-6e163d3ee061 + - 652157cf-3d22-471b-b158-4c83f8df7b0e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1921,9 +1996,9 @@ interactions: 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/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/items/fa0c9832-d9ba-43e8-9d4b-3abf4f1436f5/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/items/024305ac-06b1-4d39-a83e-3cf0bd50a65e/getDefinition response: body: string: 'null' @@ -1939,13 +2014,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:34:49 GMT + - Wed, 20 May 2026 09:33:11 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cc0b5f97-aea0-4d18-aff2-6badcdc70247 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cbec2339-e3dd-46bc-95eb-f8600822cac8 Pragma: - no-cache RequestId: - - 94f5acea-e082-4821-ba69-2949d23301ea + - b652654e-95c1-44fd-952e-8630917886f0 Retry-After: - '20' Strict-Transport-Security: @@ -1959,7 +2034,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - cc0b5f97-aea0-4d18-aff2-6badcdc70247 + - cbec2339-e3dd-46bc-95eb-f8600822cac8 status: code: 202 message: Accepted @@ -1975,13 +2050,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cc0b5f97-aea0-4d18-aff2-6badcdc70247 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cbec2339-e3dd-46bc-95eb-f8600822cac8 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:34:50.3296944", - "lastUpdatedTimeUtc": "2026-02-06T08:34:51.0640792", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:33:11.4952402", + "lastUpdatedTimeUtc": "2026-05-20T09:33:12.3007295", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1991,17 +2066,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:35:12 GMT + - Wed, 20 May 2026 09:33:31 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cc0b5f97-aea0-4d18-aff2-6badcdc70247/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cbec2339-e3dd-46bc-95eb-f8600822cac8/result Pragma: - no-cache RequestId: - - 2df5f342-ecc2-4bf2-947a-e83164333221 + - a300fac5-fa73-489b-b2bd-f69e4cacc460 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2009,7 +2084,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - cc0b5f97-aea0-4d18-aff2-6badcdc70247 + - cbec2339-e3dd-46bc-95eb-f8600822cac8 status: code: 200 message: OK @@ -2025,13 +2100,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cc0b5f97-aea0-4d18-aff2-6badcdc70247/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cbec2339-e3dd-46bc-95eb-f8600822cac8/result response: body: string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL0Nvc21vc0RCL2RlZmluaXRpb24vQ29zbW9zREIvMi4wLjAvc2NoZW1hLmpzb24iLAogICJjb250YWluZXJzIjogW10KfQ==", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkNvc21vc0RCRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwNCIsCiAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkNvc21vc0RCRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwNCIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -2043,11 +2118,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 08:35:12 GMT + - Wed, 20 May 2026 09:33:32 GMT Pragma: - no-cache RequestId: - - 9e0a507e-c294-43fe-a85c-2b53f1daf012 + - fa681711-f4cd-4f79-90ac-8cb3094deaf8 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -2060,11 +2135,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "CosmosDBDatabase", "displayName": - "fabcli000004", "definition": {"parts": [{"path": "definition.json", "payload": - "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL0Nvc21vc0RCL2RlZmluaXRpb24vQ29zbW9zREIvMi4wLjAvc2NoZW1hLmpzb24iLAogICJjb250YWluZXJzIjogW10KfQ==", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkNvc21vc0RCRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwNCIsCiAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", - "payloadType": "InlineBase64"}]}, "folderId": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2"}' + body: '{"type": "CosmosDBDatabase", "displayName": "fabcli000004", "definition": + {"parts": [{"path": "definition.json", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL0Nvc21vc0RCL2RlZmluaXRpb24vQ29zbW9zREIvMi4wLjAvc2NoZW1hLmpzb24iLAogICJjb250YWluZXJzIjogW10KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkNvc21vc0RCRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwNCIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "payloadType": "InlineBase64"}]}, "folderId": "221f066b-5f19-48b1-8833-357e29b0c051"}' headers: Accept: - '*/*' @@ -2073,13 +2147,13 @@ interactions: Connection: - keep-alive Content-Length: - - '975' + - '894' 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/663c8802-1a86-4500-aa99-666f57823e08/items + uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/items response: body: string: 'null' @@ -2095,15 +2169,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:35:14 GMT + - Wed, 20 May 2026 09:33:35 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aa8a03a4-7f67-4a41-a369-1fafaebec146 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c25e7a7a-e71d-4130-bbc7-09d93993524b Pragma: - no-cache RequestId: - - 2456f0ad-5568-4266-aa24-0adb295d6335 + - d03923fe-596b-4b1c-bf3e-925416b57f07 Retry-After: - '20' Strict-Transport-Security: @@ -2117,7 +2191,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - aa8a03a4-7f67-4a41-a369-1fafaebec146 + - c25e7a7a-e71d-4130-bbc7-09d93993524b status: code: 202 message: Accepted @@ -2133,13 +2207,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aa8a03a4-7f67-4a41-a369-1fafaebec146 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c25e7a7a-e71d-4130-bbc7-09d93993524b response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:35:14.1944951", - "lastUpdatedTimeUtc": "2026-02-06T08:35:33.7887645", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:33:34.3518948", + "lastUpdatedTimeUtc": "2026-05-20T09:33:54.9996715", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -2153,13 +2227,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:35:36 GMT + - Wed, 20 May 2026 09:33:56 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aa8a03a4-7f67-4a41-a369-1fafaebec146/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c25e7a7a-e71d-4130-bbc7-09d93993524b/result Pragma: - no-cache RequestId: - - 039b4cb9-44c7-4dd2-b288-d3a6c38e6ab6 + - b3a993c1-4f34-43bc-b8cb-20996c6cbf72 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2167,7 +2241,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - aa8a03a4-7f67-4a41-a369-1fafaebec146 + - c25e7a7a-e71d-4130-bbc7-09d93993524b status: code: 200 message: OK @@ -2183,14 +2257,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aa8a03a4-7f67-4a41-a369-1fafaebec146/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c25e7a7a-e71d-4130-bbc7-09d93993524b/result response: body: - string: '{"id": "f88a16d6-4032-4758-a41b-375bae1c6681", "type": "CosmosDBDatabase", - "displayName": "fabcli000004", "workspaceId": - "663c8802-1a86-4500-aa99-666f57823e08", "folderId": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2"}' + string: '{"id": "1735cac3-1016-489f-9af2-5cfea3748ac3", "type": "CosmosDBDatabase", + "displayName": "fabcli000004", "description": "", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370", + "folderId": "221f066b-5f19-48b1-8833-357e29b0c051"}' headers: Access-Control-Expose-Headers: - RequestId @@ -2201,11 +2275,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 08:35:37 GMT + - Wed, 20 May 2026 09:33:57 GMT Pragma: - no-cache RequestId: - - b1d36381-3076-49d0-b68f-787a018c5978 + - 093c283f-ec1d-4f1c-8a3e-607976e5bbbd Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -2229,16 +2303,16 @@ 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/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/items response: body: - string: '{"value": [{"id": "3f8e2ecf-f3d1-4627-bc61-daf66505ef16", "type": "SQLEndpoint", - "displayName": "fabcli000004", "description": "", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", - "folderId": "92de4c19-548f-430f-9778-e87a0a663d84"}, {"id": "fa0c9832-d9ba-43e8-9d4b-3abf4f1436f5", - "type": "CosmosDBDatabase", "displayName": "fabcli000004", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "folderId": - "92de4c19-548f-430f-9778-e87a0a663d84"}]}' + string: '{"value": [{"id": "359d312d-1c20-4498-8545-59b5a1acfc65", "type": "SQLEndpoint", + "displayName": "fabcli000004", "description": "", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", + "folderId": "2ce042fb-c657-44b2-85a9-be114cc17493"}, {"id": "024305ac-06b1-4d39-a83e-3cf0bd50a65e", + "type": "CosmosDBDatabase", "displayName": "fabcli000004", "description": + "", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "folderId": "2ce042fb-c657-44b2-85a9-be114cc17493"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2247,15 +2321,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '263' + - '251' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:35:38 GMT + - Wed, 20 May 2026 09:33:57 GMT Pragma: - no-cache RequestId: - - dc495b0d-0f1b-4ec8-ab4c-63fe3f87a3e5 + - 69bfa841-6895-4f52-95c2-3017d1677f90 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2281,13 +2355,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/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True response: body: - string: '{"value": [{"id": "92de4c19-548f-430f-9778-e87a0a663d84", "displayName": - "fabcli000003", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d"}]}' + string: '{"value": [{"id": "2ce042fb-c657-44b2-85a9-be114cc17493", "displayName": + "fabcli000003", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2300,11 +2374,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:35:39 GMT + - Wed, 20 May 2026 09:33:59 GMT Pragma: - no-cache RequestId: - - 4c1bb255-a14c-4bb3-bef1-8544ac47d487 + - 4e7f13a8-c2a4-4331-8469-5480178b8616 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2330,13 +2404,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/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True response: body: - string: '{"value": [{"id": "92de4c19-548f-430f-9778-e87a0a663d84", "displayName": - "fabcli000003", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d"}]}' + string: '{"value": [{"id": "2ce042fb-c657-44b2-85a9-be114cc17493", "displayName": + "fabcli000003", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2349,11 +2423,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:35:39 GMT + - Wed, 20 May 2026 09:34:00 GMT Pragma: - no-cache RequestId: - - 239b6e33-d37d-4a75-8877-c50a1e2b4e28 + - ce695b17-688a-4bbe-b032-3ae58c172380 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2379,13 +2453,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/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True response: body: - string: '{"value": [{"id": "92de4c19-548f-430f-9778-e87a0a663d84", "displayName": - "fabcli000003", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d"}]}' + string: '{"value": [{"id": "2ce042fb-c657-44b2-85a9-be114cc17493", "displayName": + "fabcli000003", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2398,11 +2472,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:35:40 GMT + - Wed, 20 May 2026 09:34:00 GMT Pragma: - no-cache RequestId: - - 8fd179dc-b592-4e96-8187-1331897d1a22 + - eb37af3a-c118-4b0f-be09-cff934b3c504 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2428,16 +2502,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "663c8802-1a86-4500-aa99-666f57823e08", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1be9b197-3830-4d86-be77-c38ed1c9b370", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2446,15 +2523,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:35:41 GMT + - Wed, 20 May 2026 09:34:01 GMT Pragma: - no-cache RequestId: - - b991bca9-acba-459e-9746-6af16acd90a5 + - 25d1a146-3a4e-46f3-8f62-af9224dbb1f2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2480,14 +2557,14 @@ 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/663c8802-1a86-4500-aa99-666f57823e08/items + uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/items response: body: - string: '{"value": [{"id": "f88a16d6-4032-4758-a41b-375bae1c6681", "type": "CosmosDBDatabase", - "displayName": "fabcli000004", "workspaceId": - "663c8802-1a86-4500-aa99-666f57823e08", "folderId": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2"}]}' + string: '{"value": [{"id": "1735cac3-1016-489f-9af2-5cfea3748ac3", "type": "CosmosDBDatabase", + "displayName": "fabcli000004", "description": "", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370", + "folderId": "221f066b-5f19-48b1-8833-357e29b0c051"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2496,15 +2573,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '215' + - '206' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:35:42 GMT + - Wed, 20 May 2026 09:34:02 GMT Pragma: - no-cache RequestId: - - 2096642f-7efd-41f3-a4b7-c42e188fe4e3 + - aeb3df57-9652-4431-b5e3-de4c25fcac6e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2530,13 +2607,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/663c8802-1a86-4500-aa99-666f57823e08/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders?recursive=True response: body: - string: '{"value": [{"id": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2", "displayName": - "fabcli000003", "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08"}]}' + string: '{"value": [{"id": "221f066b-5f19-48b1-8833-357e29b0c051", "displayName": + "fabcli000003", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2545,15 +2622,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:35:43 GMT + - Wed, 20 May 2026 09:34:03 GMT Pragma: - no-cache RequestId: - - a5e1dfff-23e9-40e3-9ba6-24ce8e642ffc + - 5d1b8f0f-dd2a-4164-8058-5b02dda38823 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2579,13 +2656,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/663c8802-1a86-4500-aa99-666f57823e08/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders?recursive=True response: body: - string: '{"value": [{"id": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2", "displayName": - "fabcli000003", "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08"}]}' + string: '{"value": [{"id": "221f066b-5f19-48b1-8833-357e29b0c051", "displayName": + "fabcli000003", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2594,15 +2671,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:35:44 GMT + - Wed, 20 May 2026 09:34:04 GMT Pragma: - no-cache RequestId: - - 2fa841fb-d24c-478c-87a5-1dcc0fb59e1d + - b2d577fa-d9ca-472a-ab06-bdd2a949d834 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2628,16 +2705,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "663c8802-1a86-4500-aa99-666f57823e08", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1be9b197-3830-4d86-be77-c38ed1c9b370", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2646,15 +2726,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:35:44 GMT + - Wed, 20 May 2026 09:34:05 GMT Pragma: - no-cache RequestId: - - 6584b12a-fda8-4c33-aeb1-9d9052aa13fb + - 4c8e6d9d-5827-4389-bec5-fa6f297c065b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2680,13 +2760,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/663c8802-1a86-4500-aa99-666f57823e08/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders?recursive=True response: body: - string: '{"value": [{"id": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2", "displayName": - "fabcli000003", "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08"}]}' + string: '{"value": [{"id": "221f066b-5f19-48b1-8833-357e29b0c051", "displayName": + "fabcli000003", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2695,15 +2775,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:35:45 GMT + - Wed, 20 May 2026 09:34:05 GMT Pragma: - no-cache RequestId: - - 98f3429d-345b-4d8f-a5a3-717119a72aa4 + - 2c1eff95-8198-4b74-916a-00c01745b984 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2729,16 +2809,16 @@ 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/663c8802-1a86-4500-aa99-666f57823e08/items + uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/items response: body: - string: '{"value": [{"id": "e9cf5569-e6fd-46e9-a211-e58ea25be022", "type": "SQLEndpoint", - "displayName": "fabcli000004", "description": "", "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08", - "folderId": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2"}, {"id": "f88a16d6-4032-4758-a41b-375bae1c6681", - "type": "CosmosDBDatabase", "displayName": "fabcli000004", "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08", "folderId": - "ec965fb9-2de0-40fe-a41e-73d3a79c8df2"}]}' + string: '{"value": [{"id": "7e23b2f0-ca5e-4c9f-9f43-5ba06117649c", "type": "SQLEndpoint", + "displayName": "fabcli000004", "description": "", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370", + "folderId": "221f066b-5f19-48b1-8833-357e29b0c051"}, {"id": "1735cac3-1016-489f-9af2-5cfea3748ac3", + "type": "CosmosDBDatabase", "displayName": "fabcli000004", "description": + "", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370", "folderId": "221f066b-5f19-48b1-8833-357e29b0c051"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2747,15 +2827,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '263' + - '250' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:35:46 GMT + - Wed, 20 May 2026 09:34:06 GMT Pragma: - no-cache RequestId: - - 5f4fc3e3-34bf-4339-b686-b9f554bfa3bc + - e53f59a9-3b17-40fc-9fed-4ac189c1ee0c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2781,13 +2861,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/663c8802-1a86-4500-aa99-666f57823e08/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders?recursive=True response: body: - string: '{"value": [{"id": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2", "displayName": - "fabcli000003", "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08"}]}' + string: '{"value": [{"id": "221f066b-5f19-48b1-8833-357e29b0c051", "displayName": + "fabcli000003", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2796,15 +2876,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:35:47 GMT + - Wed, 20 May 2026 09:34:07 GMT Pragma: - no-cache RequestId: - - d93e0ed3-03c7-4889-9b81-b547e13e67dd + - 261a826e-c88e-4fb2-a0cb-9c321e9681bb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2830,13 +2910,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/663c8802-1a86-4500-aa99-666f57823e08/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders?recursive=True response: body: - string: '{"value": [{"id": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2", "displayName": - "fabcli000003", "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08"}]}' + string: '{"value": [{"id": "221f066b-5f19-48b1-8833-357e29b0c051", "displayName": + "fabcli000003", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2845,15 +2925,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:35:47 GMT + - Wed, 20 May 2026 09:34:08 GMT Pragma: - no-cache RequestId: - - d95d1370-7a81-455c-8581-714ceb9b3410 + - 2dc64659-7b47-4210-b2d4-5285ca4afc0b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2879,13 +2959,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/663c8802-1a86-4500-aa99-666f57823e08/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders?recursive=True response: body: - string: '{"value": [{"id": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2", "displayName": - "fabcli000003", "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08"}]}' + string: '{"value": [{"id": "221f066b-5f19-48b1-8833-357e29b0c051", "displayName": + "fabcli000003", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2894,15 +2974,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:35:48 GMT + - Wed, 20 May 2026 09:34:09 GMT Pragma: - no-cache RequestId: - - cdb95b09-7a0c-4338-81fa-b217eeebfe3a + - a47600ce-6d63-4e0e-88fe-e1009c6e1a72 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2928,16 +3008,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "663c8802-1a86-4500-aa99-666f57823e08", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1be9b197-3830-4d86-be77-c38ed1c9b370", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2946,15 +3029,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:35:50 GMT + - Wed, 20 May 2026 09:34:10 GMT Pragma: - no-cache RequestId: - - 16335a5e-5267-4372-a6a0-e8ccd28d88e0 + - 1aae7c11-4b93-455c-84ec-c19e8c51e09c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2980,13 +3063,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/663c8802-1a86-4500-aa99-666f57823e08/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders?recursive=True response: body: - string: '{"value": [{"id": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2", "displayName": - "fabcli000003", "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08"}]}' + string: '{"value": [{"id": "221f066b-5f19-48b1-8833-357e29b0c051", "displayName": + "fabcli000003", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2995,15 +3078,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:35:50 GMT + - Wed, 20 May 2026 09:34:11 GMT Pragma: - no-cache RequestId: - - d805ffd3-bde2-4139-b5f6-a304fc1d2831 + - 1bab0d78-3bc5-4c56-9bc8-3657029bcb25 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3029,16 +3112,16 @@ 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/663c8802-1a86-4500-aa99-666f57823e08/items + uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/items response: body: - string: '{"value": [{"id": "e9cf5569-e6fd-46e9-a211-e58ea25be022", "type": "SQLEndpoint", - "displayName": "fabcli000004", "description": "", "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08", - "folderId": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2"}, {"id": "f88a16d6-4032-4758-a41b-375bae1c6681", - "type": "CosmosDBDatabase", "displayName": "fabcli000004", "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08", "folderId": - "ec965fb9-2de0-40fe-a41e-73d3a79c8df2"}]}' + string: '{"value": [{"id": "7e23b2f0-ca5e-4c9f-9f43-5ba06117649c", "type": "SQLEndpoint", + "displayName": "fabcli000004", "description": "", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370", + "folderId": "221f066b-5f19-48b1-8833-357e29b0c051"}, {"id": "1735cac3-1016-489f-9af2-5cfea3748ac3", + "type": "CosmosDBDatabase", "displayName": "fabcli000004", "description": + "", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370", "folderId": "221f066b-5f19-48b1-8833-357e29b0c051"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3047,15 +3130,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '263' + - '250' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:35:50 GMT + - Wed, 20 May 2026 09:34:11 GMT Pragma: - no-cache RequestId: - - 127651b1-8adb-4af6-a894-967e8988a60b + - 92a957f1-e6c7-4818-94bd-d9e1e86a523e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3081,53 +3164,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/663c8802-1a86-4500-aa99-666f57823e08/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders?recursive=True response: body: - string: '{"requestId": "369563a2-ddd0-411d-8a38-84eac5b6f154", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 8:36:39 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 08:35:51 GMT - RequestId: - - 369563a2-ddd0-411d-8a38-84eac5b6f154 - Retry-After: - - '47' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/663c8802-1a86-4500-aa99-666f57823e08/folders?recursive=True - response: - body: - string: '{"value": [{"id": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2", "displayName": - "fabcli000003", "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08"}]}' + string: '{"value": [{"id": "221f066b-5f19-48b1-8833-357e29b0c051", "displayName": + "fabcli000003", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3136,15 +3179,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:36:42 GMT + - Wed, 20 May 2026 09:34:12 GMT Pragma: - no-cache RequestId: - - 6aca3854-13e4-40b9-9253-21a104658422 + - 9c5018ea-2e0b-44fe-a388-6f2ea8f116b4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3170,13 +3213,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/663c8802-1a86-4500-aa99-666f57823e08/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders?recursive=True response: body: - string: '{"value": [{"id": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2", "displayName": - "fabcli000003", "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08"}]}' + string: '{"value": [{"id": "221f066b-5f19-48b1-8833-357e29b0c051", "displayName": + "fabcli000003", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3185,15 +3228,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:36:42 GMT + - Wed, 20 May 2026 09:34:14 GMT Pragma: - no-cache RequestId: - - c707c679-49d8-4ada-b502-4069aacd8598 + - ad52a29f-568b-46fb-90d9-505f1706c19b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3221,9 +3264,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/663c8802-1a86-4500-aa99-666f57823e08/items/f88a16d6-4032-4758-a41b-375bae1c6681 + uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/items/1735cac3-1016-489f-9af2-5cfea3748ac3 response: body: string: '' @@ -3239,11 +3282,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:36:44 GMT + - Wed, 20 May 2026 09:34:14 GMT Pragma: - no-cache RequestId: - - c743e75a-b6bd-458f-ae1d-6b3370a79eef + - f7c625b0-fbe5-40e7-8b2c-6f94ad882c5b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3269,16 +3312,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "663c8802-1a86-4500-aa99-666f57823e08", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1be9b197-3830-4d86-be77-c38ed1c9b370", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3287,15 +3333,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:36:44 GMT + - Wed, 20 May 2026 09:34:15 GMT Pragma: - no-cache RequestId: - - 14560d90-7e14-450c-abc2-0600b7e6eb82 + - 67166eb9-120f-4724-bdba-20d99a1b7b66 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3321,13 +3367,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/663c8802-1a86-4500-aa99-666f57823e08/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders?recursive=True response: body: - string: '{"value": [{"id": "ec965fb9-2de0-40fe-a41e-73d3a79c8df2", "displayName": - "fabcli000003", "workspaceId": "663c8802-1a86-4500-aa99-666f57823e08"}]}' + string: '{"value": [{"id": "221f066b-5f19-48b1-8833-357e29b0c051", "displayName": + "fabcli000003", "workspaceId": "1be9b197-3830-4d86-be77-c38ed1c9b370"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3336,15 +3382,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:36:45 GMT + - Wed, 20 May 2026 09:34:16 GMT Pragma: - no-cache RequestId: - - 2821506f-6c13-4d93-9dfb-6aa32f4bd0cc + - e82a065f-1ea2-47d3-b17d-df1984173851 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3372,9 +3418,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/663c8802-1a86-4500-aa99-666f57823e08/folders/ec965fb9-2de0-40fe-a41e-73d3a79c8df2 + uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/folders/221f066b-5f19-48b1-8833-357e29b0c051 response: body: string: '' @@ -3390,11 +3436,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:36:46 GMT + - Wed, 20 May 2026 09:34:18 GMT Pragma: - no-cache RequestId: - - 7cc9d12b-7e4d-4b19-aa52-0b2ff4465421 + - 3f2a87ea-c796-4778-ba07-78ef0e6af25f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3420,16 +3466,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "663c8802-1a86-4500-aa99-666f57823e08", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1be9b197-3830-4d86-be77-c38ed1c9b370", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3438,15 +3487,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:36:46 GMT + - Wed, 20 May 2026 09:34:18 GMT Pragma: - no-cache RequestId: - - 8996a096-fff8-48df-ad01-1066573b8c3a + - 1201a965-204a-414e-b5d6-95d8f1053c8a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3472,13 +3521,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/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True response: body: - string: '{"value": [{"id": "92de4c19-548f-430f-9778-e87a0a663d84", "displayName": - "fabcli000003", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d"}]}' + string: '{"value": [{"id": "2ce042fb-c657-44b2-85a9-be114cc17493", "displayName": + "fabcli000003", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3491,11 +3540,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:36:47 GMT + - Wed, 20 May 2026 09:34:19 GMT Pragma: - no-cache RequestId: - - 3976a8f3-df31-4f0a-84ad-79f5250614f7 + - c63c1696-a733-4b7c-96c4-e886cf26a472 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3521,16 +3570,16 @@ 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/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/items response: body: - string: '{"value": [{"id": "3f8e2ecf-f3d1-4627-bc61-daf66505ef16", "type": "SQLEndpoint", - "displayName": "fabcli000004", "description": "", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", - "folderId": "92de4c19-548f-430f-9778-e87a0a663d84"}, {"id": "fa0c9832-d9ba-43e8-9d4b-3abf4f1436f5", - "type": "CosmosDBDatabase", "displayName": "fabcli000004", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "folderId": - "92de4c19-548f-430f-9778-e87a0a663d84"}]}' + string: '{"value": [{"id": "359d312d-1c20-4498-8545-59b5a1acfc65", "type": "SQLEndpoint", + "displayName": "fabcli000004", "description": "", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", + "folderId": "2ce042fb-c657-44b2-85a9-be114cc17493"}, {"id": "024305ac-06b1-4d39-a83e-3cf0bd50a65e", + "type": "CosmosDBDatabase", "displayName": "fabcli000004", "description": + "", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "folderId": "2ce042fb-c657-44b2-85a9-be114cc17493"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3539,15 +3588,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '263' + - '251' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:36:48 GMT + - Wed, 20 May 2026 09:34:20 GMT Pragma: - no-cache RequestId: - - 553fff0f-9e04-4ebd-a10a-060bb8ffe454 + - 7e654a35-93a8-49a2-aed2-ecd46b866465 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3573,13 +3622,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/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True response: body: - string: '{"value": [{"id": "92de4c19-548f-430f-9778-e87a0a663d84", "displayName": - "fabcli000003", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d"}]}' + string: '{"value": [{"id": "2ce042fb-c657-44b2-85a9-be114cc17493", "displayName": + "fabcli000003", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3592,11 +3641,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:36:49 GMT + - Wed, 20 May 2026 09:34:20 GMT Pragma: - no-cache RequestId: - - a5ae90d0-280d-4dd9-8ede-a7a46c420d45 + - 067ee4ca-8cd4-4d6f-a460-b532104426d2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3622,13 +3671,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/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True response: body: - string: '{"value": [{"id": "92de4c19-548f-430f-9778-e87a0a663d84", "displayName": - "fabcli000003", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d"}]}' + string: '{"value": [{"id": "2ce042fb-c657-44b2-85a9-be114cc17493", "displayName": + "fabcli000003", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3641,11 +3690,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:36:50 GMT + - Wed, 20 May 2026 09:34:22 GMT Pragma: - no-cache RequestId: - - be27381e-fec4-4d61-97a2-9bf2524f1526 + - 52380e3a-bf38-4a7b-bd1e-de9328baa38b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3673,9 +3722,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/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/items/fa0c9832-d9ba-43e8-9d4b-3abf4f1436f5 + uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/items/024305ac-06b1-4d39-a83e-3cf0bd50a65e response: body: string: '' @@ -3691,11 +3740,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:36:50 GMT + - Wed, 20 May 2026 09:34:23 GMT Pragma: - no-cache RequestId: - - 92705afd-9e1a-486f-b573-eb1acb490200 + - 9cc15a57-d8a9-4e04-a4e8-d37b73689841 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3721,16 +3770,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "663c8802-1a86-4500-aa99-666f57823e08", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1be9b197-3830-4d86-be77-c38ed1c9b370", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3739,15 +3791,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:36:52 GMT + - Wed, 20 May 2026 09:34:24 GMT Pragma: - no-cache RequestId: - - 5beaaf5e-be16-4a64-a945-e881a174d942 + - 8d49cc12-5dad-4688-b3be-8e8a2ac6168a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3773,13 +3825,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/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders?recursive=True response: body: - string: '{"value": [{"id": "92de4c19-548f-430f-9778-e87a0a663d84", "displayName": - "fabcli000003", "workspaceId": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d"}]}' + string: '{"value": [{"id": "2ce042fb-c657-44b2-85a9-be114cc17493", "displayName": + "fabcli000003", "workspaceId": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3792,11 +3844,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:36:53 GMT + - Wed, 20 May 2026 09:34:25 GMT Pragma: - no-cache RequestId: - - 8bbba3fa-1911-430d-915c-58a8904ba653 + - 79c0b4f7-6178-4d62-af2a-7149e7416f9d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3824,9 +3876,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/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/folders/92de4c19-548f-430f-9778-e87a0a663d84 + uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/folders/2ce042fb-c657-44b2-85a9-be114cc17493 response: body: string: '' @@ -3842,11 +3894,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:36:54 GMT + - Wed, 20 May 2026 09:34:26 GMT Pragma: - no-cache RequestId: - - 4b7092a7-6f4d-42cc-9a2b-cd3318961b9b + - e9cac8f9-7e97-44b1-8f2a-94f2c3d2ec1f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3872,16 +3924,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "3e2bba4b-44d0-49ff-a65d-fbbea595cf2d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "663c8802-1a86-4500-aa99-666f57823e08", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1be9b197-3830-4d86-be77-c38ed1c9b370", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3890,15 +3945,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:36:54 GMT + - Wed, 20 May 2026 09:34:27 GMT Pragma: - no-cache RequestId: - - a97ee7ea-b1bd-4f8b-9ed5-a9e8fc52cab7 + - 72e93c53-8487-44cc-9685-b110ae4d076d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3924,9 +3979,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/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3/items response: body: string: '{"value": []}' @@ -3942,11 +3997,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:36:55 GMT + - Wed, 20 May 2026 09:34:28 GMT Pragma: - no-cache RequestId: - - 584b11ce-f95d-42c0-8cfd-79b6bb6495a8 + - fb6211c3-9d24-4685-94ce-8418b990ce96 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3974,9 +4029,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/3e2bba4b-44d0-49ff-a65d-fbbea595cf2d + uri: https://api.fabric.microsoft.com/v1/workspaces/dd074c2d-58ba-4ca5-9c78-2dfe1d8561d3 response: body: string: '' @@ -3992,11 +4047,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:36:56 GMT + - Wed, 20 May 2026 09:34:28 GMT Pragma: - no-cache RequestId: - - 5902bb64-f6f1-48b3-bdfa-64e26119e810 + - fc26fe05-b581-4ee3-8a76-f22eb3d1ea8c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4022,15 +4077,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "663c8802-1a86-4500-aa99-666f57823e08", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1be9b197-3830-4d86-be77-c38ed1c9b370", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4039,15 +4096,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2841' + - '2658' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:36:57 GMT + - Wed, 20 May 2026 09:34:29 GMT Pragma: - no-cache RequestId: - - 85df337f-22ae-4612-97bc-977cf842fd93 + - c54099ad-c57b-4824-b488-f35021f8908c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4073,9 +4130,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/663c8802-1a86-4500-aa99-666f57823e08/items + uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370/items response: body: string: '{"value": []}' @@ -4091,11 +4148,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:36:58 GMT + - Wed, 20 May 2026 09:34:30 GMT Pragma: - no-cache RequestId: - - a5ddb74a-c1b2-4846-935b-c0735a924ab7 + - f7719255-e871-488a-92cf-a7232d224841 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4123,9 +4180,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/663c8802-1a86-4500-aa99-666f57823e08 + uri: https://api.fabric.microsoft.com/v1/workspaces/1be9b197-3830-4d86-be77-c38ed1c9b370 response: body: string: '' @@ -4141,11 +4198,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:36:58 GMT + - Wed, 20 May 2026 09:34:30 GMT Pragma: - no-cache RequestId: - - 2167818a-256e-46d5-899a-8b4b1f6c28f3 + - 04497257-1216-49d4-960f-4b598f54b4b3 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[DataPipeline].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[DataPipeline].yaml index 18f581f7c..a1bf09b7e 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[DataPipeline].yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[DataPipeline].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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:27 GMT + - Wed, 20 May 2026 09:21:00 GMT Pragma: - no-cache RequestId: - - 5631c736-d2ac-4597-aaf5-ca767f56c4e4 + - 571d4c48-36d8-4b2f-9acc-b0e3ba3e506f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:28 GMT + - Wed, 20 May 2026 09:21:00 GMT Pragma: - no-cache RequestId: - - 467ec3d3-0c4d-4146-8a42-e8f1464a81f5 + - b07602cf-8371-421d-b825-0f6b6c5406ce Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,7 +113,7 @@ 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/capacities response: @@ -127,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '427' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:32 GMT + - Wed, 20 May 2026 09:21:06 GMT Pragma: - no-cache RequestId: - - 7a494747-9b8a-4a1a-9d92-738088338a7f + - 786fc079-ff3c-4d7e-a350-7a442f037d51 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -150,8 +152,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -160,16 +161,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -178,17 +180,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '154' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:39 GMT + - Wed, 20 May 2026 09:21:14 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/d1df1cf9-4071-451f-b495-9990506dc8ec + - https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2 Pragma: - no-cache RequestId: - - b5b4ff5c-6668-4171-9e30-b3d8dea75d44 + - 16f4913d-3e83-494c-9616-27f512980b29 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,15 +216,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -231,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2847' + - '2656' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:40 GMT + - Wed, 20 May 2026 09:21:15 GMT Pragma: - no-cache RequestId: - - 2078e768-917f-4dfe-b660-a9b7a915e1fa + - b021624f-b325-44ed-a41e-5f6380f150ba Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,15 +269,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -282,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2847' + - '2656' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:41 GMT + - Wed, 20 May 2026 09:21:16 GMT Pragma: - no-cache RequestId: - - 2470e8a3-d8c9-4f5a-833f-3e5227ed898b + - 32b56a86-29b7-49a8-8929-e5f77be716e9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,7 +322,7 @@ 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/capacities response: @@ -332,15 +338,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:46 GMT + - Wed, 20 May 2026 09:21:21 GMT Pragma: - no-cache RequestId: - - 24918917-0872-46cc-ac9e-3f15e9a794c5 + - d6c78748-bc15-43ac-a117-c788c2c07eda Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -355,8 +361,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000002", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -365,16 +370,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -383,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '154' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:53 GMT + - Wed, 20 May 2026 09:21:29 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/86a7832d-1baa-4ad4-a1b4-5313dc823f31 + - https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a Pragma: - no-cache RequestId: - - 00e1979e-6ee4-41b5-8684-d493e88604db + - f6bda62b-a275-4fcd-b40b-7031aa40d959 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -419,16 +425,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -437,15 +446,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2883' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:54 GMT + - Wed, 20 May 2026 09:21:30 GMT Pragma: - no-cache RequestId: - - a61636ee-e512-4f4c-a5a3-91855919389b + - 97a5d098-6c19-49f2-b47d-57927ebb1a99 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -471,9 +480,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/d1df1cf9-4071-451f-b495-9990506dc8ec/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders?recursive=True response: body: string: '{"value": []}' @@ -489,11 +498,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:55 GMT + - Wed, 20 May 2026 09:21:31 GMT Pragma: - no-cache RequestId: - - eb56277b-ef0f-4c61-b40b-5c7ffe6dcea6 + - 7ed76f53-aa73-4e1e-a03f-da0a84090786 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -519,9 +528,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/d1df1cf9-4071-451f-b495-9990506dc8ec/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders?recursive=True response: body: string: '{"value": []}' @@ -537,11 +546,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:56 GMT + - Wed, 20 May 2026 09:21:31 GMT Pragma: - no-cache RequestId: - - e1667d39-f98d-4eeb-9290-1eee5c6c11c0 + - 5b801c55-30eb-4fe1-bd9d-a6f89c1aac72 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -565,17 +574,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/d1df1cf9-4071-451f-b495-9990506dc8ec/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders response: body: - string: '{"id": "464163de-4664-4347-8124-4b18c93a5f6e", "displayName": "fabcli000003", - "workspaceId": "d1df1cf9-4071-451f-b495-9990506dc8ec"}' + string: '{"id": "8d913a12-565d-41e5-aa9b-1a0a42bcb001", "displayName": "fabcli000003", + "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -584,17 +593,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '133' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:56 GMT + - Wed, 20 May 2026 09:21:33 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/d1df1cf9-4071-451f-b495-9990506dc8ec/folders/464163de-4664-4347-8124-4b18c93a5f6e + - https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders/8d913a12-565d-41e5-aa9b-1a0a42bcb001 Pragma: - no-cache RequestId: - - d653c700-c677-4351-86e4-a1fca697a439 + - 587aeb0a-dc25-4125-913c-572f80844166 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -620,16 +629,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -638,15 +650,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2883' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:58 GMT + - Wed, 20 May 2026 09:21:34 GMT Pragma: - no-cache RequestId: - - a5ac5845-926f-4844-a7a0-56de754542d5 + - c0c08a71-c842-4a82-85af-40ca3fa1000e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -672,13 +684,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/d1df1cf9-4071-451f-b495-9990506dc8ec/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders?recursive=True response: body: - string: '{"value": [{"id": "464163de-4664-4347-8124-4b18c93a5f6e", "displayName": - "fabcli000003", "workspaceId": "d1df1cf9-4071-451f-b495-9990506dc8ec"}]}' + string: '{"value": [{"id": "8d913a12-565d-41e5-aa9b-1a0a42bcb001", "displayName": + "fabcli000003", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -691,11 +703,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:59 GMT + - Wed, 20 May 2026 09:21:35 GMT Pragma: - no-cache RequestId: - - 89fad134-eb67-4c65-8baf-7a5a9dbea671 + - 033a8e5a-f144-45ab-968f-cb13e0a0ff77 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -721,9 +733,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/d1df1cf9-4071-451f-b495-9990506dc8ec/items + uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/items response: body: string: '{"value": []}' @@ -739,11 +751,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:15:00 GMT + - Wed, 20 May 2026 09:21:35 GMT Pragma: - no-cache RequestId: - - 90a99cce-638a-4140-8d03-58d50dfab9a2 + - 8ee56181-f241-4c3e-965c-99b9ab3448bf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -769,9 +781,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/d1df1cf9-4071-451f-b495-9990506dc8ec/items + uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/items response: body: string: '{"value": []}' @@ -787,11 +799,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:15:00 GMT + - Wed, 20 May 2026 09:21:36 GMT Pragma: - no-cache RequestId: - - 8499b3f1-dea0-4531-9edd-c13c4bc6573b + - 997e42f9-76a4-4eb0-be9e-90555f0d9d43 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -806,8 +818,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000004", "type": - "DataPipeline", "folderId": "464163de-4664-4347-8124-4b18c93a5f6e"}' + body: '{"displayName": "fabcli000004", "type": "DataPipeline", "folderId": "8d913a12-565d-41e5-aa9b-1a0a42bcb001"}' headers: Accept: - '*/*' @@ -816,18 +827,18 @@ interactions: Connection: - keep-alive Content-Length: - - '144' + - '111' 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/d1df1cf9-4071-451f-b495-9990506dc8ec/dataPipelines + uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/dataPipelines response: body: - string: '{"id": "58ed4d14-805b-4dc7-98f9-e55428c3e5f0", "type": "DataPipeline", - "displayName": "fabcli000004", "workspaceId": - "d1df1cf9-4071-451f-b495-9990506dc8ec", "folderId": "464163de-4664-4347-8124-4b18c93a5f6e"}' + string: '{"id": "ed4a761f-99a3-4751-bcc2-e2251febc610", "type": "DataPipeline", + "displayName": "fabcli000004", "description": "", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2", + "folderId": "8d913a12-565d-41e5-aa9b-1a0a42bcb001"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -836,17 +847,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '203' + - '190' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:15:07 GMT + - Wed, 20 May 2026 09:21:42 GMT ETag: - '""' Pragma: - no-cache RequestId: - - a56a25f9-6623-4716-a8b8-0da2a39e83af + - 6e8e94bd-9283-4e89-b1ae-1f9340f07f47 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -872,16 +883,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -890,15 +904,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2883' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:15:07 GMT + - Wed, 20 May 2026 09:21:43 GMT Pragma: - no-cache RequestId: - - 7b922003-4398-4b95-b19d-5a1125261605 + - 8c01c935-3a72-45f4-9c5b-18052ce765ec Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -924,13 +938,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/d1df1cf9-4071-451f-b495-9990506dc8ec/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders?recursive=True response: body: - string: '{"value": [{"id": "464163de-4664-4347-8124-4b18c93a5f6e", "displayName": - "fabcli000003", "workspaceId": "d1df1cf9-4071-451f-b495-9990506dc8ec"}]}' + string: '{"value": [{"id": "8d913a12-565d-41e5-aa9b-1a0a42bcb001", "displayName": + "fabcli000003", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -943,11 +957,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:15:08 GMT + - Wed, 20 May 2026 09:21:44 GMT Pragma: - no-cache RequestId: - - e66c8d28-f20c-4620-9b11-b4316046c621 + - 1646dc4c-06d5-4c04-a601-4b5ef2d4965c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -973,16 +987,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -991,15 +1008,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2883' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:15:09 GMT + - Wed, 20 May 2026 09:21:44 GMT Pragma: - no-cache RequestId: - - 54114ad1-5936-46a3-9692-2c5ba94a80da + - b23ed152-ebba-49d9-ad73-0a77b0cc39a9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1025,16 +1042,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1043,15 +1063,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2883' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:15:09 GMT + - Wed, 20 May 2026 09:21:44 GMT Pragma: - no-cache RequestId: - - 3d1bb147-177c-417f-b636-a406fb9d3667 + - 2287d2ed-0da8-4a37-98a6-0359c28b54f0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1077,9 +1097,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/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/folders?recursive=True response: body: string: '{"value": []}' @@ -1095,11 +1115,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:15:11 GMT + - Wed, 20 May 2026 09:21:46 GMT Pragma: - no-cache RequestId: - - 379247c0-707e-4cb2-b28e-78d820b72abb + - 8235b4be-1c3e-40d7-b146-59572c5dd515 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1125,9 +1145,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/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/folders?recursive=True response: body: string: '{"value": []}' @@ -1143,11 +1163,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:15:11 GMT + - Wed, 20 May 2026 09:21:47 GMT Pragma: - no-cache RequestId: - - 6c6275dc-548c-4759-93df-d50d625d7be2 + - 170f712a-0891-4da0-b1d4-d77d5d081918 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1171,17 +1191,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/folders response: body: - string: '{"id": "5eba2120-30b0-461d-94de-a9a80ec43e93", "displayName": "fabcli000003", - "workspaceId": "86a7832d-1baa-4ad4-a1b4-5313dc823f31"}' + string: '{"id": "6d420ad2-6618-410a-9d9d-7ca4dd3aad28", "displayName": "fabcli000003", + "workspaceId": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -1190,17 +1210,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:15:12 GMT + - Wed, 20 May 2026 09:21:47 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders/5eba2120-30b0-461d-94de-a9a80ec43e93 + - https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/folders/6d420ad2-6618-410a-9d9d-7ca4dd3aad28 Pragma: - no-cache RequestId: - - 19c8fe02-936b-4559-8b94-3480e7172ff9 + - d8927378-a39e-42b8-9261-0f7ff4706ca2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1226,14 +1246,14 @@ 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/d1df1cf9-4071-451f-b495-9990506dc8ec/items + uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/items response: body: - string: '{"value": [{"id": "58ed4d14-805b-4dc7-98f9-e55428c3e5f0", "type": "DataPipeline", - "displayName": "fabcli000004", "workspaceId": - "d1df1cf9-4071-451f-b495-9990506dc8ec", "folderId": "464163de-4664-4347-8124-4b18c93a5f6e"}]}' + string: '{"value": [{"id": "ed4a761f-99a3-4751-bcc2-e2251febc610", "type": "DataPipeline", + "displayName": "fabcli000004", "description": "", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2", + "folderId": "8d913a12-565d-41e5-aa9b-1a0a42bcb001"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1242,15 +1262,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '214' + - '201' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:15:13 GMT + - Wed, 20 May 2026 09:21:48 GMT Pragma: - no-cache RequestId: - - cb6e73db-d0f1-4e14-b694-21f59968ad5f + - 0ee0dd77-52b3-4409-bc8d-9e9a7dca2a52 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1276,13 +1296,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/d1df1cf9-4071-451f-b495-9990506dc8ec/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders?recursive=True response: body: - string: '{"value": [{"id": "464163de-4664-4347-8124-4b18c93a5f6e", "displayName": - "fabcli000003", "workspaceId": "d1df1cf9-4071-451f-b495-9990506dc8ec"}]}' + string: '{"value": [{"id": "8d913a12-565d-41e5-aa9b-1a0a42bcb001", "displayName": + "fabcli000003", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1295,11 +1315,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:15:14 GMT + - Wed, 20 May 2026 09:21:50 GMT Pragma: - no-cache RequestId: - - e0586982-f261-4ece-a0fb-290216516c35 + - 61d27c06-6ed6-42fd-8a4d-3aa6ab7b4ca8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1325,13 +1345,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/d1df1cf9-4071-451f-b495-9990506dc8ec/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders?recursive=True response: body: - string: '{"value": [{"id": "464163de-4664-4347-8124-4b18c93a5f6e", "displayName": - "fabcli000003", "workspaceId": "d1df1cf9-4071-451f-b495-9990506dc8ec"}]}' + string: '{"value": [{"id": "8d913a12-565d-41e5-aa9b-1a0a42bcb001", "displayName": + "fabcli000003", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1344,11 +1364,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:15:15 GMT + - Wed, 20 May 2026 09:21:50 GMT Pragma: - no-cache RequestId: - - 32fa2616-64b8-4454-ab9f-9e533eb0ea4f + - 8a391b68-23f5-4333-8195-d8f804b66695 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1374,14 +1394,14 @@ 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/d1df1cf9-4071-451f-b495-9990506dc8ec/items + uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/items response: body: - string: '{"value": [{"id": "58ed4d14-805b-4dc7-98f9-e55428c3e5f0", "type": "DataPipeline", - "displayName": "fabcli000004", "workspaceId": - "d1df1cf9-4071-451f-b495-9990506dc8ec", "folderId": "464163de-4664-4347-8124-4b18c93a5f6e"}]}' + string: '{"value": [{"id": "ed4a761f-99a3-4751-bcc2-e2251febc610", "type": "DataPipeline", + "displayName": "fabcli000004", "description": "", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2", + "folderId": "8d913a12-565d-41e5-aa9b-1a0a42bcb001"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1390,15 +1410,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '214' + - '201' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:15:16 GMT + - Wed, 20 May 2026 09:21:51 GMT Pragma: - no-cache RequestId: - - 580249de-f163-438a-97fb-9f58bcaaac74 + - accd6c89-539d-4a07-8b82-768086ce62a7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1424,13 +1444,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/d1df1cf9-4071-451f-b495-9990506dc8ec/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders?recursive=True response: body: - string: '{"value": [{"id": "464163de-4664-4347-8124-4b18c93a5f6e", "displayName": - "fabcli000003", "workspaceId": "d1df1cf9-4071-451f-b495-9990506dc8ec"}]}' + string: '{"value": [{"id": "8d913a12-565d-41e5-aa9b-1a0a42bcb001", "displayName": + "fabcli000003", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1443,11 +1463,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:15:16 GMT + - Wed, 20 May 2026 09:21:52 GMT Pragma: - no-cache RequestId: - - 5d3af147-9e21-48ce-a5c5-3bc8931bb8db + - 42d69a24-278f-4a11-a7a4-c609e9d2af71 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1473,13 +1493,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/d1df1cf9-4071-451f-b495-9990506dc8ec/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders?recursive=True response: body: - string: '{"value": [{"id": "464163de-4664-4347-8124-4b18c93a5f6e", "displayName": - "fabcli000003", "workspaceId": "d1df1cf9-4071-451f-b495-9990506dc8ec"}]}' + string: '{"value": [{"id": "8d913a12-565d-41e5-aa9b-1a0a42bcb001", "displayName": + "fabcli000003", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1492,11 +1512,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:15:16 GMT + - Wed, 20 May 2026 09:21:52 GMT Pragma: - no-cache RequestId: - - 284579b9-08e3-4834-8afd-10fef3894f56 + - ae997c32-132d-4fa9-a09e-c6970e499a49 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1522,16 +1542,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1540,15 +1563,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2883' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:15:18 GMT + - Wed, 20 May 2026 09:21:53 GMT Pragma: - no-cache RequestId: - - 528909e9-c4af-4146-8c74-b05f528538bb + - a283c437-1fdd-465b-8e59-266b02ff2ba4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1574,53 +1597,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/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/folders?recursive=True response: body: - string: '{"requestId": "d0133f3c-b6f8-4631-a131-63ffba6959ce", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 8:15:56 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 08:15:18 GMT - RequestId: - - d0133f3c-b6f8-4631-a131-63ffba6959ce - Retry-After: - - '37' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders?recursive=True - response: - body: - string: '{"value": [{"id": "5eba2120-30b0-461d-94de-a9a80ec43e93", "displayName": - "fabcli000003", "workspaceId": "86a7832d-1baa-4ad4-a1b4-5313dc823f31"}]}' + string: '{"value": [{"id": "6d420ad2-6618-410a-9d9d-7ca4dd3aad28", "displayName": + "fabcli000003", "workspaceId": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1629,15 +1612,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '141' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:15:58 GMT + - Wed, 20 May 2026 09:21:54 GMT Pragma: - no-cache RequestId: - - 738ee5e2-66ca-4e4e-b13f-21e3d87c4ad5 + - 669bb874-fbbd-46ba-b03b-dc8684d8a413 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1663,9 +1646,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/86a7832d-1baa-4ad4-a1b4-5313dc823f31/items + uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/items response: body: string: '{"value": []}' @@ -1681,11 +1664,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:15:59 GMT + - Wed, 20 May 2026 09:21:55 GMT Pragma: - no-cache RequestId: - - 6c239580-5f23-42ac-a5a5-c88f621b51b3 + - 713bf944-55ee-484a-8714-3ec7a5ebca46 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1711,9 +1694,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/86a7832d-1baa-4ad4-a1b4-5313dc823f31/items + uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/items response: body: string: '{"value": []}' @@ -1729,11 +1712,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:16:00 GMT + - Wed, 20 May 2026 09:21:55 GMT Pragma: - no-cache RequestId: - - 4beab00d-395b-4b4c-a2ed-d9b1720851ec + - de195ce0-b64f-497f-b76f-f58ccfd425fd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1759,9 +1742,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/86a7832d-1baa-4ad4-a1b4-5313dc823f31/items + uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/items response: body: string: '{"value": []}' @@ -1777,11 +1760,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:16:01 GMT + - Wed, 20 May 2026 09:21:56 GMT Pragma: - no-cache RequestId: - - 2265c51b-0c5f-4b41-8154-025680d7ef00 + - 88c54ab7-9951-4993-88d4-bb4f20d420c9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1807,14 +1790,14 @@ 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/d1df1cf9-4071-451f-b495-9990506dc8ec/items/58ed4d14-805b-4dc7-98f9-e55428c3e5f0 + uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/items/ed4a761f-99a3-4751-bcc2-e2251febc610 response: body: - string: '{"id": "58ed4d14-805b-4dc7-98f9-e55428c3e5f0", "type": "DataPipeline", - "displayName": "fabcli000004", "workspaceId": - "d1df1cf9-4071-451f-b495-9990506dc8ec", "folderId": "464163de-4664-4347-8124-4b18c93a5f6e"}' + string: '{"id": "ed4a761f-99a3-4751-bcc2-e2251febc610", "type": "DataPipeline", + "displayName": "fabcli000004", "description": "", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2", + "folderId": "8d913a12-565d-41e5-aa9b-1a0a42bcb001"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1823,17 +1806,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '203' + - '190' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:16:01 GMT + - Wed, 20 May 2026 09:21:57 GMT ETag: - '""' Pragma: - no-cache RequestId: - - e3fd5ce9-3400-40f4-bf8e-c36152778324 + - bf1e1254-684f-4513-b3b0-b55707c79da5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1861,14 +1844,14 @@ interactions: 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/d1df1cf9-4071-451f-b495-9990506dc8ec/items/58ed4d14-805b-4dc7-98f9-e55428c3e5f0/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/items/ed4a761f-99a3-4751-bcc2-e2251febc610/getDefinition response: body: string: '{"definition": {"parts": [{"path": "pipeline-content.json", "payload": "ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==", "payloadType": - "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -1878,15 +1861,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '456' + - '440' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:16:03 GMT + - Wed, 20 May 2026 09:21:58 GMT Pragma: - no-cache RequestId: - - 37bd3a46-4d3a-4f28-8f0d-baede00bd4aa + - 966dd047-655d-4156-bf73-16d875d69f84 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1901,11 +1884,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "DataPipeline", "displayName": - "fabcli000004", "definition": {"parts": [{"path": "pipeline-content.json", "payload": - "ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==", "payloadType": - "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", - "payloadType": "InlineBase64"}]}, "folderId": "5eba2120-30b0-461d-94de-a9a80ec43e93"}' + body: '{"type": "DataPipeline", "displayName": "fabcli000004", "definition": {"parts": + [{"path": "pipeline-content.json", "payload": "ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "payloadType": "InlineBase64"}]}, "folderId": "6d420ad2-6618-410a-9d9d-7ca4dd3aad28"}' headers: Accept: - '*/*' @@ -1914,18 +1896,18 @@ interactions: Connection: - keep-alive Content-Length: - - '845' + - '760' 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/86a7832d-1baa-4ad4-a1b4-5313dc823f31/items + uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/items response: body: - string: '{"id": "3cd19cee-8bb0-4093-b573-ed8395d5a2b1", "type": "DataPipeline", - "displayName": "fabcli000004", "workspaceId": - "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "folderId": "5eba2120-30b0-461d-94de-a9a80ec43e93"}' + string: '{"id": "fa24e991-299f-4695-904b-d467c00d5597", "type": "DataPipeline", + "displayName": "fabcli000004", "description": "", "workspaceId": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", + "folderId": "6d420ad2-6618-410a-9d9d-7ca4dd3aad28"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1934,17 +1916,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '199' + - '187' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:16:10 GMT + - Wed, 20 May 2026 09:22:05 GMT ETag: - '""' Pragma: - no-cache RequestId: - - bc3c7b2d-d5e1-4a70-a7a4-85911b2c4c87 + - 829e8211-bef5-4be9-a5e5-0d9e2104511c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1970,14 +1952,14 @@ 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/d1df1cf9-4071-451f-b495-9990506dc8ec/items + uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/items response: body: - string: '{"value": [{"id": "58ed4d14-805b-4dc7-98f9-e55428c3e5f0", "type": "DataPipeline", - "displayName": "fabcli000004", "workspaceId": - "d1df1cf9-4071-451f-b495-9990506dc8ec", "folderId": "464163de-4664-4347-8124-4b18c93a5f6e"}]}' + string: '{"value": [{"id": "ed4a761f-99a3-4751-bcc2-e2251febc610", "type": "DataPipeline", + "displayName": "fabcli000004", "description": "", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2", + "folderId": "8d913a12-565d-41e5-aa9b-1a0a42bcb001"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1986,15 +1968,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '214' + - '201' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:16:11 GMT + - Wed, 20 May 2026 09:22:06 GMT Pragma: - no-cache RequestId: - - 4d04ecf1-b7fc-469b-add1-adbf884d1eb3 + - 43438a7c-735d-495c-8504-66d390a28190 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2020,13 +2002,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/d1df1cf9-4071-451f-b495-9990506dc8ec/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders?recursive=True response: body: - string: '{"value": [{"id": "464163de-4664-4347-8124-4b18c93a5f6e", "displayName": - "fabcli000003", "workspaceId": "d1df1cf9-4071-451f-b495-9990506dc8ec"}]}' + string: '{"value": [{"id": "8d913a12-565d-41e5-aa9b-1a0a42bcb001", "displayName": + "fabcli000003", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2039,11 +2021,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:16:12 GMT + - Wed, 20 May 2026 09:22:06 GMT Pragma: - no-cache RequestId: - - 31d5d48f-1718-4fba-994f-58c9a7bb975b + - 4ee55e05-4f12-4b3c-a5dc-bb6969908d71 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2069,13 +2051,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/d1df1cf9-4071-451f-b495-9990506dc8ec/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders?recursive=True response: body: - string: '{"value": [{"id": "464163de-4664-4347-8124-4b18c93a5f6e", "displayName": - "fabcli000003", "workspaceId": "d1df1cf9-4071-451f-b495-9990506dc8ec"}]}' + string: '{"value": [{"id": "8d913a12-565d-41e5-aa9b-1a0a42bcb001", "displayName": + "fabcli000003", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2088,11 +2070,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:16:13 GMT + - Wed, 20 May 2026 09:22:07 GMT Pragma: - no-cache RequestId: - - 5abd0ccf-5df9-4f78-b2a1-14495ed3d989 + - d77cd298-e0a1-4db3-900e-e222abd4de1b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2118,16 +2100,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2136,15 +2121,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2883' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:16:13 GMT + - Wed, 20 May 2026 09:22:08 GMT Pragma: - no-cache RequestId: - - cae0f7da-b383-4925-b2f5-55ec479d1120 + - 729ca08f-bacf-4300-9a4b-6816b7ae7a0a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2170,14 +2155,14 @@ 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/86a7832d-1baa-4ad4-a1b4-5313dc823f31/items + uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/items response: body: - string: '{"value": [{"id": "3cd19cee-8bb0-4093-b573-ed8395d5a2b1", "type": "DataPipeline", - "displayName": "fabcli000004", "workspaceId": - "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "folderId": "5eba2120-30b0-461d-94de-a9a80ec43e93"}]}' + string: '{"value": [{"id": "fa24e991-299f-4695-904b-d467c00d5597", "type": "DataPipeline", + "displayName": "fabcli000004", "description": "", "workspaceId": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", + "folderId": "6d420ad2-6618-410a-9d9d-7ca4dd3aad28"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2186,15 +2171,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '211' + - '200' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:16:14 GMT + - Wed, 20 May 2026 09:22:09 GMT Pragma: - no-cache RequestId: - - 317e9b39-b919-4a28-b74c-bb5372438107 + - 2cbbac11-ecf6-47d6-afa7-2b3a8f92edf5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2220,13 +2205,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/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/folders?recursive=True response: body: - string: '{"value": [{"id": "5eba2120-30b0-461d-94de-a9a80ec43e93", "displayName": - "fabcli000003", "workspaceId": "86a7832d-1baa-4ad4-a1b4-5313dc823f31"}]}' + string: '{"value": [{"id": "6d420ad2-6618-410a-9d9d-7ca4dd3aad28", "displayName": + "fabcli000003", "workspaceId": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2235,15 +2220,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '141' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:16:14 GMT + - Wed, 20 May 2026 09:22:10 GMT Pragma: - no-cache RequestId: - - 83b7c799-ece6-468a-a32d-16d669c399ec + - 24ed8447-76e3-4ca0-9103-2dfa6c8d1423 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2269,13 +2254,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/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/folders?recursive=True response: body: - string: '{"value": [{"id": "5eba2120-30b0-461d-94de-a9a80ec43e93", "displayName": - "fabcli000003", "workspaceId": "86a7832d-1baa-4ad4-a1b4-5313dc823f31"}]}' + string: '{"value": [{"id": "6d420ad2-6618-410a-9d9d-7ca4dd3aad28", "displayName": + "fabcli000003", "workspaceId": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2284,15 +2269,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '141' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:16:15 GMT + - Wed, 20 May 2026 09:22:10 GMT Pragma: - no-cache RequestId: - - 3276afef-a258-43b7-9407-1b12da2a4f94 + - e1bdd50b-2da1-43d0-9391-1ed41c2afa17 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2318,16 +2303,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2336,15 +2324,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2883' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:16:16 GMT + - Wed, 20 May 2026 09:22:12 GMT Pragma: - no-cache RequestId: - - b817dc91-ad18-4e02-bf30-bf96d11ae13a + - 76740411-510d-4e32-adbe-de3f6dcbda3f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2370,13 +2358,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/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/folders?recursive=True response: body: - string: '{"value": [{"id": "5eba2120-30b0-461d-94de-a9a80ec43e93", "displayName": - "fabcli000003", "workspaceId": "86a7832d-1baa-4ad4-a1b4-5313dc823f31"}]}' + string: '{"value": [{"id": "6d420ad2-6618-410a-9d9d-7ca4dd3aad28", "displayName": + "fabcli000003", "workspaceId": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2385,15 +2373,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '141' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:16:17 GMT + - Wed, 20 May 2026 09:22:12 GMT Pragma: - no-cache RequestId: - - 406b034c-c8d5-4083-8b12-b184fd7093c8 + - c4eb2879-9abf-4c7a-a568-98055a58d908 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2419,14 +2407,14 @@ 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/86a7832d-1baa-4ad4-a1b4-5313dc823f31/items + uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/items response: body: - string: '{"value": [{"id": "3cd19cee-8bb0-4093-b573-ed8395d5a2b1", "type": "DataPipeline", - "displayName": "fabcli000004", "workspaceId": - "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "folderId": "5eba2120-30b0-461d-94de-a9a80ec43e93"}]}' + string: '{"value": [{"id": "fa24e991-299f-4695-904b-d467c00d5597", "type": "DataPipeline", + "displayName": "fabcli000004", "description": "", "workspaceId": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", + "folderId": "6d420ad2-6618-410a-9d9d-7ca4dd3aad28"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2435,15 +2423,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '211' + - '200' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:16:17 GMT + - Wed, 20 May 2026 09:22:13 GMT Pragma: - no-cache RequestId: - - faf47687-412d-4d48-a90f-1c4d456c59e6 + - bf088bd4-a8ad-40cf-8f4d-320de920fe24 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2469,13 +2457,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/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/folders?recursive=True response: body: - string: '{"value": [{"id": "5eba2120-30b0-461d-94de-a9a80ec43e93", "displayName": - "fabcli000003", "workspaceId": "86a7832d-1baa-4ad4-a1b4-5313dc823f31"}]}' + string: '{"value": [{"id": "6d420ad2-6618-410a-9d9d-7ca4dd3aad28", "displayName": + "fabcli000003", "workspaceId": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2484,15 +2472,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '141' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:16:18 GMT + - Wed, 20 May 2026 09:22:14 GMT Pragma: - no-cache RequestId: - - e29c80e6-f1fe-46c6-bc6e-9d1a806e2479 + - 6fdce840-b4a4-4ede-aa60-e915ccfd5b7d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2518,13 +2506,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/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/folders?recursive=True response: body: - string: '{"value": [{"id": "5eba2120-30b0-461d-94de-a9a80ec43e93", "displayName": - "fabcli000003", "workspaceId": "86a7832d-1baa-4ad4-a1b4-5313dc823f31"}]}' + string: '{"value": [{"id": "6d420ad2-6618-410a-9d9d-7ca4dd3aad28", "displayName": + "fabcli000003", "workspaceId": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2533,15 +2521,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '141' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:16:19 GMT + - Wed, 20 May 2026 09:22:14 GMT Pragma: - no-cache RequestId: - - e17edcff-033d-47d3-9f70-9a8df3ed4e1c + - 7b2860a8-4f52-47f0-b6e6-5aa1b87b2f00 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2567,16 +2555,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2585,15 +2576,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2883' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:16:20 GMT + - Wed, 20 May 2026 09:22:16 GMT Pragma: - no-cache RequestId: - - ff90a011-a42d-459f-8d03-b187a2383fb8 + - 27e96a0f-098c-4681-abc9-95fe01385c6d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2619,13 +2610,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/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/folders?recursive=True response: body: - string: '{"value": [{"id": "5eba2120-30b0-461d-94de-a9a80ec43e93", "displayName": - "fabcli000003", "workspaceId": "86a7832d-1baa-4ad4-a1b4-5313dc823f31"}]}' + string: '{"value": [{"id": "6d420ad2-6618-410a-9d9d-7ca4dd3aad28", "displayName": + "fabcli000003", "workspaceId": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2634,15 +2625,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '141' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:16:21 GMT + - Wed, 20 May 2026 09:22:17 GMT Pragma: - no-cache RequestId: - - b83b8d01-4273-46fa-a6c7-a1fe82c17a59 + - 5e6e8748-025d-463c-b245-413984f56e4b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2668,14 +2659,14 @@ 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/86a7832d-1baa-4ad4-a1b4-5313dc823f31/items + uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/items response: body: - string: '{"value": [{"id": "3cd19cee-8bb0-4093-b573-ed8395d5a2b1", "type": "DataPipeline", - "displayName": "fabcli000004", "workspaceId": - "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "folderId": "5eba2120-30b0-461d-94de-a9a80ec43e93"}]}' + string: '{"value": [{"id": "fa24e991-299f-4695-904b-d467c00d5597", "type": "DataPipeline", + "displayName": "fabcli000004", "description": "", "workspaceId": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", + "folderId": "6d420ad2-6618-410a-9d9d-7ca4dd3aad28"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2684,15 +2675,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '211' + - '200' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:16:22 GMT + - Wed, 20 May 2026 09:22:17 GMT Pragma: - no-cache RequestId: - - ea86a0a3-8255-4279-9521-65901cd8f96b + - 0f036b9e-6ade-44bb-9130-47d8235732d8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2718,13 +2709,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/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/folders?recursive=True response: body: - string: '{"value": [{"id": "5eba2120-30b0-461d-94de-a9a80ec43e93", "displayName": - "fabcli000003", "workspaceId": "86a7832d-1baa-4ad4-a1b4-5313dc823f31"}]}' + string: '{"value": [{"id": "6d420ad2-6618-410a-9d9d-7ca4dd3aad28", "displayName": + "fabcli000003", "workspaceId": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2733,15 +2724,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '141' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:16:22 GMT + - Wed, 20 May 2026 09:22:18 GMT Pragma: - no-cache RequestId: - - 0f16f64f-b00e-4180-ac05-4eb0520a2aef + - 77231d2f-42b6-41c3-91ce-90a851adda1f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2769,9 +2760,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/86a7832d-1baa-4ad4-a1b4-5313dc823f31/items/3cd19cee-8bb0-4093-b573-ed8395d5a2b1 + uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/items/fa24e991-299f-4695-904b-d467c00d5597 response: body: string: '' @@ -2787,11 +2778,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:16:22 GMT + - Wed, 20 May 2026 09:22:19 GMT Pragma: - no-cache RequestId: - - cf3168c4-5faa-4ebe-a381-6f5683b9ffa3 + - 1ca79b20-0683-4cee-87bd-cf8b16eb1a72 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2817,16 +2808,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2835,15 +2829,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2883' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:16:24 GMT + - Wed, 20 May 2026 09:22:19 GMT Pragma: - no-cache RequestId: - - 3403ab97-5ff7-4b1a-bbd9-622c784d1f18 + - 40deef1f-2381-4e45-9563-fc56d8b0d4b1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2869,53 +2863,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/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/folders?recursive=True response: body: - string: '{"requestId": "bed8f620-7407-454d-88b7-927722b2883c", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 8:16:59 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 08:16:25 GMT - RequestId: - - bed8f620-7407-454d-88b7-927722b2883c - Retry-After: - - '34' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders?recursive=True - response: - body: - string: '{"value": [{"id": "5eba2120-30b0-461d-94de-a9a80ec43e93", "displayName": - "fabcli000003", "workspaceId": "86a7832d-1baa-4ad4-a1b4-5313dc823f31"}]}' + string: '{"value": [{"id": "6d420ad2-6618-410a-9d9d-7ca4dd3aad28", "displayName": + "fabcli000003", "workspaceId": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2924,15 +2878,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '141' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:01 GMT + - Wed, 20 May 2026 09:22:20 GMT Pragma: - no-cache RequestId: - - 37be5f6a-f13a-4dd4-8ab3-ba1ed18e8cbb + - bbb88d4a-9055-4d19-832c-8dd31447c321 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2960,9 +2914,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/86a7832d-1baa-4ad4-a1b4-5313dc823f31/folders/5eba2120-30b0-461d-94de-a9a80ec43e93 + uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/folders/6d420ad2-6618-410a-9d9d-7ca4dd3aad28 response: body: string: '' @@ -2978,11 +2932,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:17:02 GMT + - Wed, 20 May 2026 09:22:21 GMT Pragma: - no-cache RequestId: - - 163fabcc-6fd5-4622-8350-2e77b2363d3d + - 4a9cd742-d6d6-4d27-bc9e-120d79843729 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3008,16 +2962,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3026,15 +2983,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2883' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:03 GMT + - Wed, 20 May 2026 09:22:22 GMT Pragma: - no-cache RequestId: - - 9ffcab16-2016-46e8-8d02-e55ea7e7d91b + - 062638aa-df81-4ca8-8e3b-f3d7011510b3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3060,13 +3017,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/d1df1cf9-4071-451f-b495-9990506dc8ec/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders?recursive=True response: body: - string: '{"value": [{"id": "464163de-4664-4347-8124-4b18c93a5f6e", "displayName": - "fabcli000003", "workspaceId": "d1df1cf9-4071-451f-b495-9990506dc8ec"}]}' + string: '{"value": [{"id": "8d913a12-565d-41e5-aa9b-1a0a42bcb001", "displayName": + "fabcli000003", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3079,11 +3036,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:03 GMT + - Wed, 20 May 2026 09:22:23 GMT Pragma: - no-cache RequestId: - - e20e6974-2431-4b15-a93a-b78fc4fae174 + - 322cb9ac-4746-4628-a058-f178d607110c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3109,14 +3066,14 @@ 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/d1df1cf9-4071-451f-b495-9990506dc8ec/items + uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/items response: body: - string: '{"value": [{"id": "58ed4d14-805b-4dc7-98f9-e55428c3e5f0", "type": "DataPipeline", - "displayName": "fabcli000004", "workspaceId": - "d1df1cf9-4071-451f-b495-9990506dc8ec", "folderId": "464163de-4664-4347-8124-4b18c93a5f6e"}]}' + string: '{"value": [{"id": "ed4a761f-99a3-4751-bcc2-e2251febc610", "type": "DataPipeline", + "displayName": "fabcli000004", "description": "", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2", + "folderId": "8d913a12-565d-41e5-aa9b-1a0a42bcb001"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3125,15 +3082,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '214' + - '201' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:05 GMT + - Wed, 20 May 2026 09:22:23 GMT Pragma: - no-cache RequestId: - - 6c674953-9083-44d5-befc-ad78cca885a9 + - 361ba42a-8691-4dbb-93ea-ab5f564c2b55 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3159,13 +3116,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/d1df1cf9-4071-451f-b495-9990506dc8ec/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders?recursive=True response: body: - string: '{"value": [{"id": "464163de-4664-4347-8124-4b18c93a5f6e", "displayName": - "fabcli000003", "workspaceId": "d1df1cf9-4071-451f-b495-9990506dc8ec"}]}' + string: '{"value": [{"id": "8d913a12-565d-41e5-aa9b-1a0a42bcb001", "displayName": + "fabcli000003", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3178,11 +3135,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:06 GMT + - Wed, 20 May 2026 09:22:24 GMT Pragma: - no-cache RequestId: - - 4b01a49b-076c-4063-8cee-c70556413dd9 + - 8fdbbb0c-79c3-4ce7-be37-768269aa1461 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3210,9 +3167,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/d1df1cf9-4071-451f-b495-9990506dc8ec/items/58ed4d14-805b-4dc7-98f9-e55428c3e5f0 + uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/items/ed4a761f-99a3-4751-bcc2-e2251febc610 response: body: string: '' @@ -3228,11 +3185,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:17:06 GMT + - Wed, 20 May 2026 09:22:25 GMT Pragma: - no-cache RequestId: - - f6851ca5-b14c-46b5-8920-4a429353e827 + - e4be5666-c50a-47b9-8fca-9516a0cfad3f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3258,16 +3215,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3276,15 +3236,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2883' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:07 GMT + - Wed, 20 May 2026 09:22:26 GMT Pragma: - no-cache RequestId: - - a09a7960-29aa-4a15-9c79-aa96ba807fda + - 00be6144-2791-435e-b384-7cded957c047 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3310,13 +3270,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/d1df1cf9-4071-451f-b495-9990506dc8ec/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders?recursive=True response: body: - string: '{"value": [{"id": "464163de-4664-4347-8124-4b18c93a5f6e", "displayName": - "fabcli000003", "workspaceId": "d1df1cf9-4071-451f-b495-9990506dc8ec"}]}' + string: '{"value": [{"id": "8d913a12-565d-41e5-aa9b-1a0a42bcb001", "displayName": + "fabcli000003", "workspaceId": "700bae06-c673-4d92-bafd-8ff89d4059e2"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3329,11 +3289,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:08 GMT + - Wed, 20 May 2026 09:22:26 GMT Pragma: - no-cache RequestId: - - 3c83abf2-6d72-4efc-9ec9-bc63c164a179 + - fa58f72d-682e-488f-b441-8744b67dbc6c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3361,9 +3321,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/d1df1cf9-4071-451f-b495-9990506dc8ec/folders/464163de-4664-4347-8124-4b18c93a5f6e + uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/folders/8d913a12-565d-41e5-aa9b-1a0a42bcb001 response: body: string: '' @@ -3379,11 +3339,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:17:09 GMT + - Wed, 20 May 2026 09:22:26 GMT Pragma: - no-cache RequestId: - - 9fa82921-b38c-4da1-a758-4766ac8f80c7 + - 571563a0-acda-4edc-912e-1ecc01c3a66b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3409,16 +3369,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d1df1cf9-4071-451f-b495-9990506dc8ec", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "700bae06-c673-4d92-bafd-8ff89d4059e2", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3427,15 +3390,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2883' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:10 GMT + - Wed, 20 May 2026 09:22:28 GMT Pragma: - no-cache RequestId: - - ff7f6c76-e7d1-4b3e-9be3-7d9e7db1cb1f + - 8f4dece5-c2e8-4f9f-b911-0cbc7fedf7bf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3461,9 +3424,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/d1df1cf9-4071-451f-b495-9990506dc8ec/items + uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2/items response: body: string: '{"value": []}' @@ -3479,11 +3442,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:10 GMT + - Wed, 20 May 2026 09:22:28 GMT Pragma: - no-cache RequestId: - - 2ae7ae16-38b8-4684-a6ef-7baf2f1dde9f + - 80252902-30e1-4291-ad6a-697c5dde08b0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3511,9 +3474,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/d1df1cf9-4071-451f-b495-9990506dc8ec + uri: https://api.fabric.microsoft.com/v1/workspaces/700bae06-c673-4d92-bafd-8ff89d4059e2 response: body: string: '' @@ -3529,11 +3492,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:17:11 GMT + - Wed, 20 May 2026 09:22:29 GMT Pragma: - no-cache RequestId: - - 42c6d815-a14c-49a3-8226-1ede543b7139 + - e0beead2-7f1e-4320-9dc1-5a500f6de651 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3559,15 +3522,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "86a7832d-1baa-4ad4-a1b4-5313dc823f31", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1e946e84-deeb-4191-b3d5-8f22ea48ae7a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3576,15 +3541,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2842' + - '2658' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:12 GMT + - Wed, 20 May 2026 09:22:29 GMT Pragma: - no-cache RequestId: - - 348eb395-4458-4c06-8b96-54ed584da4d7 + - 8ca28af9-5763-48e6-9d71-746f3367a13b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3610,9 +3575,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/86a7832d-1baa-4ad4-a1b4-5313dc823f31/items + uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a/items response: body: string: '{"value": []}' @@ -3628,11 +3593,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:13 GMT + - Wed, 20 May 2026 09:22:31 GMT Pragma: - no-cache RequestId: - - 4d74ca35-c0ca-4f53-ac0a-f14253790f84 + - 87e89066-5014-489b-8602-69848b865570 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3660,9 +3625,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/86a7832d-1baa-4ad4-a1b4-5313dc823f31 + uri: https://api.fabric.microsoft.com/v1/workspaces/1e946e84-deeb-4191-b3d5-8f22ea48ae7a response: body: string: '' @@ -3678,11 +3643,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:17:14 GMT + - Wed, 20 May 2026 09:22:31 GMT Pragma: - no-cache RequestId: - - 611fd3e8-a342-4049-b9a9-74ff7fa32a83 + - be108678-7003-497a-86fa-977fab3d7540 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[KQLDashboard].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[KQLDashboard].yaml index 62184e7d1..9526ea048 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[KQLDashboard].yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[KQLDashboard].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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:15 GMT + - Wed, 20 May 2026 09:22:31 GMT Pragma: - no-cache RequestId: - - 057b0b9b-9976-4c17-8743-c42e246f6292 + - 9c7a67d6-c04c-4ec7-ba6b-4c11496d7f64 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:15 GMT + - Wed, 20 May 2026 09:22:32 GMT Pragma: - no-cache RequestId: - - a8a1b072-d405-4aa7-9e2a-21a5d409ca9a + - b1ed706f-0701-4265-96f5-406f6bec44aa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,7 +113,7 @@ 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/capacities response: @@ -127,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '427' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:20 GMT + - Wed, 20 May 2026 09:22:38 GMT Pragma: - no-cache RequestId: - - a6c4cfe8-c0d9-4ac5-93b9-1b994b08d5ae + - 6eb4d7fa-e49b-4aab-a53b-9050e5b1b334 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -150,8 +152,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -160,16 +161,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -178,17 +180,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:27 GMT + - Wed, 20 May 2026 09:22:46 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062 + - https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3 Pragma: - no-cache RequestId: - - 836a2caa-6a05-4b3b-9be6-312506fc720d + - 717f8bca-9369-407a-9c0c-515b210034b0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,15 +216,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -231,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2843' + - '2659' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:28 GMT + - Wed, 20 May 2026 09:22:46 GMT Pragma: - no-cache RequestId: - - 63b2c04b-870e-4aa4-be21-4f622e076028 + - 46daa184-3c34-4475-ab72-4e8379b2ef1b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,15 +269,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -282,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2843' + - '2659' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:28 GMT + - Wed, 20 May 2026 09:22:47 GMT Pragma: - no-cache RequestId: - - 54dcdd36-7d60-4de5-8315-056dd1af443c + - 6fb32999-e62a-4dad-ac61-d99adecc8e3b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,7 +322,7 @@ 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/capacities response: @@ -332,15 +338,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '429' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:34 GMT + - Wed, 20 May 2026 09:22:51 GMT Pragma: - no-cache RequestId: - - 704a7897-78b7-4138-b346-f8f33bc8ab0f + - 6796c827-3824-45d0-84d6-8c0c0f0e3c3e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -355,8 +361,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000002", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -365,16 +370,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "82f63520-4c38-40af-a97e-a9c550d666d5", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "4f842531-9348-4d09-a84f-d4e7cb7a9829", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -383,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:41 GMT + - Wed, 20 May 2026 09:23:00 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/82f63520-4c38-40af-a97e-a9c550d666d5 + - https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829 Pragma: - no-cache RequestId: - - c29eecd9-f880-476b-9fd7-b2a86a31e29a + - 18371326-c4ac-4f62-ae56-6d6c6f6d7a1c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -419,16 +425,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "82f63520-4c38-40af-a97e-a9c550d666d5", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4f842531-9348-4d09-a84f-d4e7cb7a9829", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -437,15 +446,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:42 GMT + - Wed, 20 May 2026 09:23:01 GMT Pragma: - no-cache RequestId: - - 24d63f02-a4aa-4379-9b8e-749ec2f840b9 + - 9c653df6-e4fd-47f5-9ac2-b45e07083f55 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -471,9 +480,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/b8d8b914-dc78-478b-ad97-dc80db117062/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders?recursive=True response: body: string: '{"value": []}' @@ -489,11 +498,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:43 GMT + - Wed, 20 May 2026 09:23:01 GMT Pragma: - no-cache RequestId: - - 86cb0759-b128-409c-8f8a-47301f507306 + - 412c8043-03e9-46f1-b95f-a68d6af32074 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -519,9 +528,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/b8d8b914-dc78-478b-ad97-dc80db117062/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders?recursive=True response: body: string: '{"value": []}' @@ -537,11 +546,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:44 GMT + - Wed, 20 May 2026 09:23:03 GMT Pragma: - no-cache RequestId: - - 8e5f670d-64cf-4bd0-8071-29240b6a26e2 + - 06bc9e90-c4bc-4797-af3f-229c008b8ceb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -565,17 +574,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/b8d8b914-dc78-478b-ad97-dc80db117062/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders response: body: - string: '{"id": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0", "displayName": "fabcli000003", - "workspaceId": "b8d8b914-dc78-478b-ad97-dc80db117062"}' + string: '{"id": "e1e51593-ca57-4875-80d7-5b12e7ef2644", "displayName": "fabcli000003", + "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -584,17 +593,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '134' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:45 GMT + - Wed, 20 May 2026 09:23:03 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062/folders/b9b12f64-d37b-4273-b0f7-1cc083db5ee0 + - https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders/e1e51593-ca57-4875-80d7-5b12e7ef2644 Pragma: - no-cache RequestId: - - 09db2ad6-7201-4515-8bf7-6e7de10fc77e + - 7acd989c-fba3-44b7-b790-d0a3509cf560 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -620,16 +629,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "82f63520-4c38-40af-a97e-a9c550d666d5", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4f842531-9348-4d09-a84f-d4e7cb7a9829", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -638,15 +650,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:45 GMT + - Wed, 20 May 2026 09:23:04 GMT Pragma: - no-cache RequestId: - - 53819fa2-0346-4363-836f-9a489eadcaa3 + - b1b026d3-7ff8-43be-87a6-ef75669ddb1c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -672,13 +684,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/b8d8b914-dc78-478b-ad97-dc80db117062/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders?recursive=True response: body: - string: '{"value": [{"id": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0", "displayName": - "fabcli000003", "workspaceId": "b8d8b914-dc78-478b-ad97-dc80db117062"}]}' + string: '{"value": [{"id": "e1e51593-ca57-4875-80d7-5b12e7ef2644", "displayName": + "fabcli000003", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -687,15 +699,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:46 GMT + - Wed, 20 May 2026 09:23:05 GMT Pragma: - no-cache RequestId: - - a6d75c96-775d-4d40-8f99-d5f9ca72643f + - 577b96d8-8443-4c15-b30b-4b6b800d8486 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -721,9 +733,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/b8d8b914-dc78-478b-ad97-dc80db117062/items + uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/items response: body: string: '{"value": []}' @@ -739,11 +751,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:47 GMT + - Wed, 20 May 2026 09:23:06 GMT Pragma: - no-cache RequestId: - - bb98cdd3-11e8-4517-8ba6-3a08f9858fb7 + - 3363723c-0f20-4efc-82ce-24e6f2bde2cb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -769,9 +781,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/b8d8b914-dc78-478b-ad97-dc80db117062/items + uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/items response: body: string: '{"value": []}' @@ -787,11 +799,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:48 GMT + - Wed, 20 May 2026 09:23:06 GMT Pragma: - no-cache RequestId: - - a8bf9b13-db29-4d60-a5ec-67aa54b48df8 + - 760997bc-df91-4e2c-a4e4-98a3cde9e121 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -806,8 +818,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000004", "type": - "KQLDashboard", "folderId": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0"}' + body: '{"displayName": "fabcli000004", "type": "KQLDashboard", "folderId": "e1e51593-ca57-4875-80d7-5b12e7ef2644"}' headers: Accept: - '*/*' @@ -816,18 +827,18 @@ interactions: Connection: - keep-alive Content-Length: - - '144' + - '111' 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/b8d8b914-dc78-478b-ad97-dc80db117062/kqlDashboards + uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/kqlDashboards response: body: - string: '{"id": "d97f6b0d-db51-42c0-8a88-4e39d275e06f", "type": "KQLDashboard", - "displayName": "fabcli000004", "workspaceId": - "b8d8b914-dc78-478b-ad97-dc80db117062", "folderId": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0"}' + string: '{"id": "49987fbb-d079-4f50-93cc-dd9260c34850", "type": "KQLDashboard", + "displayName": "fabcli000004", "description": "", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3", + "folderId": "e1e51593-ca57-4875-80d7-5b12e7ef2644"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -836,17 +847,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '202' + - '193' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:50 GMT + - Wed, 20 May 2026 09:23:10 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 8294c98d-07cb-4d12-a6df-5d2657da45c8 + - 3cdf1e49-d353-40eb-be2b-e04c4fd6559d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -872,16 +883,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "82f63520-4c38-40af-a97e-a9c550d666d5", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4f842531-9348-4d09-a84f-d4e7cb7a9829", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -890,15 +904,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:50 GMT + - Wed, 20 May 2026 09:23:11 GMT Pragma: - no-cache RequestId: - - cb136af0-f95f-4215-ae3e-a27b2f9f511f + - 662ef676-68dd-467c-94b0-a109eaaef77b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -924,13 +938,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/b8d8b914-dc78-478b-ad97-dc80db117062/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders?recursive=True response: body: - string: '{"value": [{"id": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0", "displayName": - "fabcli000003", "workspaceId": "b8d8b914-dc78-478b-ad97-dc80db117062"}]}' + string: '{"value": [{"id": "e1e51593-ca57-4875-80d7-5b12e7ef2644", "displayName": + "fabcli000003", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -939,15 +953,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:52 GMT + - Wed, 20 May 2026 09:23:11 GMT Pragma: - no-cache RequestId: - - d89bb4b9-03f6-4a44-8ca4-b1d04fa984f5 + - 25693a15-ab39-4080-af2a-706417b8fa8c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -973,16 +987,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "82f63520-4c38-40af-a97e-a9c550d666d5", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4f842531-9348-4d09-a84f-d4e7cb7a9829", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -991,15 +1008,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:52 GMT + - Wed, 20 May 2026 09:23:12 GMT Pragma: - no-cache RequestId: - - 15216104-a7f9-4b9a-9c4e-9b616add9c78 + - ab34d407-5eaf-43fe-bd31-a4990ac70c8a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1025,16 +1042,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "82f63520-4c38-40af-a97e-a9c550d666d5", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4f842531-9348-4d09-a84f-d4e7cb7a9829", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1043,15 +1063,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:53 GMT + - Wed, 20 May 2026 09:23:13 GMT Pragma: - no-cache RequestId: - - 512896cc-6555-4a87-a5a1-f264080f5db5 + - 8a7ba27c-2324-4fba-b198-1135b0505c17 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1077,9 +1097,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/82f63520-4c38-40af-a97e-a9c550d666d5/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/folders?recursive=True response: body: string: '{"value": []}' @@ -1095,11 +1115,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:55 GMT + - Wed, 20 May 2026 09:23:14 GMT Pragma: - no-cache RequestId: - - 496a4bdb-b5f0-488e-9313-5eaf8c365b51 + - d07e75ba-a87d-4c70-8054-ee69a373938f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1125,9 +1145,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/82f63520-4c38-40af-a97e-a9c550d666d5/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/folders?recursive=True response: body: string: '{"value": []}' @@ -1143,11 +1163,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:55 GMT + - Wed, 20 May 2026 09:23:15 GMT Pragma: - no-cache RequestId: - - 8a7d5877-073d-44a5-8315-6dba0c8d45d6 + - 9aa345dc-35cc-4e21-9d16-555508a10672 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1171,17 +1191,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/82f63520-4c38-40af-a97e-a9c550d666d5/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/folders response: body: - string: '{"id": "3c11c78a-9cd8-48bc-8cfe-2909668e2067", "displayName": "fabcli000003", - "workspaceId": "82f63520-4c38-40af-a97e-a9c550d666d5"}' + string: '{"id": "7e697fa0-38e8-4eba-8858-fca4c8111ca5", "displayName": "fabcli000003", + "workspaceId": "4f842531-9348-4d09-a84f-d4e7cb7a9829"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -1190,17 +1210,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '133' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:55 GMT + - Wed, 20 May 2026 09:23:15 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/82f63520-4c38-40af-a97e-a9c550d666d5/folders/3c11c78a-9cd8-48bc-8cfe-2909668e2067 + - https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/folders/7e697fa0-38e8-4eba-8858-fca4c8111ca5 Pragma: - no-cache RequestId: - - aa9c542f-2be6-44c2-9aa3-51c7801b2943 + - 48c798d8-32c6-4afc-9139-04e2103c0af0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1226,14 +1246,14 @@ 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/b8d8b914-dc78-478b-ad97-dc80db117062/items + uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/items response: body: - string: '{"value": [{"id": "d97f6b0d-db51-42c0-8a88-4e39d275e06f", "type": "KQLDashboard", - "displayName": "fabcli000004", "workspaceId": - "b8d8b914-dc78-478b-ad97-dc80db117062", "folderId": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0"}]}' + string: '{"value": [{"id": "49987fbb-d079-4f50-93cc-dd9260c34850", "type": "KQLDashboard", + "displayName": "fabcli000004", "description": "", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3", + "folderId": "e1e51593-ca57-4875-80d7-5b12e7ef2644"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1242,15 +1262,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '213' + - '204' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:17:56 GMT + - Wed, 20 May 2026 09:23:16 GMT Pragma: - no-cache RequestId: - - 825a1ca0-c4f5-4bab-995a-4577ae963f4c + - 76975a63-c920-4073-9ad3-cb7d69487e26 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1276,53 +1296,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/b8d8b914-dc78-478b-ad97-dc80db117062/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders?recursive=True response: body: - string: '{"requestId": "2f2d9502-e189-44af-8052-1d7544199a21", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 8:18:02 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 08:17:57 GMT - RequestId: - - 2f2d9502-e189-44af-8052-1d7544199a21 - Retry-After: - - '4' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/b8d8b914-dc78-478b-ad97-dc80db117062/folders?recursive=True - response: - body: - string: '{"value": [{"id": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0", "displayName": - "fabcli000003", "workspaceId": "b8d8b914-dc78-478b-ad97-dc80db117062"}]}' + string: '{"value": [{"id": "e1e51593-ca57-4875-80d7-5b12e7ef2644", "displayName": + "fabcli000003", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1331,15 +1311,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:18:03 GMT + - Wed, 20 May 2026 09:23:17 GMT Pragma: - no-cache RequestId: - - 4518c24f-fb74-48bf-9e99-2ae2f1a79a19 + - 9616b635-ffc7-4d29-8ffb-b003a6d12bc2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1365,13 +1345,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/b8d8b914-dc78-478b-ad97-dc80db117062/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders?recursive=True response: body: - string: '{"value": [{"id": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0", "displayName": - "fabcli000003", "workspaceId": "b8d8b914-dc78-478b-ad97-dc80db117062"}]}' + string: '{"value": [{"id": "e1e51593-ca57-4875-80d7-5b12e7ef2644", "displayName": + "fabcli000003", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1380,15 +1360,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:18:03 GMT + - Wed, 20 May 2026 09:23:18 GMT Pragma: - no-cache RequestId: - - 3e756c95-c3fd-40db-bf22-de4565367ba9 + - d81c2e78-24bb-42ec-8ab7-ae69bb17df60 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1414,14 +1394,14 @@ 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/b8d8b914-dc78-478b-ad97-dc80db117062/items + uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/items response: body: - string: '{"value": [{"id": "d97f6b0d-db51-42c0-8a88-4e39d275e06f", "type": "KQLDashboard", - "displayName": "fabcli000004", "workspaceId": - "b8d8b914-dc78-478b-ad97-dc80db117062", "folderId": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0"}]}' + string: '{"value": [{"id": "49987fbb-d079-4f50-93cc-dd9260c34850", "type": "KQLDashboard", + "displayName": "fabcli000004", "description": "", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3", + "folderId": "e1e51593-ca57-4875-80d7-5b12e7ef2644"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1430,15 +1410,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '213' + - '204' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:18:04 GMT + - Wed, 20 May 2026 09:23:19 GMT Pragma: - no-cache RequestId: - - f0091949-4456-4812-b5ef-5057353c94d1 + - d933b5aa-67bc-4f61-94ca-1c2f0dc032ea Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1464,13 +1444,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/b8d8b914-dc78-478b-ad97-dc80db117062/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders?recursive=True response: body: - string: '{"value": [{"id": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0", "displayName": - "fabcli000003", "workspaceId": "b8d8b914-dc78-478b-ad97-dc80db117062"}]}' + string: '{"value": [{"id": "e1e51593-ca57-4875-80d7-5b12e7ef2644", "displayName": + "fabcli000003", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1479,15 +1459,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:18:04 GMT + - Wed, 20 May 2026 09:23:20 GMT Pragma: - no-cache RequestId: - - 2b5f09a9-51bf-4e51-9160-26a77696aaf4 + - c7b36c74-b3a5-499b-aa04-3739bf8c9ba2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1513,13 +1493,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/b8d8b914-dc78-478b-ad97-dc80db117062/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders?recursive=True response: body: - string: '{"value": [{"id": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0", "displayName": - "fabcli000003", "workspaceId": "b8d8b914-dc78-478b-ad97-dc80db117062"}]}' + string: '{"value": [{"id": "e1e51593-ca57-4875-80d7-5b12e7ef2644", "displayName": + "fabcli000003", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1528,15 +1508,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:18:06 GMT + - Wed, 20 May 2026 09:23:21 GMT Pragma: - no-cache RequestId: - - 220f3ad0-78e1-4ee1-9781-c5e4f9d282dd + - bfca2e79-b3f8-4d0d-a281-fea442c7e4c6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1562,16 +1542,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "82f63520-4c38-40af-a97e-a9c550d666d5", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4f842531-9348-4d09-a84f-d4e7cb7a9829", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1580,15 +1563,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:18:06 GMT + - Wed, 20 May 2026 09:23:21 GMT Pragma: - no-cache RequestId: - - 69e1b655-a92c-4b2d-ab49-32928c4298f7 + - 164005be-4b7c-4170-b666-8f7ddb4152ab Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1614,13 +1597,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/82f63520-4c38-40af-a97e-a9c550d666d5/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/folders?recursive=True response: body: - string: '{"value": [{"id": "3c11c78a-9cd8-48bc-8cfe-2909668e2067", "displayName": - "fabcli000003", "workspaceId": "82f63520-4c38-40af-a97e-a9c550d666d5"}]}' + string: '{"value": [{"id": "7e697fa0-38e8-4eba-8858-fca4c8111ca5", "displayName": + "fabcli000003", "workspaceId": "4f842531-9348-4d09-a84f-d4e7cb7a9829"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1629,15 +1612,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:18:08 GMT + - Wed, 20 May 2026 09:23:22 GMT Pragma: - no-cache RequestId: - - a77b9f78-a496-4fc4-bbf2-acd2b98bfb9e + - 7f615b67-8067-4af7-9edb-3f7211823d7c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1663,9 +1646,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/82f63520-4c38-40af-a97e-a9c550d666d5/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/items response: body: string: '{"value": []}' @@ -1681,11 +1664,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:18:08 GMT + - Wed, 20 May 2026 09:23:23 GMT Pragma: - no-cache RequestId: - - dfb30c8b-73f9-4ee6-98cd-fc14306743fd + - f62a06af-33b2-4f3d-8ba7-adf8ea759b30 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1711,9 +1694,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/82f63520-4c38-40af-a97e-a9c550d666d5/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/items response: body: string: '{"value": []}' @@ -1729,11 +1712,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:18:09 GMT + - Wed, 20 May 2026 09:23:24 GMT Pragma: - no-cache RequestId: - - ff02e755-9fd3-4acf-979e-26f8c97b5687 + - 6647069e-3566-47f5-a9b5-6b19890639b7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1759,9 +1742,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/82f63520-4c38-40af-a97e-a9c550d666d5/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/items response: body: string: '{"value": []}' @@ -1777,11 +1760,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:18:10 GMT + - Wed, 20 May 2026 09:23:24 GMT Pragma: - no-cache RequestId: - - a1e3cb13-e08d-486d-bf1a-468a3c5169fd + - 5d54b793-dc6f-452f-b20c-e29b148287a2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1807,14 +1790,14 @@ 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/b8d8b914-dc78-478b-ad97-dc80db117062/items/d97f6b0d-db51-42c0-8a88-4e39d275e06f + uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/items/49987fbb-d079-4f50-93cc-dd9260c34850 response: body: - string: '{"id": "d97f6b0d-db51-42c0-8a88-4e39d275e06f", "type": "KQLDashboard", - "displayName": "fabcli000004", "workspaceId": - "b8d8b914-dc78-478b-ad97-dc80db117062", "folderId": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0"}' + string: '{"id": "49987fbb-d079-4f50-93cc-dd9260c34850", "type": "KQLDashboard", + "displayName": "fabcli000004", "description": "", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3", + "folderId": "e1e51593-ca57-4875-80d7-5b12e7ef2644"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1823,17 +1806,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '202' + - '193' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:18:10 GMT + - Wed, 20 May 2026 09:23:26 GMT ETag: - '""' Pragma: - no-cache RequestId: - - cc627602-ffd7-4040-b98d-c541cc5ee048 + - 65ef6e50-df8c-449a-891d-17e0187a9ade Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1861,13 +1844,13 @@ interactions: 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/b8d8b914-dc78-478b-ad97-dc80db117062/items/d97f6b0d-db51-42c0-8a88-4e39d275e06f/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/items/49987fbb-d079-4f50-93cc-dd9260c34850/getDefinition response: body: string: '{"definition": {"parts": [{"path": "RealTimeDashboard.json", "payload": - "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTERhc2hib2FyZCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTERhc2hib2FyZCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -1877,15 +1860,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '434' + - '407' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:18:12 GMT + - Wed, 20 May 2026 09:23:27 GMT Pragma: - no-cache RequestId: - - 6e1b72ca-3179-45df-8071-633ac3e73048 + - 24e55907-86f9-44f1-a5f2-559869c44719 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1900,11 +1883,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "KQLDashboard", "displayName": - "fabcli000004", "definition": {"parts": [{"path": "RealTimeDashboard.json", - "payload": "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": - "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTERhc2hib2FyZCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", - "payloadType": "InlineBase64"}]}, "folderId": "3c11c78a-9cd8-48bc-8cfe-2909668e2067"}' + body: '{"type": "KQLDashboard", "displayName": "fabcli000004", "definition": {"parts": + [{"path": "RealTimeDashboard.json", "payload": "e30=", "payloadType": "InlineBase64"}, + {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTERhc2hib2FyZCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "payloadType": "InlineBase64"}]}, "folderId": "7e697fa0-38e8-4eba-8858-fca4c8111ca5"}' headers: Accept: - '*/*' @@ -1913,18 +1895,18 @@ interactions: Connection: - keep-alive Content-Length: - - '786' + - '701' 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/82f63520-4c38-40af-a97e-a9c550d666d5/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/items response: body: - string: '{"id": "b4a24af6-2bf5-4ec8-8a91-9d6e3fdd16ae", "type": "KQLDashboard", - "displayName": "fabcli000004", "workspaceId": - "82f63520-4c38-40af-a97e-a9c550d666d5", "folderId": "3c11c78a-9cd8-48bc-8cfe-2909668e2067"}' + string: '{"id": "f8ae11e0-b87d-49d4-997f-e93495d56996", "type": "KQLDashboard", + "displayName": "fabcli000004", "description": "", "workspaceId": "4f842531-9348-4d09-a84f-d4e7cb7a9829", + "folderId": "7e697fa0-38e8-4eba-8858-fca4c8111ca5"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1933,17 +1915,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '202' + - '192' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:18:16 GMT + - Wed, 20 May 2026 09:23:30 GMT ETag: - '""' Pragma: - no-cache RequestId: - - bae1c4dc-3ad8-4fbc-b474-1bc49e09e7c9 + - 0d265722-3c2c-47b6-9328-a7dd3e2e3b67 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1969,14 +1951,14 @@ 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/b8d8b914-dc78-478b-ad97-dc80db117062/items + uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/items response: body: - string: '{"value": [{"id": "d97f6b0d-db51-42c0-8a88-4e39d275e06f", "type": "KQLDashboard", - "displayName": "fabcli000004", "workspaceId": - "b8d8b914-dc78-478b-ad97-dc80db117062", "folderId": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0"}]}' + string: '{"value": [{"id": "49987fbb-d079-4f50-93cc-dd9260c34850", "type": "KQLDashboard", + "displayName": "fabcli000004", "description": "", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3", + "folderId": "e1e51593-ca57-4875-80d7-5b12e7ef2644"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1985,15 +1967,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '213' + - '204' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:18:17 GMT + - Wed, 20 May 2026 09:23:31 GMT Pragma: - no-cache RequestId: - - 5c38cfe3-26d9-43d4-a63a-d5099df4a518 + - 88526337-5db4-469f-aad4-15a8578f2f5c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2019,13 +2001,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/b8d8b914-dc78-478b-ad97-dc80db117062/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders?recursive=True response: body: - string: '{"value": [{"id": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0", "displayName": - "fabcli000003", "workspaceId": "b8d8b914-dc78-478b-ad97-dc80db117062"}]}' + string: '{"value": [{"id": "e1e51593-ca57-4875-80d7-5b12e7ef2644", "displayName": + "fabcli000003", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2034,15 +2016,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:18:18 GMT + - Wed, 20 May 2026 09:23:32 GMT Pragma: - no-cache RequestId: - - 6b0f14d1-4eb9-4820-907f-78b8b5e45672 + - 52edf2d4-3191-4979-b290-af04309ba405 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2068,13 +2050,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/b8d8b914-dc78-478b-ad97-dc80db117062/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders?recursive=True response: body: - string: '{"value": [{"id": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0", "displayName": - "fabcli000003", "workspaceId": "b8d8b914-dc78-478b-ad97-dc80db117062"}]}' + string: '{"value": [{"id": "e1e51593-ca57-4875-80d7-5b12e7ef2644", "displayName": + "fabcli000003", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2083,15 +2065,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:18:19 GMT + - Wed, 20 May 2026 09:23:32 GMT Pragma: - no-cache RequestId: - - 57435b87-ead9-4443-b80c-8a08a982ff77 + - 81fb5606-eb0c-4b88-b7e2-e6d83f59b9dc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2117,16 +2099,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "82f63520-4c38-40af-a97e-a9c550d666d5", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4f842531-9348-4d09-a84f-d4e7cb7a9829", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2135,15 +2120,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:18:20 GMT + - Wed, 20 May 2026 09:23:33 GMT Pragma: - no-cache RequestId: - - 5134f61b-aa1b-41d9-8bdf-15d0e4e6caea + - 459ab48c-b453-4c1b-b5c0-4abbce3afa72 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2169,14 +2154,14 @@ 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/82f63520-4c38-40af-a97e-a9c550d666d5/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/items response: body: - string: '{"value": [{"id": "b4a24af6-2bf5-4ec8-8a91-9d6e3fdd16ae", "type": "KQLDashboard", - "displayName": "fabcli000004", "workspaceId": - "82f63520-4c38-40af-a97e-a9c550d666d5", "folderId": "3c11c78a-9cd8-48bc-8cfe-2909668e2067"}]}' + string: '{"value": [{"id": "f8ae11e0-b87d-49d4-997f-e93495d56996", "type": "KQLDashboard", + "displayName": "fabcli000004", "description": "", "workspaceId": "4f842531-9348-4d09-a84f-d4e7cb7a9829", + "folderId": "7e697fa0-38e8-4eba-8858-fca4c8111ca5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2185,15 +2170,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '215' + - '204' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:18:20 GMT + - Wed, 20 May 2026 09:23:34 GMT Pragma: - no-cache RequestId: - - 4fab3639-1079-4b45-a9bd-bd64462d8506 + - f9b687ef-16dc-4963-84b0-e3f71bf2fd7a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2219,13 +2204,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/82f63520-4c38-40af-a97e-a9c550d666d5/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/folders?recursive=True response: body: - string: '{"value": [{"id": "3c11c78a-9cd8-48bc-8cfe-2909668e2067", "displayName": - "fabcli000003", "workspaceId": "82f63520-4c38-40af-a97e-a9c550d666d5"}]}' + string: '{"value": [{"id": "7e697fa0-38e8-4eba-8858-fca4c8111ca5", "displayName": + "fabcli000003", "workspaceId": "4f842531-9348-4d09-a84f-d4e7cb7a9829"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2234,15 +2219,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:18:21 GMT + - Wed, 20 May 2026 09:23:34 GMT Pragma: - no-cache RequestId: - - ff389cf1-56c5-43b3-aecd-0258b93d8ab5 + - dc688943-a0cb-49d0-b24c-2e2e81a6a591 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2268,13 +2253,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/82f63520-4c38-40af-a97e-a9c550d666d5/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/folders?recursive=True response: body: - string: '{"value": [{"id": "3c11c78a-9cd8-48bc-8cfe-2909668e2067", "displayName": - "fabcli000003", "workspaceId": "82f63520-4c38-40af-a97e-a9c550d666d5"}]}' + string: '{"value": [{"id": "7e697fa0-38e8-4eba-8858-fca4c8111ca5", "displayName": + "fabcli000003", "workspaceId": "4f842531-9348-4d09-a84f-d4e7cb7a9829"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2283,15 +2268,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:18:21 GMT + - Wed, 20 May 2026 09:23:35 GMT Pragma: - no-cache RequestId: - - a1f51ec5-e765-4918-8afc-a9940a9dd528 + - 88226efb-8b4a-4ae8-a4dc-031dd664b8cd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2317,16 +2302,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "82f63520-4c38-40af-a97e-a9c550d666d5", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4f842531-9348-4d09-a84f-d4e7cb7a9829", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2335,15 +2323,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:18:23 GMT + - Wed, 20 May 2026 09:23:35 GMT Pragma: - no-cache RequestId: - - 1a22d6ac-53d8-49d6-8f8a-41a3caec0354 + - 3cd8bfbe-87e6-43ef-acf8-d91df47d39b2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2369,13 +2357,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/82f63520-4c38-40af-a97e-a9c550d666d5/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/folders?recursive=True response: body: - string: '{"value": [{"id": "3c11c78a-9cd8-48bc-8cfe-2909668e2067", "displayName": - "fabcli000003", "workspaceId": "82f63520-4c38-40af-a97e-a9c550d666d5"}]}' + string: '{"value": [{"id": "7e697fa0-38e8-4eba-8858-fca4c8111ca5", "displayName": + "fabcli000003", "workspaceId": "4f842531-9348-4d09-a84f-d4e7cb7a9829"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2384,15 +2372,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:18:23 GMT + - Wed, 20 May 2026 09:23:36 GMT Pragma: - no-cache RequestId: - - 569e8c2a-cd73-4bb0-af88-fae105773594 + - 17950979-e4e3-4506-8f01-93fbde38c9ec Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2418,14 +2406,14 @@ 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/82f63520-4c38-40af-a97e-a9c550d666d5/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/items response: body: - string: '{"value": [{"id": "b4a24af6-2bf5-4ec8-8a91-9d6e3fdd16ae", "type": "KQLDashboard", - "displayName": "fabcli000004", "workspaceId": - "82f63520-4c38-40af-a97e-a9c550d666d5", "folderId": "3c11c78a-9cd8-48bc-8cfe-2909668e2067"}]}' + string: '{"value": [{"id": "f8ae11e0-b87d-49d4-997f-e93495d56996", "type": "KQLDashboard", + "displayName": "fabcli000004", "description": "", "workspaceId": "4f842531-9348-4d09-a84f-d4e7cb7a9829", + "folderId": "7e697fa0-38e8-4eba-8858-fca4c8111ca5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2434,15 +2422,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '215' + - '204' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:18:24 GMT + - Wed, 20 May 2026 09:23:37 GMT Pragma: - no-cache RequestId: - - f82f4416-7e34-46c1-893e-e6d7cb596a94 + - b3b063d2-0a90-4b92-8269-6b199e57979b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2468,53 +2456,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/82f63520-4c38-40af-a97e-a9c550d666d5/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/folders?recursive=True response: body: - string: '{"requestId": "b135c701-f68e-4b5c-b18d-61b8a3f6067a", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 8:19:03 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 08:18:25 GMT - RequestId: - - b135c701-f68e-4b5c-b18d-61b8a3f6067a - Retry-After: - - '38' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/82f63520-4c38-40af-a97e-a9c550d666d5/folders?recursive=True - response: - body: - string: '{"value": [{"id": "3c11c78a-9cd8-48bc-8cfe-2909668e2067", "displayName": - "fabcli000003", "workspaceId": "82f63520-4c38-40af-a97e-a9c550d666d5"}]}' + string: '{"value": [{"id": "7e697fa0-38e8-4eba-8858-fca4c8111ca5", "displayName": + "fabcli000003", "workspaceId": "4f842531-9348-4d09-a84f-d4e7cb7a9829"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2523,15 +2471,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:19:06 GMT + - Wed, 20 May 2026 09:23:37 GMT Pragma: - no-cache RequestId: - - 0cd047e5-6d15-4916-9873-6aa9117c78ae + - 621af4da-f77a-41bd-a41e-8194cfe0d07d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2557,13 +2505,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/82f63520-4c38-40af-a97e-a9c550d666d5/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/folders?recursive=True response: body: - string: '{"value": [{"id": "3c11c78a-9cd8-48bc-8cfe-2909668e2067", "displayName": - "fabcli000003", "workspaceId": "82f63520-4c38-40af-a97e-a9c550d666d5"}]}' + string: '{"value": [{"id": "7e697fa0-38e8-4eba-8858-fca4c8111ca5", "displayName": + "fabcli000003", "workspaceId": "4f842531-9348-4d09-a84f-d4e7cb7a9829"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2572,15 +2520,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:19:07 GMT + - Wed, 20 May 2026 09:23:38 GMT Pragma: - no-cache RequestId: - - 368b0202-26de-487f-8a50-d7774b5a0875 + - 21c80999-af86-45b4-b5aa-4779da9706ab Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2606,16 +2554,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "82f63520-4c38-40af-a97e-a9c550d666d5", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4f842531-9348-4d09-a84f-d4e7cb7a9829", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2624,15 +2575,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:19:08 GMT + - Wed, 20 May 2026 09:23:38 GMT Pragma: - no-cache RequestId: - - d66e2684-8ea6-43fe-99dd-77f86f417101 + - 516a87cc-1428-4ad9-a487-b96fa89c3c96 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2658,13 +2609,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/82f63520-4c38-40af-a97e-a9c550d666d5/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/folders?recursive=True response: body: - string: '{"value": [{"id": "3c11c78a-9cd8-48bc-8cfe-2909668e2067", "displayName": - "fabcli000003", "workspaceId": "82f63520-4c38-40af-a97e-a9c550d666d5"}]}' + string: '{"value": [{"id": "7e697fa0-38e8-4eba-8858-fca4c8111ca5", "displayName": + "fabcli000003", "workspaceId": "4f842531-9348-4d09-a84f-d4e7cb7a9829"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2673,15 +2624,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:19:08 GMT + - Wed, 20 May 2026 09:23:39 GMT Pragma: - no-cache RequestId: - - ed4a706d-19a4-4af6-9ef8-f54a8bc03ae4 + - 9616b5d1-2c75-45db-8c5b-709cc48ab17b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2707,14 +2658,14 @@ 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/82f63520-4c38-40af-a97e-a9c550d666d5/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/items response: body: - string: '{"value": [{"id": "b4a24af6-2bf5-4ec8-8a91-9d6e3fdd16ae", "type": "KQLDashboard", - "displayName": "fabcli000004", "workspaceId": - "82f63520-4c38-40af-a97e-a9c550d666d5", "folderId": "3c11c78a-9cd8-48bc-8cfe-2909668e2067"}]}' + string: '{"value": [{"id": "f8ae11e0-b87d-49d4-997f-e93495d56996", "type": "KQLDashboard", + "displayName": "fabcli000004", "description": "", "workspaceId": "4f842531-9348-4d09-a84f-d4e7cb7a9829", + "folderId": "7e697fa0-38e8-4eba-8858-fca4c8111ca5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2723,15 +2674,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '215' + - '204' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:19:09 GMT + - Wed, 20 May 2026 09:23:40 GMT Pragma: - no-cache RequestId: - - 964df57c-96a7-43c6-89a0-86615929c41a + - edce27eb-67c5-4236-bb25-af72558269c8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2757,13 +2708,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/82f63520-4c38-40af-a97e-a9c550d666d5/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/folders?recursive=True response: body: - string: '{"value": [{"id": "3c11c78a-9cd8-48bc-8cfe-2909668e2067", "displayName": - "fabcli000003", "workspaceId": "82f63520-4c38-40af-a97e-a9c550d666d5"}]}' + string: '{"value": [{"id": "7e697fa0-38e8-4eba-8858-fca4c8111ca5", "displayName": + "fabcli000003", "workspaceId": "4f842531-9348-4d09-a84f-d4e7cb7a9829"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2772,15 +2723,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:19:10 GMT + - Wed, 20 May 2026 09:23:40 GMT Pragma: - no-cache RequestId: - - cdeb7584-98ff-4195-8926-bab5469c8324 + - 13550119-ade0-4dff-942b-7cb8e5d7fd7f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2808,9 +2759,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/82f63520-4c38-40af-a97e-a9c550d666d5/items/b4a24af6-2bf5-4ec8-8a91-9d6e3fdd16ae + uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/items/f8ae11e0-b87d-49d4-997f-e93495d56996 response: body: string: '' @@ -2826,11 +2777,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:19:11 GMT + - Wed, 20 May 2026 09:23:41 GMT Pragma: - no-cache RequestId: - - 757dd63f-7f91-4685-96fc-1916cd857f76 + - 3723896e-e818-47e1-b833-59eab88a73f7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2856,16 +2807,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "82f63520-4c38-40af-a97e-a9c550d666d5", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4f842531-9348-4d09-a84f-d4e7cb7a9829", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2874,15 +2828,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:19:12 GMT + - Wed, 20 May 2026 09:23:42 GMT Pragma: - no-cache RequestId: - - a5d227ff-a10d-4f09-bd78-c2d1dcef05e7 + - 870b82d5-3cec-4121-8898-d446e7bbf9dc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2908,13 +2862,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/82f63520-4c38-40af-a97e-a9c550d666d5/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/folders?recursive=True response: body: - string: '{"value": [{"id": "3c11c78a-9cd8-48bc-8cfe-2909668e2067", "displayName": - "fabcli000003", "workspaceId": "82f63520-4c38-40af-a97e-a9c550d666d5"}]}' + string: '{"value": [{"id": "7e697fa0-38e8-4eba-8858-fca4c8111ca5", "displayName": + "fabcli000003", "workspaceId": "4f842531-9348-4d09-a84f-d4e7cb7a9829"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2923,15 +2877,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:19:13 GMT + - Wed, 20 May 2026 09:23:42 GMT Pragma: - no-cache RequestId: - - 058e5475-790d-4596-8b5f-f1504b3dc9a9 + - 76bb6145-cb67-42d2-8807-3d6fed9fffad Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2959,9 +2913,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/82f63520-4c38-40af-a97e-a9c550d666d5/folders/3c11c78a-9cd8-48bc-8cfe-2909668e2067 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/folders/7e697fa0-38e8-4eba-8858-fca4c8111ca5 response: body: string: '' @@ -2977,11 +2931,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:19:14 GMT + - Wed, 20 May 2026 09:23:43 GMT Pragma: - no-cache RequestId: - - 23e96b8a-14c8-4564-9696-9deaa0aa0d2b + - af3d666f-9341-4c8b-a94e-609e501ad6b9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3007,16 +2961,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "82f63520-4c38-40af-a97e-a9c550d666d5", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4f842531-9348-4d09-a84f-d4e7cb7a9829", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3025,15 +2982,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:19:14 GMT + - Wed, 20 May 2026 09:23:43 GMT Pragma: - no-cache RequestId: - - 69048cad-41f4-4d40-84fc-07f0e8d6cbb5 + - 88e9f0ec-0451-4f53-ae82-463fd39726c6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3059,13 +3016,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/b8d8b914-dc78-478b-ad97-dc80db117062/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders?recursive=True response: body: - string: '{"value": [{"id": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0", "displayName": - "fabcli000003", "workspaceId": "b8d8b914-dc78-478b-ad97-dc80db117062"}]}' + string: '{"value": [{"id": "e1e51593-ca57-4875-80d7-5b12e7ef2644", "displayName": + "fabcli000003", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3074,15 +3031,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:19:15 GMT + - Wed, 20 May 2026 09:23:43 GMT Pragma: - no-cache RequestId: - - c407d37f-596f-410e-833b-47906db70dde + - 9f565c34-61fe-415c-990a-f797a12acd00 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3108,14 +3065,14 @@ 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/b8d8b914-dc78-478b-ad97-dc80db117062/items + uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/items response: body: - string: '{"value": [{"id": "d97f6b0d-db51-42c0-8a88-4e39d275e06f", "type": "KQLDashboard", - "displayName": "fabcli000004", "workspaceId": - "b8d8b914-dc78-478b-ad97-dc80db117062", "folderId": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0"}]}' + string: '{"value": [{"id": "49987fbb-d079-4f50-93cc-dd9260c34850", "type": "KQLDashboard", + "displayName": "fabcli000004", "description": "", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3", + "folderId": "e1e51593-ca57-4875-80d7-5b12e7ef2644"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3124,15 +3081,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '213' + - '204' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:19:16 GMT + - Wed, 20 May 2026 09:23:45 GMT Pragma: - no-cache RequestId: - - 93b07d5a-3717-4a75-8b07-8b3248181327 + - 04cfc665-4602-4524-a99d-58472c7d8fcb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3158,13 +3115,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/b8d8b914-dc78-478b-ad97-dc80db117062/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders?recursive=True response: body: - string: '{"value": [{"id": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0", "displayName": - "fabcli000003", "workspaceId": "b8d8b914-dc78-478b-ad97-dc80db117062"}]}' + string: '{"value": [{"id": "e1e51593-ca57-4875-80d7-5b12e7ef2644", "displayName": + "fabcli000003", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3173,15 +3130,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:19:17 GMT + - Wed, 20 May 2026 09:23:46 GMT Pragma: - no-cache RequestId: - - 64cff1e0-afc2-48b0-b604-65d8b143d4e6 + - 2fd92a85-ed39-4567-a877-03c1fc9a695e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3209,9 +3166,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/b8d8b914-dc78-478b-ad97-dc80db117062/items/d97f6b0d-db51-42c0-8a88-4e39d275e06f + uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/items/49987fbb-d079-4f50-93cc-dd9260c34850 response: body: string: '' @@ -3227,11 +3184,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:19:17 GMT + - Wed, 20 May 2026 09:23:47 GMT Pragma: - no-cache RequestId: - - fb77b0e3-4509-44a7-9e33-a0164b5d986e + - f0434d4b-bb67-4f83-9cc4-da0df2f221a2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3257,16 +3214,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "82f63520-4c38-40af-a97e-a9c550d666d5", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4f842531-9348-4d09-a84f-d4e7cb7a9829", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3275,15 +3235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:19:18 GMT + - Wed, 20 May 2026 09:23:48 GMT Pragma: - no-cache RequestId: - - f274ddfc-98dd-45d4-a17e-30562f3b27d4 + - ce83c7ca-faa2-42ab-b6a5-e8eb1cbdd40a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3309,13 +3269,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/b8d8b914-dc78-478b-ad97-dc80db117062/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders?recursive=True response: body: - string: '{"value": [{"id": "b9b12f64-d37b-4273-b0f7-1cc083db5ee0", "displayName": - "fabcli000003", "workspaceId": "b8d8b914-dc78-478b-ad97-dc80db117062"}]}' + string: '{"value": [{"id": "e1e51593-ca57-4875-80d7-5b12e7ef2644", "displayName": + "fabcli000003", "workspaceId": "11f21749-0869-409c-84ea-531f5afe92e3"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3324,15 +3284,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:19:20 GMT + - Wed, 20 May 2026 09:23:48 GMT Pragma: - no-cache RequestId: - - 0f60d745-88fe-4f1b-bcde-cd58b09ab83d + - 14766aaf-8553-4073-b319-eb8304d61526 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3360,9 +3320,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/b8d8b914-dc78-478b-ad97-dc80db117062/folders/b9b12f64-d37b-4273-b0f7-1cc083db5ee0 + uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/folders/e1e51593-ca57-4875-80d7-5b12e7ef2644 response: body: string: '' @@ -3378,11 +3338,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:19:20 GMT + - Wed, 20 May 2026 09:23:48 GMT Pragma: - no-cache RequestId: - - 4b5cea96-f813-4c6a-8daf-43bd880f2df1 + - 3cad4992-eb7b-4cd2-8e3e-c543e3e83646 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3408,16 +3368,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b8d8b914-dc78-478b-ad97-dc80db117062", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "82f63520-4c38-40af-a97e-a9c550d666d5", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "11f21749-0869-409c-84ea-531f5afe92e3", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4f842531-9348-4d09-a84f-d4e7cb7a9829", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3426,15 +3389,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:19:21 GMT + - Wed, 20 May 2026 09:23:50 GMT Pragma: - no-cache RequestId: - - f73e0557-f9a7-4e9b-8d97-d42004f13e4e + - 8baef868-659d-49f0-8410-662c36d7def3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3460,9 +3423,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/b8d8b914-dc78-478b-ad97-dc80db117062/items + uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3/items response: body: string: '{"value": []}' @@ -3478,11 +3441,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:19:21 GMT + - Wed, 20 May 2026 09:23:50 GMT Pragma: - no-cache RequestId: - - 5a015bf7-082b-4275-8936-c02c5de06be1 + - ec504a06-0bab-4d78-a57a-b7bf3288e635 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3510,9 +3473,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/b8d8b914-dc78-478b-ad97-dc80db117062 + uri: https://api.fabric.microsoft.com/v1/workspaces/11f21749-0869-409c-84ea-531f5afe92e3 response: body: string: '' @@ -3528,11 +3491,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:19:23 GMT + - Wed, 20 May 2026 09:23:51 GMT Pragma: - no-cache RequestId: - - bf6dd207-64d2-4c4b-82a7-ed4a136b4c3e + - 5f782525-6132-4443-b2a0-acd851440ce3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3558,15 +3521,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "82f63520-4c38-40af-a97e-a9c550d666d5", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4f842531-9348-4d09-a84f-d4e7cb7a9829", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3575,15 +3540,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2840' + - '2660' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:19:24 GMT + - Wed, 20 May 2026 09:23:52 GMT Pragma: - no-cache RequestId: - - 184d92bb-b8c8-435b-ab75-459380dd600c + - 8842c898-32f2-41bb-98f7-61e0a1c47a8c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3609,9 +3574,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/82f63520-4c38-40af-a97e-a9c550d666d5/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829/items response: body: string: '{"value": []}' @@ -3627,11 +3592,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:19:24 GMT + - Wed, 20 May 2026 09:23:53 GMT Pragma: - no-cache RequestId: - - a06fff1d-c2fd-4bef-b692-25ffd04b941c + - 013d928f-93f9-4a5b-bab7-7e98858f104b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3659,9 +3624,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/82f63520-4c38-40af-a97e-a9c550d666d5 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f842531-9348-4d09-a84f-d4e7cb7a9829 response: body: string: '' @@ -3677,11 +3642,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:19:25 GMT + - Wed, 20 May 2026 09:23:54 GMT Pragma: - no-cache RequestId: - - cbad9ad2-1d06-4b83-9fab-2192beaf1b78 + - f3169d26-9e37-40a5-a2d4-5d3b4bea767a 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[KQLQueryset].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[KQLQueryset].yaml index ca468667d..18b98dab8 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[KQLQueryset].yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[KQLQueryset].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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:19:26 GMT + - Wed, 20 May 2026 09:23:55 GMT Pragma: - no-cache RequestId: - - 7c7b9ccd-453d-444b-9c04-907732a8559a + - 6ba0899e-e41f-41ef-9dea-6870697124e3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:19:27 GMT + - Wed, 20 May 2026 09:23:55 GMT Pragma: - no-cache RequestId: - - dcd9d914-5f3e-4521-9e71-cbabbba67740 + - 1e5b6a56-91d7-49e9-b62f-360fec3bee45 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,7 +113,7 @@ 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/capacities response: @@ -127,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '425' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:19:32 GMT + - Wed, 20 May 2026 09:24:00 GMT Pragma: - no-cache RequestId: - - 5462b85b-9a52-4970-9142-b4771c2bbced + - 136eb465-e6b4-4ad4-981b-954613846ee0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -150,8 +152,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -160,16 +161,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -178,17 +180,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '153' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:19:41 GMT + - Wed, 20 May 2026 09:24:09 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41 + - https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c Pragma: - no-cache RequestId: - - 1e471717-5a2d-41f5-9d72-b236eaf8a4e0 + - 8e66ab3a-9b3b-48ca-aade-6e33aa95d4b7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,15 +216,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -231,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2843' + - '2659' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:19:41 GMT + - Wed, 20 May 2026 09:24:09 GMT Pragma: - no-cache RequestId: - - 4abb917c-1682-4a63-bb50-e3f68b6dcccd + - 82e89745-e86b-4d11-a150-e3679d023279 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,15 +269,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -282,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2843' + - '2659' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:19:43 GMT + - Wed, 20 May 2026 09:24:09 GMT Pragma: - no-cache RequestId: - - 1ec61cbe-910d-45bf-bc3b-bf3057c8efde + - 479516f2-cfd0-41ca-8078-e3df5a03517f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,7 +322,7 @@ 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/capacities response: @@ -332,15 +338,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '427' + - '425' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:19:48 GMT + - Wed, 20 May 2026 09:24:15 GMT Pragma: - no-cache RequestId: - - 3dcccd26-d283-48e8-9230-8d5b9fb1bb1a + - 4d7953a6-3c12-48ed-a4fe-d7b0fc44b7f1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -355,8 +361,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000002", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -365,16 +370,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -383,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '154' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:19:55 GMT + - Wed, 20 May 2026 09:24:23 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1 + - https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab Pragma: - no-cache RequestId: - - b2024f1a-10cb-483e-b740-783367be7b7f + - 34096b97-3f52-46eb-891f-a21ffeb66f5c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -419,16 +425,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -437,15 +446,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2877' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:19:56 GMT + - Wed, 20 May 2026 09:24:24 GMT Pragma: - no-cache RequestId: - - 846109c4-9531-48bb-a6f7-9b894b046922 + - 5af00c40-ed82-4568-8625-929f2a39acd7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -471,9 +480,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/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders?recursive=True response: body: string: '{"value": []}' @@ -489,11 +498,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:19:57 GMT + - Wed, 20 May 2026 09:24:24 GMT Pragma: - no-cache RequestId: - - a7802370-6c92-4406-9914-e959cb9ee661 + - b76e2d81-d957-41a7-911b-d49524ceb3f7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -519,9 +528,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/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders?recursive=True response: body: string: '{"value": []}' @@ -537,11 +546,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:19:58 GMT + - Wed, 20 May 2026 09:24:25 GMT Pragma: - no-cache RequestId: - - 725efbdc-c259-4d1f-87e9-65b6d8abaf3b + - 124a07ec-6ab9-4235-a53d-50fdb020e8b8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -565,17 +574,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/eaac88e1-2dc9-457d-9567-9d209f417c41/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders response: body: - string: '{"id": "b738b885-3ed1-484f-8781-e309b5982688", "displayName": "fabcli000003", - "workspaceId": "eaac88e1-2dc9-457d-9567-9d209f417c41"}' + string: '{"id": "af99e50b-58ff-4ec0-847f-f06d896a5142", "displayName": "fabcli000003", + "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -584,17 +593,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '133' + - '132' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:19:58 GMT + - Wed, 20 May 2026 09:24:25 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/folders/b738b885-3ed1-484f-8781-e309b5982688 + - https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders/af99e50b-58ff-4ec0-847f-f06d896a5142 Pragma: - no-cache RequestId: - - ee6477e4-3bed-45b1-8dea-bceff553d74d + - 912a0fe7-9674-4697-a8c6-007ef80fd3b2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -620,16 +629,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -638,15 +650,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2877' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:20:00 GMT + - Wed, 20 May 2026 09:24:27 GMT Pragma: - no-cache RequestId: - - bc3c7197-ce2c-4572-bf2c-ec826f71e85c + - 618a39e7-5519-4cc3-a134-13421298ee70 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -672,53 +684,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True - response: - body: - string: '{"requestId": "50210e92-d996-4c7f-94f8-4fcf83c60455", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 8:20:07 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 08:20:00 GMT - RequestId: - - 50210e92-d996-4c7f-94f8-4fcf83c60455 - Retry-After: - - '6' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders?recursive=True response: body: - string: '{"value": [{"id": "b738b885-3ed1-484f-8781-e309b5982688", "displayName": - "fabcli000003", "workspaceId": "eaac88e1-2dc9-457d-9567-9d209f417c41"}]}' + string: '{"value": [{"id": "af99e50b-58ff-4ec0-847f-f06d896a5142", "displayName": + "fabcli000003", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -731,11 +703,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:20:08 GMT + - Wed, 20 May 2026 09:24:28 GMT Pragma: - no-cache RequestId: - - b0e05229-736e-4594-9f93-e6c3416cc3d9 + - e6057e49-9445-4fa0-b037-cbe1a2e4ebfd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -761,9 +733,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/eaac88e1-2dc9-457d-9567-9d209f417c41/items + uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/items response: body: string: '{"value": []}' @@ -779,11 +751,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:20:09 GMT + - Wed, 20 May 2026 09:24:28 GMT Pragma: - no-cache RequestId: - - c5479eef-ab98-49cb-b91e-8c0524162ca1 + - c916e29c-3ac6-474b-97a3-1f78bc83ecdf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -809,9 +781,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/eaac88e1-2dc9-457d-9567-9d209f417c41/items + uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/items response: body: string: '{"value": []}' @@ -827,11 +799,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:20:09 GMT + - Wed, 20 May 2026 09:24:29 GMT Pragma: - no-cache RequestId: - - ea43e87b-a46e-486d-b30a-a00c7932dc26 + - 371358d2-6819-4573-8a4d-d9a1e2dedc97 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -846,8 +818,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000004", "type": - "KQLQueryset", "folderId": "b738b885-3ed1-484f-8781-e309b5982688"}' + body: '{"displayName": "fabcli000004", "type": "KQLQueryset", "folderId": "af99e50b-58ff-4ec0-847f-f06d896a5142"}' headers: Accept: - '*/*' @@ -856,18 +827,18 @@ interactions: Connection: - keep-alive Content-Length: - - '143' + - '110' 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/eaac88e1-2dc9-457d-9567-9d209f417c41/kqlQuerysets + uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/kqlQuerysets response: body: - string: '{"id": "a5d2c427-7175-42c7-b9bd-1a220f2888e6", "type": "KQLQueryset", - "displayName": "fabcli000004", "workspaceId": - "eaac88e1-2dc9-457d-9567-9d209f417c41", "folderId": "b738b885-3ed1-484f-8781-e309b5982688"}' + string: '{"id": "8be1fdbf-bb4e-4563-a531-d3110bfb6580", "type": "KQLQueryset", + "displayName": "fabcli000004", "description": "", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c", + "folderId": "af99e50b-58ff-4ec0-847f-f06d896a5142"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -876,17 +847,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '201' + - '192' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:20:12 GMT + - Wed, 20 May 2026 09:24:32 GMT ETag: - '""' Pragma: - no-cache RequestId: - - f7c208f0-bc08-4fe1-82d4-9e0adf3c9857 + - fdfe9f01-628d-4f5e-9fe5-29d56674cd58 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -912,16 +883,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -930,15 +904,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2877' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:20:13 GMT + - Wed, 20 May 2026 09:24:33 GMT Pragma: - no-cache RequestId: - - a0c6cd52-a4b0-4721-8938-f83355efe3ff + - 95df15f4-04ad-4810-b91c-1915aa442c6b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -964,13 +938,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/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders?recursive=True response: body: - string: '{"value": [{"id": "b738b885-3ed1-484f-8781-e309b5982688", "displayName": - "fabcli000003", "workspaceId": "eaac88e1-2dc9-457d-9567-9d209f417c41"}]}' + string: '{"value": [{"id": "af99e50b-58ff-4ec0-847f-f06d896a5142", "displayName": + "fabcli000003", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -983,11 +957,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:20:14 GMT + - Wed, 20 May 2026 09:24:34 GMT Pragma: - no-cache RequestId: - - f0f25d19-00e6-4ea8-b62a-894cf92e645e + - 6c4745fa-0ef9-4cd7-a9cd-59a746a63cb8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1013,16 +987,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1031,15 +1008,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2877' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:20:14 GMT + - Wed, 20 May 2026 09:24:35 GMT Pragma: - no-cache RequestId: - - 6268bc83-305a-4337-a397-a1b6ee289a86 + - 929e790c-8fdb-43a8-b65e-265bed5f8d7e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1065,16 +1042,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1083,15 +1063,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2877' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:20:15 GMT + - Wed, 20 May 2026 09:24:36 GMT Pragma: - no-cache RequestId: - - 9456b32d-4b8f-4ae4-b361-795b58fb98c5 + - 282a629c-040f-4d90-b5ac-338458c5bc56 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1117,9 +1097,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/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/folders?recursive=True response: body: string: '{"value": []}' @@ -1135,11 +1115,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:20:16 GMT + - Wed, 20 May 2026 09:24:37 GMT Pragma: - no-cache RequestId: - - 4ff52884-7b51-48b9-abc8-e0ba5a80e684 + - 68b9ed4f-e3b6-402c-9b2d-8df009aa55c6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1165,9 +1145,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/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/folders?recursive=True response: body: string: '{"value": []}' @@ -1183,11 +1163,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:20:17 GMT + - Wed, 20 May 2026 09:24:37 GMT Pragma: - no-cache RequestId: - - 1ebe4f6f-ba1a-46f9-a86a-2144cc02e297 + - 33fc0aff-9600-4bc7-90e9-2b332b694730 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1211,17 +1191,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/folders response: body: - string: '{"id": "2e818f79-1973-4ba9-8f2e-eca4a935dfe4", "displayName": "fabcli000003", - "workspaceId": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1"}' + string: '{"id": "3919afe4-de0e-4174-b1aa-1f0d5e9dce89", "displayName": "fabcli000003", + "workspaceId": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -1230,17 +1210,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:20:18 GMT + - Wed, 20 May 2026 09:24:38 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/folders/2e818f79-1973-4ba9-8f2e-eca4a935dfe4 + - https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/folders/3919afe4-de0e-4174-b1aa-1f0d5e9dce89 Pragma: - no-cache RequestId: - - 6e5f74c2-42ce-4c52-b424-79427347e697 + - 79bc0181-d547-4b25-a848-a0e282532bcb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1266,14 +1246,14 @@ 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/eaac88e1-2dc9-457d-9567-9d209f417c41/items + uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/items response: body: - string: '{"value": [{"id": "a5d2c427-7175-42c7-b9bd-1a220f2888e6", "type": "KQLQueryset", - "displayName": "fabcli000004", "workspaceId": - "eaac88e1-2dc9-457d-9567-9d209f417c41", "folderId": "b738b885-3ed1-484f-8781-e309b5982688"}]}' + string: '{"value": [{"id": "8be1fdbf-bb4e-4563-a531-d3110bfb6580", "type": "KQLQueryset", + "displayName": "fabcli000004", "description": "", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c", + "folderId": "af99e50b-58ff-4ec0-847f-f06d896a5142"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1282,15 +1262,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '213' + - '203' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:20:19 GMT + - Wed, 20 May 2026 09:24:39 GMT Pragma: - no-cache RequestId: - - 2efb8b50-89d2-41a0-9d26-c716d14a978e + - f1000768-2a4e-485e-9e13-e3376a5c3701 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1316,13 +1296,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/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders?recursive=True response: body: - string: '{"value": [{"id": "b738b885-3ed1-484f-8781-e309b5982688", "displayName": - "fabcli000003", "workspaceId": "eaac88e1-2dc9-457d-9567-9d209f417c41"}]}' + string: '{"value": [{"id": "af99e50b-58ff-4ec0-847f-f06d896a5142", "displayName": + "fabcli000003", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1335,11 +1315,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:20:20 GMT + - Wed, 20 May 2026 09:24:40 GMT Pragma: - no-cache RequestId: - - 8ce1efbd-14c8-49aa-b3b1-c3359aece61e + - fbd4d965-16e2-441f-bd9a-efcacd2ffd7f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1365,13 +1345,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/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders?recursive=True response: body: - string: '{"value": [{"id": "b738b885-3ed1-484f-8781-e309b5982688", "displayName": - "fabcli000003", "workspaceId": "eaac88e1-2dc9-457d-9567-9d209f417c41"}]}' + string: '{"value": [{"id": "af99e50b-58ff-4ec0-847f-f06d896a5142", "displayName": + "fabcli000003", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1384,11 +1364,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:20:20 GMT + - Wed, 20 May 2026 09:24:41 GMT Pragma: - no-cache RequestId: - - d43fb517-c31a-466b-99d0-b04ac190b87e + - 278bf3ef-122d-4c04-8312-cb6f647bf9d2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1414,14 +1394,14 @@ 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/eaac88e1-2dc9-457d-9567-9d209f417c41/items + uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/items response: body: - string: '{"value": [{"id": "a5d2c427-7175-42c7-b9bd-1a220f2888e6", "type": "KQLQueryset", - "displayName": "fabcli000004", "workspaceId": - "eaac88e1-2dc9-457d-9567-9d209f417c41", "folderId": "b738b885-3ed1-484f-8781-e309b5982688"}]}' + string: '{"value": [{"id": "8be1fdbf-bb4e-4563-a531-d3110bfb6580", "type": "KQLQueryset", + "displayName": "fabcli000004", "description": "", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c", + "folderId": "af99e50b-58ff-4ec0-847f-f06d896a5142"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1430,15 +1410,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '213' + - '203' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:20:21 GMT + - Wed, 20 May 2026 09:24:42 GMT Pragma: - no-cache RequestId: - - 7fc7db20-e367-486b-ade3-6ac083bfc441 + - e5db6f90-7bc9-4599-8c8a-ef0165c3662e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1464,13 +1444,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/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders?recursive=True response: body: - string: '{"value": [{"id": "b738b885-3ed1-484f-8781-e309b5982688", "displayName": - "fabcli000003", "workspaceId": "eaac88e1-2dc9-457d-9567-9d209f417c41"}]}' + string: '{"value": [{"id": "af99e50b-58ff-4ec0-847f-f06d896a5142", "displayName": + "fabcli000003", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1483,11 +1463,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:20:21 GMT + - Wed, 20 May 2026 09:24:43 GMT Pragma: - no-cache RequestId: - - 6742a1a6-c2f0-45ee-803c-e54482ce42b3 + - 575fbb32-b3f6-4317-bb25-333b7c30ea69 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1513,13 +1493,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/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders?recursive=True response: body: - string: '{"value": [{"id": "b738b885-3ed1-484f-8781-e309b5982688", "displayName": - "fabcli000003", "workspaceId": "eaac88e1-2dc9-457d-9567-9d209f417c41"}]}' + string: '{"value": [{"id": "af99e50b-58ff-4ec0-847f-f06d896a5142", "displayName": + "fabcli000003", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1532,11 +1512,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:20:22 GMT + - Wed, 20 May 2026 09:24:44 GMT Pragma: - no-cache RequestId: - - 154bb7bc-f356-4955-8d29-83d7057bd45f + - 60a28228-e3f7-41fc-9c05-b52ba0b8edd1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1562,16 +1542,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1580,15 +1563,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2877' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:20:23 GMT + - Wed, 20 May 2026 09:24:44 GMT Pragma: - no-cache RequestId: - - 4d4f100c-ef0f-47dd-b746-af83367d9e1f + - c9f70cf2-6b05-4ea6-8b7c-d446afade3dd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1614,13 +1597,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/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/folders?recursive=True response: body: - string: '{"value": [{"id": "2e818f79-1973-4ba9-8f2e-eca4a935dfe4", "displayName": - "fabcli000003", "workspaceId": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1"}]}' + string: '{"value": [{"id": "3919afe4-de0e-4174-b1aa-1f0d5e9dce89", "displayName": + "fabcli000003", "workspaceId": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1633,11 +1616,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:20:24 GMT + - Wed, 20 May 2026 09:24:46 GMT Pragma: - no-cache RequestId: - - 675cc3f6-3385-46c9-83f2-b88dc8cdd720 + - 0bde1d77-b3db-4f72-acd0-a80baf74a859 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1663,9 +1646,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/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/items response: body: string: '{"value": []}' @@ -1681,11 +1664,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:20:24 GMT + - Wed, 20 May 2026 09:24:46 GMT Pragma: - no-cache RequestId: - - c76e9be0-f0f1-412a-a27c-7590e1508868 + - 6900ef88-22cd-4258-b9c1-9a3a6b930f72 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1711,9 +1694,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/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/items response: body: string: '{"value": []}' @@ -1729,11 +1712,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:20:25 GMT + - Wed, 20 May 2026 09:24:47 GMT Pragma: - no-cache RequestId: - - 3240e5da-ac97-42e7-99ad-30a1a69645fe + - 6149c9e6-370e-4eea-9230-019505bfef84 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1759,9 +1742,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/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/items response: body: string: '{"value": []}' @@ -1777,11 +1760,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:20:26 GMT + - Wed, 20 May 2026 09:24:48 GMT Pragma: - no-cache RequestId: - - 92ed84aa-011a-4a9b-8f5c-71b02b33f42c + - 2439ab9a-49d1-45d7-a1df-6e12548e5875 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1807,14 +1790,14 @@ 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/eaac88e1-2dc9-457d-9567-9d209f417c41/items/a5d2c427-7175-42c7-b9bd-1a220f2888e6 + uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/items/8be1fdbf-bb4e-4563-a531-d3110bfb6580 response: body: - string: '{"id": "a5d2c427-7175-42c7-b9bd-1a220f2888e6", "type": "KQLQueryset", - "displayName": "fabcli000004", "workspaceId": - "eaac88e1-2dc9-457d-9567-9d209f417c41", "folderId": "b738b885-3ed1-484f-8781-e309b5982688"}' + string: '{"id": "8be1fdbf-bb4e-4563-a531-d3110bfb6580", "type": "KQLQueryset", + "displayName": "fabcli000004", "description": "", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c", + "folderId": "af99e50b-58ff-4ec0-847f-f06d896a5142"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1823,17 +1806,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '201' + - '192' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:20:27 GMT + - Wed, 20 May 2026 09:24:48 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 2ee447a3-90d8-4bdb-a747-851960c66bf6 + - ee1d292c-14d3-4013-9cae-ae9ca4797112 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1861,13 +1844,13 @@ interactions: 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/eaac88e1-2dc9-457d-9567-9d209f417c41/items/a5d2c427-7175-42c7-b9bd-1a220f2888e6/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/items/8be1fdbf-bb4e-4563-a531-d3110bfb6580/getDefinition response: body: string: '{"definition": {"parts": [{"path": "RealTimeQueryset.json", "payload": - "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTFF1ZXJ5c2V0IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTFF1ZXJ5c2V0IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -1877,15 +1860,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '427' + - '401' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:20:29 GMT + - Wed, 20 May 2026 09:24:50 GMT Pragma: - no-cache RequestId: - - 1ec256ce-4831-4448-b116-60902ba4563d + - 927bdb83-aaab-4767-a154-945a002b3180 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1900,10 +1883,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "KQLQueryset", "displayName": - "fabcli000004", "definition": {"parts": [{"path": "RealTimeQueryset.json", "payload": - "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTFF1ZXJ5c2V0IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", - "payloadType": "InlineBase64"}]}, "folderId": "2e818f79-1973-4ba9-8f2e-eca4a935dfe4"}' + body: '{"type": "KQLQueryset", "displayName": "fabcli000004", "definition": {"parts": + [{"path": "RealTimeQueryset.json", "payload": "e30=", "payloadType": "InlineBase64"}, + {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTFF1ZXJ5c2V0IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}]}, "folderId": "3919afe4-de0e-4174-b1aa-1f0d5e9dce89"}' headers: Accept: - '*/*' @@ -1912,18 +1895,18 @@ interactions: Connection: - keep-alive Content-Length: - - '780' + - '699' 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/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/items response: body: - string: '{"id": "dded563f-0616-41c2-9ddc-d2c9c05884cf", "type": "KQLQueryset", - "displayName": "fabcli000004", "workspaceId": - "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "folderId": "2e818f79-1973-4ba9-8f2e-eca4a935dfe4"}' + string: '{"id": "fd6423b9-0d39-4b30-9b57-b12d62b8d323", "type": "KQLQueryset", + "displayName": "fabcli000004", "description": "", "workspaceId": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", + "folderId": "3919afe4-de0e-4174-b1aa-1f0d5e9dce89"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1932,17 +1915,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '200' + - '190' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:20:31 GMT + - Wed, 20 May 2026 09:24:53 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 7e1adaae-ca6e-473b-a78e-7cec605454ea + - 520cadef-292c-40d1-bac4-a9f5ba9a4189 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1968,14 +1951,14 @@ 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/eaac88e1-2dc9-457d-9567-9d209f417c41/items + uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/items response: body: - string: '{"value": [{"id": "a5d2c427-7175-42c7-b9bd-1a220f2888e6", "type": "KQLQueryset", - "displayName": "fabcli000004", "workspaceId": - "eaac88e1-2dc9-457d-9567-9d209f417c41", "folderId": "b738b885-3ed1-484f-8781-e309b5982688"}]}' + string: '{"value": [{"id": "8be1fdbf-bb4e-4563-a531-d3110bfb6580", "type": "KQLQueryset", + "displayName": "fabcli000004", "description": "", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c", + "folderId": "af99e50b-58ff-4ec0-847f-f06d896a5142"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1984,15 +1967,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '213' + - '203' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:20:31 GMT + - Wed, 20 May 2026 09:24:54 GMT Pragma: - no-cache RequestId: - - 32f42fb1-a18a-4087-b832-b72109668a71 + - e292890f-3b00-4f2b-9dbd-1006c66f4531 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2018,13 +2001,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/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders?recursive=True response: body: - string: '{"value": [{"id": "b738b885-3ed1-484f-8781-e309b5982688", "displayName": - "fabcli000003", "workspaceId": "eaac88e1-2dc9-457d-9567-9d209f417c41"}]}' + string: '{"value": [{"id": "af99e50b-58ff-4ec0-847f-f06d896a5142", "displayName": + "fabcli000003", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2037,11 +2020,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:20:32 GMT + - Wed, 20 May 2026 09:24:55 GMT Pragma: - no-cache RequestId: - - 4ce0b2df-d6ad-47a1-a273-6e168eea1103 + - 6cf73943-13d8-42ba-b5a7-385cc14c2366 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2067,53 +2050,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True - response: - body: - string: '{"requestId": "8f6d4b1d-6744-4bc0-8ea0-bda32cc55953", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 8:21:09 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 08:20:32 GMT - RequestId: - - 8f6d4b1d-6744-4bc0-8ea0-bda32cc55953 - Retry-After: - - '36' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders?recursive=True response: body: - string: '{"value": [{"id": "b738b885-3ed1-484f-8781-e309b5982688", "displayName": - "fabcli000003", "workspaceId": "eaac88e1-2dc9-457d-9567-9d209f417c41"}]}' + string: '{"value": [{"id": "af99e50b-58ff-4ec0-847f-f06d896a5142", "displayName": + "fabcli000003", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2126,11 +2069,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:21:11 GMT + - Wed, 20 May 2026 09:24:55 GMT Pragma: - no-cache RequestId: - - 63ca1d3c-2a1e-4987-86ae-74a0399c94f1 + - 6c006f0a-d9e4-45d6-98f1-99736299e17a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2156,16 +2099,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2174,15 +2120,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2877' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:21:11 GMT + - Wed, 20 May 2026 09:24:57 GMT Pragma: - no-cache RequestId: - - 3e6cba17-5f32-4ff2-a8e8-f1323569e16d + - 5052cb03-3f8b-4f26-baab-ce594e61826d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2208,14 +2154,14 @@ 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/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/items response: body: - string: '{"value": [{"id": "dded563f-0616-41c2-9ddc-d2c9c05884cf", "type": "KQLQueryset", - "displayName": "fabcli000004", "workspaceId": - "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "folderId": "2e818f79-1973-4ba9-8f2e-eca4a935dfe4"}]}' + string: '{"value": [{"id": "fd6423b9-0d39-4b30-9b57-b12d62b8d323", "type": "KQLQueryset", + "displayName": "fabcli000004", "description": "", "workspaceId": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", + "folderId": "3919afe4-de0e-4174-b1aa-1f0d5e9dce89"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2224,15 +2170,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '211' + - '201' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:21:12 GMT + - Wed, 20 May 2026 09:24:57 GMT Pragma: - no-cache RequestId: - - 04680bb6-2b25-4eb2-9d36-17ea650d77f9 + - 59537d8d-e0ea-4f7d-ab5e-4a30ed40d8a9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2258,13 +2204,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/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/folders?recursive=True response: body: - string: '{"value": [{"id": "2e818f79-1973-4ba9-8f2e-eca4a935dfe4", "displayName": - "fabcli000003", "workspaceId": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1"}]}' + string: '{"value": [{"id": "3919afe4-de0e-4174-b1aa-1f0d5e9dce89", "displayName": + "fabcli000003", "workspaceId": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2277,11 +2223,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:21:13 GMT + - Wed, 20 May 2026 09:24:58 GMT Pragma: - no-cache RequestId: - - 4846bb9d-053d-4d6a-8dff-984fe6b79ced + - dd384c9e-d8d1-4afe-a1fa-a956677cbc63 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2307,13 +2253,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/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/folders?recursive=True response: body: - string: '{"value": [{"id": "2e818f79-1973-4ba9-8f2e-eca4a935dfe4", "displayName": - "fabcli000003", "workspaceId": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1"}]}' + string: '{"value": [{"id": "3919afe4-de0e-4174-b1aa-1f0d5e9dce89", "displayName": + "fabcli000003", "workspaceId": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2326,11 +2272,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:21:14 GMT + - Wed, 20 May 2026 09:24:58 GMT Pragma: - no-cache RequestId: - - 1e1d80d6-e41d-4b84-81b1-a9378d99862f + - f67bb505-9e1a-4927-8814-6d860e766409 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2356,16 +2302,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2374,15 +2323,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2877' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:21:14 GMT + - Wed, 20 May 2026 09:24:59 GMT Pragma: - no-cache RequestId: - - a07cb89b-8410-48ad-b202-9a6d2a49e044 + - 15c39298-1f91-4c07-8f1c-aaaf2a80d893 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2408,13 +2357,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/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/folders?recursive=True response: body: - string: '{"value": [{"id": "2e818f79-1973-4ba9-8f2e-eca4a935dfe4", "displayName": - "fabcli000003", "workspaceId": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1"}]}' + string: '{"value": [{"id": "3919afe4-de0e-4174-b1aa-1f0d5e9dce89", "displayName": + "fabcli000003", "workspaceId": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2427,11 +2376,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:21:16 GMT + - Wed, 20 May 2026 09:25:00 GMT Pragma: - no-cache RequestId: - - 90aaccc7-b6b6-42c1-a5b3-0d05409397b6 + - 424279da-b6fd-447d-a317-084e7dd5670d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2457,14 +2406,14 @@ 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/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/items response: body: - string: '{"value": [{"id": "dded563f-0616-41c2-9ddc-d2c9c05884cf", "type": "KQLQueryset", - "displayName": "fabcli000004", "workspaceId": - "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "folderId": "2e818f79-1973-4ba9-8f2e-eca4a935dfe4"}]}' + string: '{"value": [{"id": "fd6423b9-0d39-4b30-9b57-b12d62b8d323", "type": "KQLQueryset", + "displayName": "fabcli000004", "description": "", "workspaceId": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", + "folderId": "3919afe4-de0e-4174-b1aa-1f0d5e9dce89"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2473,15 +2422,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '211' + - '201' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:21:17 GMT + - Wed, 20 May 2026 09:25:01 GMT Pragma: - no-cache RequestId: - - 8d0c8cc1-94b4-4137-8b91-efa6cc7d7cf4 + - 79c7f988-3d7d-45c2-a1d5-013a73502c36 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2507,13 +2456,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/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/folders?recursive=True response: body: - string: '{"value": [{"id": "2e818f79-1973-4ba9-8f2e-eca4a935dfe4", "displayName": - "fabcli000003", "workspaceId": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1"}]}' + string: '{"value": [{"id": "3919afe4-de0e-4174-b1aa-1f0d5e9dce89", "displayName": + "fabcli000003", "workspaceId": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2526,11 +2475,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:21:17 GMT + - Wed, 20 May 2026 09:25:02 GMT Pragma: - no-cache RequestId: - - 10e711dc-5b0e-4fd7-a3df-d5dacd6dd4c5 + - db5ae2be-637f-4624-81fa-c8eb11106b59 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2556,13 +2505,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/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/folders?recursive=True response: body: - string: '{"value": [{"id": "2e818f79-1973-4ba9-8f2e-eca4a935dfe4", "displayName": - "fabcli000003", "workspaceId": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1"}]}' + string: '{"value": [{"id": "3919afe4-de0e-4174-b1aa-1f0d5e9dce89", "displayName": + "fabcli000003", "workspaceId": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2575,11 +2524,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:21:18 GMT + - Wed, 20 May 2026 09:25:03 GMT Pragma: - no-cache RequestId: - - d19f0bfe-0661-4a18-9392-beca013daa3a + - a2c6ef60-8b45-4bc5-af3b-5c62887c01f9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2605,16 +2554,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2623,15 +2575,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2877' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:21:19 GMT + - Wed, 20 May 2026 09:25:04 GMT Pragma: - no-cache RequestId: - - 3bce0f27-19e5-4153-9812-08093c5adcb8 + - aa0b8d2b-f418-4384-bd1f-8e5c168c77b9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2657,13 +2609,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/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/folders?recursive=True response: body: - string: '{"value": [{"id": "2e818f79-1973-4ba9-8f2e-eca4a935dfe4", "displayName": - "fabcli000003", "workspaceId": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1"}]}' + string: '{"value": [{"id": "3919afe4-de0e-4174-b1aa-1f0d5e9dce89", "displayName": + "fabcli000003", "workspaceId": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2676,11 +2628,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:21:19 GMT + - Wed, 20 May 2026 09:25:04 GMT Pragma: - no-cache RequestId: - - 6e013ece-038d-466f-8380-917a2086a91f + - 9c767643-fe32-414e-ac3c-d3beb28946fa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2706,14 +2658,14 @@ 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/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/items response: body: - string: '{"value": [{"id": "dded563f-0616-41c2-9ddc-d2c9c05884cf", "type": "KQLQueryset", - "displayName": "fabcli000004", "workspaceId": - "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "folderId": "2e818f79-1973-4ba9-8f2e-eca4a935dfe4"}]}' + string: '{"value": [{"id": "fd6423b9-0d39-4b30-9b57-b12d62b8d323", "type": "KQLQueryset", + "displayName": "fabcli000004", "description": "", "workspaceId": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", + "folderId": "3919afe4-de0e-4174-b1aa-1f0d5e9dce89"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2722,15 +2674,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '211' + - '201' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:21:20 GMT + - Wed, 20 May 2026 09:25:05 GMT Pragma: - no-cache RequestId: - - 5afd147f-ff8a-4a54-bbee-7003da0eb85f + - 623ec000-c055-4997-8303-9e63c8f2a002 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2756,13 +2708,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/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/folders?recursive=True response: body: - string: '{"value": [{"id": "2e818f79-1973-4ba9-8f2e-eca4a935dfe4", "displayName": - "fabcli000003", "workspaceId": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1"}]}' + string: '{"value": [{"id": "3919afe4-de0e-4174-b1aa-1f0d5e9dce89", "displayName": + "fabcli000003", "workspaceId": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2775,11 +2727,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:21:21 GMT + - Wed, 20 May 2026 09:25:06 GMT Pragma: - no-cache RequestId: - - 6f780ab4-9b56-4e05-9cc9-d9140c96f693 + - 11ea492f-b06a-4a8c-823a-ba3eb4d0b2b9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2807,9 +2759,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/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/items/dded563f-0616-41c2-9ddc-d2c9c05884cf + uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/items/fd6423b9-0d39-4b30-9b57-b12d62b8d323 response: body: string: '' @@ -2825,11 +2777,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:21:22 GMT + - Wed, 20 May 2026 09:25:06 GMT Pragma: - no-cache RequestId: - - 6f442256-1512-4c73-8d52-659af1b6d7b1 + - 854318ff-8747-4f50-a508-3704263d3581 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2855,16 +2807,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2873,15 +2828,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2877' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:21:23 GMT + - Wed, 20 May 2026 09:25:07 GMT Pragma: - no-cache RequestId: - - 514c9727-3188-4532-b0ab-7ab8bc34a58e + - 1a71abdd-3d78-49c3-a81b-1f449ab65809 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2907,13 +2862,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/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/folders?recursive=True response: body: - string: '{"value": [{"id": "2e818f79-1973-4ba9-8f2e-eca4a935dfe4", "displayName": - "fabcli000003", "workspaceId": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1"}]}' + string: '{"value": [{"id": "3919afe4-de0e-4174-b1aa-1f0d5e9dce89", "displayName": + "fabcli000003", "workspaceId": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2926,11 +2881,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:21:24 GMT + - Wed, 20 May 2026 09:25:08 GMT Pragma: - no-cache RequestId: - - 0bace079-1d5c-4381-b91d-2939f50fae14 + - a2184af6-64ea-4eb8-afb3-6ff7e4570376 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2958,9 +2913,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/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/folders/2e818f79-1973-4ba9-8f2e-eca4a935dfe4 + uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/folders/3919afe4-de0e-4174-b1aa-1f0d5e9dce89 response: body: string: '' @@ -2976,11 +2931,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:21:24 GMT + - Wed, 20 May 2026 09:25:08 GMT Pragma: - no-cache RequestId: - - 1b08ae23-3025-497b-815b-80ce6fc39577 + - 2a56d9ae-1b04-4022-8863-f8af5acb1a5e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3006,16 +2961,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3024,15 +2982,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2877' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:21:25 GMT + - Wed, 20 May 2026 09:25:09 GMT Pragma: - no-cache RequestId: - - 45762c4b-12bc-4267-9b2c-e2cd819190a3 + - c42ccbdc-4727-4ed9-859d-d454c630fbf8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3058,13 +3016,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/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders?recursive=True response: body: - string: '{"value": [{"id": "b738b885-3ed1-484f-8781-e309b5982688", "displayName": - "fabcli000003", "workspaceId": "eaac88e1-2dc9-457d-9567-9d209f417c41"}]}' + string: '{"value": [{"id": "af99e50b-58ff-4ec0-847f-f06d896a5142", "displayName": + "fabcli000003", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3077,11 +3035,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:21:26 GMT + - Wed, 20 May 2026 09:25:11 GMT Pragma: - no-cache RequestId: - - b84852be-1671-458c-bad1-25aa86b3b361 + - 032c48d6-7e14-48b3-ab2d-44837961a5a0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3107,14 +3065,14 @@ 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/eaac88e1-2dc9-457d-9567-9d209f417c41/items + uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/items response: body: - string: '{"value": [{"id": "a5d2c427-7175-42c7-b9bd-1a220f2888e6", "type": "KQLQueryset", - "displayName": "fabcli000004", "workspaceId": - "eaac88e1-2dc9-457d-9567-9d209f417c41", "folderId": "b738b885-3ed1-484f-8781-e309b5982688"}]}' + string: '{"value": [{"id": "8be1fdbf-bb4e-4563-a531-d3110bfb6580", "type": "KQLQueryset", + "displayName": "fabcli000004", "description": "", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c", + "folderId": "af99e50b-58ff-4ec0-847f-f06d896a5142"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3123,15 +3081,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '213' + - '203' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:21:27 GMT + - Wed, 20 May 2026 09:25:11 GMT Pragma: - no-cache RequestId: - - 2324a752-f33c-47f7-932d-dc09736bd9cb + - fc214e23-7b78-4cb5-b211-8c5432d40420 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3157,53 +3115,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True - response: - body: - string: '{"requestId": "69e3cbc8-8120-497a-8296-215a019ebae5", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 8:22:11 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 08:21:28 GMT - RequestId: - - 69e3cbc8-8120-497a-8296-215a019ebae5 - Retry-After: - - '43' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders?recursive=True response: body: - string: '{"value": [{"id": "b738b885-3ed1-484f-8781-e309b5982688", "displayName": - "fabcli000003", "workspaceId": "eaac88e1-2dc9-457d-9567-9d209f417c41"}]}' + string: '{"value": [{"id": "af99e50b-58ff-4ec0-847f-f06d896a5142", "displayName": + "fabcli000003", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3216,11 +3134,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:22:14 GMT + - Wed, 20 May 2026 09:25:11 GMT Pragma: - no-cache RequestId: - - 9a6b6e8c-bf72-49c3-83ae-31305d7d151c + - f6fc826b-de8b-41d6-9875-e2772d912171 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3248,9 +3166,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/eaac88e1-2dc9-457d-9567-9d209f417c41/items/a5d2c427-7175-42c7-b9bd-1a220f2888e6 + uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/items/8be1fdbf-bb4e-4563-a531-d3110bfb6580 response: body: string: '' @@ -3266,11 +3184,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:22:15 GMT + - Wed, 20 May 2026 09:25:11 GMT Pragma: - no-cache RequestId: - - b6e257b8-bcd0-4807-9f01-810ce79478f3 + - 88845d9a-b400-4906-b56b-edc1a8e6efdd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3296,16 +3214,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3314,15 +3235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2877' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:22:15 GMT + - Wed, 20 May 2026 09:25:12 GMT Pragma: - no-cache RequestId: - - 2166cec3-d919-4f29-8cd4-1b5c7f7d75d7 + - 0757e641-8403-4bcd-b989-bf62fd676bb5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3348,13 +3269,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/eaac88e1-2dc9-457d-9567-9d209f417c41/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders?recursive=True response: body: - string: '{"value": [{"id": "b738b885-3ed1-484f-8781-e309b5982688", "displayName": - "fabcli000003", "workspaceId": "eaac88e1-2dc9-457d-9567-9d209f417c41"}]}' + string: '{"value": [{"id": "af99e50b-58ff-4ec0-847f-f06d896a5142", "displayName": + "fabcli000003", "workspaceId": "21e6701a-1169-40fc-a1c5-ed29e154283c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3367,11 +3288,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:22:17 GMT + - Wed, 20 May 2026 09:25:13 GMT Pragma: - no-cache RequestId: - - 0b068e21-b5bc-4b3c-8da6-d18e2b91b643 + - c31d1419-c1bc-476a-9020-6cf47da49c7e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3399,9 +3320,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/eaac88e1-2dc9-457d-9567-9d209f417c41/folders/b738b885-3ed1-484f-8781-e309b5982688 + uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/folders/af99e50b-58ff-4ec0-847f-f06d896a5142 response: body: string: '' @@ -3417,11 +3338,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:22:18 GMT + - Wed, 20 May 2026 09:25:13 GMT Pragma: - no-cache RequestId: - - b2f7bc93-9360-4a70-a0a1-093abc74371e + - b88bb316-13aa-40db-97a8-377f56313e28 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3447,16 +3368,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "eaac88e1-2dc9-457d-9567-9d209f417c41", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "21e6701a-1169-40fc-a1c5-ed29e154283c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3465,15 +3389,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2877' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:22:18 GMT + - Wed, 20 May 2026 09:25:14 GMT Pragma: - no-cache RequestId: - - 45c6aaae-1652-43ab-93cd-932c4d57192f + - 84efecd9-fc36-434c-bf2d-1de5485603c1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3499,9 +3423,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/eaac88e1-2dc9-457d-9567-9d209f417c41/items + uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c/items response: body: string: '{"value": []}' @@ -3517,11 +3441,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:22:19 GMT + - Wed, 20 May 2026 09:25:15 GMT Pragma: - no-cache RequestId: - - 81b2c7ed-4a17-4184-bd68-827209b1883c + - df2b8181-b117-4c81-9686-7253d452d8cf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3549,9 +3473,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/eaac88e1-2dc9-457d-9567-9d209f417c41 + uri: https://api.fabric.microsoft.com/v1/workspaces/21e6701a-1169-40fc-a1c5-ed29e154283c response: body: string: '' @@ -3567,11 +3491,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:22:20 GMT + - Wed, 20 May 2026 09:25:15 GMT Pragma: - no-cache RequestId: - - 79f858d4-f203-45ab-8a7e-55c15252bc7e + - bf3348fb-ea6b-42c2-9ebe-a4d6db24c13e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3597,15 +3521,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "c8b4c040-611e-4fd4-8ff1-c49d9d6524c1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ef1abd44-5b9e-4927-b1dc-4b78e2d66bab", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3614,15 +3540,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2841' + - '2657' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:22:20 GMT + - Wed, 20 May 2026 09:25:16 GMT Pragma: - no-cache RequestId: - - ebb947cc-40d0-4a11-8e73-a167bf5bcedc + - 12b808ed-b78f-4029-b79e-d5b2e1008987 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3648,9 +3574,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/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab/items response: body: string: '{"value": []}' @@ -3666,11 +3592,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:22:22 GMT + - Wed, 20 May 2026 09:25:16 GMT Pragma: - no-cache RequestId: - - d927190f-4ce0-439f-a275-182862ccc09a + - 954c6f89-f710-4454-9add-7a420c07d1c0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3698,9 +3624,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/c8b4c040-611e-4fd4-8ff1-c49d9d6524c1 + uri: https://api.fabric.microsoft.com/v1/workspaces/ef1abd44-5b9e-4927-b1dc-4b78e2d66bab response: body: string: '' @@ -3716,11 +3642,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:22:22 GMT + - Wed, 20 May 2026 09:25:16 GMT Pragma: - no-cache RequestId: - - 2c942cf3-2252-4d23-944d-27cb31516efb + - 2cde9653-ae9f-4f0b-949b-818c370b7ef8 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[MirroredDatabase].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[MirroredDatabase].yaml index e4118c1c4..32eac290f 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[MirroredDatabase].yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[MirroredDatabase].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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:22:24 GMT + - Wed, 20 May 2026 09:25:18 GMT Pragma: - no-cache RequestId: - - a5dbf9b1-d8e5-4ef1-9dd4-6328bf23212a + - 6af525c9-5b9b-42bf-a824-8529659ceb18 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:22:24 GMT + - Wed, 20 May 2026 09:25:19 GMT Pragma: - no-cache RequestId: - - ad12498e-f27d-49f5-b3b0-a47c0de25a80 + - f00d63c1-8022-43e1-a196-23d73fb3149f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,7 +113,7 @@ 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/capacities response: @@ -131,11 +133,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:22:29 GMT + - Wed, 20 May 2026 09:25:22 GMT Pragma: - no-cache RequestId: - - 56a568c5-a3b3-4fd5-ab07-ec51d7b8da4e + - 91d821cf-8221-42b1-b808-ab72086b7b10 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -150,8 +152,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -160,16 +161,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -178,17 +180,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:22:38 GMT + - Wed, 20 May 2026 09:25:30 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf + - https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b Pragma: - no-cache RequestId: - - ece365fb-bd64-45cd-91bc-f6245802d2e1 + - e01ac83c-5605-4161-b151-4c601b4f903c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,15 +216,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -231,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2840' + - '2656' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:22:39 GMT + - Wed, 20 May 2026 09:25:31 GMT Pragma: - no-cache RequestId: - - 5b218704-43e7-4f17-8979-a15376f8c6db + - 9f5b5c79-388d-4861-b32d-b4d95172d5bf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,15 +269,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -282,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2840' + - '2656' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:22:39 GMT + - Wed, 20 May 2026 09:25:32 GMT Pragma: - no-cache RequestId: - - d7f11dab-5ac9-42ed-be6b-593fe4039764 + - 84667c71-4cf4-46be-b580-3ced5b5caf54 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,7 +322,7 @@ 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/capacities response: @@ -332,15 +338,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:22:43 GMT + - Wed, 20 May 2026 09:25:36 GMT Pragma: - no-cache RequestId: - - 51439d92-0b00-4985-b676-173a4170a648 + - fcedb52b-45e7-4578-a906-3fb7a4ac0a0f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -355,8 +361,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000002", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -365,16 +370,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "ea214bd9-415d-4843-9beb-5e850f9645a3", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "6d115027-c55b-46d3-a868-60b47ac46449", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -383,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:22:52 GMT + - Wed, 20 May 2026 09:25:44 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/ea214bd9-415d-4843-9beb-5e850f9645a3 + - https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449 Pragma: - no-cache RequestId: - - 9d796844-19ae-49b5-a1ef-499090d747c2 + - 3277a3ee-e6e8-406c-a1dd-79fe10e90fe2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -419,16 +425,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ea214bd9-415d-4843-9beb-5e850f9645a3", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6d115027-c55b-46d3-a868-60b47ac46449", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -437,15 +446,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:22:53 GMT + - Wed, 20 May 2026 09:25:45 GMT Pragma: - no-cache RequestId: - - 5602831f-ecc3-40a6-8bd6-60b826fa6c0f + - 87512628-3197-46e5-b527-7d5cf60d5e23 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -471,9 +480,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/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders?recursive=True response: body: string: '{"value": []}' @@ -489,11 +498,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:22:54 GMT + - Wed, 20 May 2026 09:25:46 GMT Pragma: - no-cache RequestId: - - 2817b221-caa6-4492-a149-2b6aa106e03d + - a1781b50-b7d9-4493-9444-19310b62e3ef Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -519,9 +528,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/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders?recursive=True response: body: string: '{"value": []}' @@ -537,11 +546,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:22:54 GMT + - Wed, 20 May 2026 09:25:47 GMT Pragma: - no-cache RequestId: - - a46626ba-4b4e-4457-9c2e-3f5be50e56f7 + - 89b43d69-9dcf-423e-a458-47a26805d76a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -565,17 +574,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders response: body: - string: '{"id": "dbed2ee2-5dc2-4037-867c-9d29b6287340", "displayName": "fabcli000003", - "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf"}' + string: '{"id": "7e6f5658-f52d-460f-9fd5-38080907c930", "displayName": "fabcli000003", + "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -588,13 +597,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:22:55 GMT + - Wed, 20 May 2026 09:25:48 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders/dbed2ee2-5dc2-4037-867c-9d29b6287340 + - https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders/7e6f5658-f52d-460f-9fd5-38080907c930 Pragma: - no-cache RequestId: - - 15779819-226b-4da6-b421-fbb73cda1c55 + - c53111aa-2c0d-40a3-afb6-cf96fb8492f7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -620,16 +629,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ea214bd9-415d-4843-9beb-5e850f9645a3", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6d115027-c55b-46d3-a868-60b47ac46449", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -638,15 +650,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:22:56 GMT + - Wed, 20 May 2026 09:25:48 GMT Pragma: - no-cache RequestId: - - a369b1b3-7141-44d5-be4a-681454d48168 + - 2542440e-45b4-463f-9934-9bdb363466d8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -672,13 +684,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/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders?recursive=True response: body: - string: '{"value": [{"id": "dbed2ee2-5dc2-4037-867c-9d29b6287340", "displayName": - "fabcli000003", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf"}]}' + string: '{"value": [{"id": "7e6f5658-f52d-460f-9fd5-38080907c930", "displayName": + "fabcli000003", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -691,11 +703,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:22:56 GMT + - Wed, 20 May 2026 09:25:49 GMT Pragma: - no-cache RequestId: - - c142e616-8536-4c5f-a0e3-522fbaba9c1d + - 1cb7b5a4-b63a-49f0-a47b-0f235a17eb14 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -721,9 +733,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/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/items + uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/items response: body: string: '{"value": []}' @@ -739,11 +751,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:22:58 GMT + - Wed, 20 May 2026 09:25:50 GMT Pragma: - no-cache RequestId: - - ebe1e381-ed06-49a7-bcf9-c4cfdd7939bc + - f3a13786-4692-4c55-94f1-d81f57afb31a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -769,9 +781,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/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/items + uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/items response: body: string: '{"value": []}' @@ -787,11 +799,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:22:58 GMT + - Wed, 20 May 2026 09:25:51 GMT Pragma: - no-cache RequestId: - - db5d8737-ce58-4783-b885-07aeafd34b5a + - a1c7b473-3484-43da-894e-dc37f1d249df Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -806,9 +818,9 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000004", "type": - "MirroredDatabase", "folderId": "dbed2ee2-5dc2-4037-867c-9d29b6287340", "definition": - {"parts": [{"path": "mirroring.json", "payload": "ewogICAgInByb3BlcnRpZXMiOiB7CiAgICAgICAgInNvdXJjZSI6IHsKICAgICAgICAgICAgInR5cGUiOiAiR2VuZXJpY01pcnJvciIsCiAgICAgICAgICAgICJ0eXBlUHJvcGVydGllcyI6IHt9CiAgICAgICAgfSwKICAgICAgICAidGFyZ2V0IjogewogICAgICAgICAgICAidHlwZSI6ICJNb3VudGVkUmVsYXRpb25hbERhdGFiYXNlIiwKICAgICAgICAgICAgInR5cGVQcm9wZXJ0aWVzIjogewogICAgICAgICAgICAgICAgImZvcm1hdCI6ICJEZWx0YSIKICAgICAgICAgICAgfQogICAgICAgIH0KICAgIH0KfQ==", + body: '{"displayName": "fabcli000004", "type": "MirroredDatabase", "folderId": + "7e6f5658-f52d-460f-9fd5-38080907c930", "definition": {"parts": [{"path": "mirroring.json", + "payload": "ewogICAgInByb3BlcnRpZXMiOiB7CiAgICAgICAgInNvdXJjZSI6IHsKICAgICAgICAgICAgInR5cGUiOiAiR2VuZXJpY01pcnJvciIsCiAgICAgICAgICAgICJ0eXBlUHJvcGVydGllcyI6IHt9CiAgICAgICAgfSwKICAgICAgICAidGFyZ2V0IjogewogICAgICAgICAgICAidHlwZSI6ICJNb3VudGVkUmVsYXRpb25hbERhdGFiYXNlIiwKICAgICAgICAgICAgInR5cGVQcm9wZXJ0aWVzIjogewogICAgICAgICAgICAgICAgImZvcm1hdCI6ICJEZWx0YSIKICAgICAgICAgICAgfQogICAgICAgIH0KICAgIH0KfQ==", "payloadType": "InlineBase64"}]}}' headers: Accept: @@ -818,18 +830,18 @@ interactions: Connection: - keep-alive Content-Length: - - '637' + - '604' 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/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/mirroredDatabases + uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/mirroredDatabases response: body: - string: '{"id": "e647cfcf-363f-4a80-9616-e145b698b150", "type": "MirroredDatabase", - "displayName": "fabcli000004", "workspaceId": - "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "folderId": "dbed2ee2-5dc2-4037-867c-9d29b6287340"}' + string: '{"id": "bc01466e-cf5a-4149-b878-a4e8337cf2bd", "type": "MirroredDatabase", + "displayName": "fabcli000004", "description": "", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b", + "folderId": "7e6f5658-f52d-460f-9fd5-38080907c930"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -838,17 +850,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '201' + - '192' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:01 GMT + - Wed, 20 May 2026 09:25:54 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 765e526b-39c8-4ede-bca7-b6aec5b61e91 + - 5550b4df-0165-4779-9a91-cc5b3a678abc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -874,16 +886,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ea214bd9-415d-4843-9beb-5e850f9645a3", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6d115027-c55b-46d3-a868-60b47ac46449", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -892,15 +907,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:01 GMT + - Wed, 20 May 2026 09:25:55 GMT Pragma: - no-cache RequestId: - - e9068338-53e8-4509-be22-48585c5189b7 + - 08b54459-4c3d-4d13-890e-44aa1c73b9a7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -926,13 +941,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/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders?recursive=True response: body: - string: '{"value": [{"id": "dbed2ee2-5dc2-4037-867c-9d29b6287340", "displayName": - "fabcli000003", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf"}]}' + string: '{"value": [{"id": "7e6f5658-f52d-460f-9fd5-38080907c930", "displayName": + "fabcli000003", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -945,11 +960,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:02 GMT + - Wed, 20 May 2026 09:25:56 GMT Pragma: - no-cache RequestId: - - 86e39af1-cb6b-4df3-8a99-8ed78f11e940 + - a96cae10-a79a-48db-ae78-cb72a7448c82 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -975,16 +990,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ea214bd9-415d-4843-9beb-5e850f9645a3", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6d115027-c55b-46d3-a868-60b47ac46449", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -993,15 +1011,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:03 GMT + - Wed, 20 May 2026 09:25:57 GMT Pragma: - no-cache RequestId: - - fec415a6-a03a-4493-80b4-493c0102f7b4 + - 7ba71156-b023-43ab-bb2f-4724d719c5e4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1027,16 +1045,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ea214bd9-415d-4843-9beb-5e850f9645a3", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6d115027-c55b-46d3-a868-60b47ac46449", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1045,15 +1066,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:04 GMT + - Wed, 20 May 2026 09:25:58 GMT Pragma: - no-cache RequestId: - - 7257300f-b8bd-4f98-94d2-5b3998bc1b81 + - 3cfbeb4c-5919-476c-8d95-e810a69116af Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1079,9 +1100,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/ea214bd9-415d-4843-9beb-5e850f9645a3/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/folders?recursive=True response: body: string: '{"value": []}' @@ -1097,11 +1118,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:04 GMT + - Wed, 20 May 2026 09:25:59 GMT Pragma: - no-cache RequestId: - - a7e60761-bee6-4aea-ae9b-22af98db8c7f + - d647f4cc-a16d-4a7f-88ac-b6a7a1443ff0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1127,9 +1148,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/ea214bd9-415d-4843-9beb-5e850f9645a3/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/folders?recursive=True response: body: string: '{"value": []}' @@ -1145,11 +1166,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:05 GMT + - Wed, 20 May 2026 09:25:59 GMT Pragma: - no-cache RequestId: - - 61ac3a47-caad-4bb2-9bf5-cfeb0cf11582 + - c0573b4f-0412-4a05-8fb5-32b7051e7ffa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1173,17 +1194,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/ea214bd9-415d-4843-9beb-5e850f9645a3/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/folders response: body: - string: '{"id": "4c964959-5e03-42a4-bdbe-188c15d43a99", "displayName": "fabcli000003", - "workspaceId": "ea214bd9-415d-4843-9beb-5e850f9645a3"}' + string: '{"id": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6", "displayName": "fabcli000003", + "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -1192,17 +1213,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '130' + - '132' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:06 GMT + - Wed, 20 May 2026 09:26:01 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/ea214bd9-415d-4843-9beb-5e850f9645a3/folders/4c964959-5e03-42a4-bdbe-188c15d43a99 + - https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/folders/d111f271-86a1-4d81-bdf6-d8da34d5d0e6 Pragma: - no-cache RequestId: - - 4f5f29ff-cb73-41ec-a19f-94f72369b70b + - 0123514d-4998-40fe-83b0-1b0ef4b0f7ce Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1228,14 +1249,14 @@ 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/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/items + uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/items response: body: - string: '{"value": [{"id": "e647cfcf-363f-4a80-9616-e145b698b150", "type": "MirroredDatabase", - "displayName": "fabcli000004", "workspaceId": - "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "folderId": "dbed2ee2-5dc2-4037-867c-9d29b6287340"}]}' + string: '{"value": [{"id": "bc01466e-cf5a-4149-b878-a4e8337cf2bd", "type": "MirroredDatabase", + "displayName": "fabcli000004", "description": "", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b", + "folderId": "7e6f5658-f52d-460f-9fd5-38080907c930"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1244,15 +1265,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '214' + - '205' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:07 GMT + - Wed, 20 May 2026 09:26:01 GMT Pragma: - no-cache RequestId: - - e7302926-bf4e-4bfc-8b8a-b28f8c8826ef + - 1bd7e641-9757-4125-8463-8417a6a65a21 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1278,13 +1299,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/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders?recursive=True response: body: - string: '{"value": [{"id": "dbed2ee2-5dc2-4037-867c-9d29b6287340", "displayName": - "fabcli000003", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf"}]}' + string: '{"value": [{"id": "7e6f5658-f52d-460f-9fd5-38080907c930", "displayName": + "fabcli000003", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1297,11 +1318,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:08 GMT + - Wed, 20 May 2026 09:26:02 GMT Pragma: - no-cache RequestId: - - c6fdd83d-606c-4806-9f85-60c36e285956 + - becf2f1d-71a2-488e-8f0f-cdfe0253679e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1327,13 +1348,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/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders?recursive=True response: body: - string: '{"value": [{"id": "dbed2ee2-5dc2-4037-867c-9d29b6287340", "displayName": - "fabcli000003", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf"}]}' + string: '{"value": [{"id": "7e6f5658-f52d-460f-9fd5-38080907c930", "displayName": + "fabcli000003", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1346,11 +1367,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:08 GMT + - Wed, 20 May 2026 09:26:04 GMT Pragma: - no-cache RequestId: - - c5720427-eaf5-47b0-9be1-aab8e83005de + - d68aa328-1127-4867-9a62-1a463696d90f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1376,14 +1397,14 @@ 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/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/items + uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/items response: body: - string: '{"value": [{"id": "e647cfcf-363f-4a80-9616-e145b698b150", "type": "MirroredDatabase", - "displayName": "fabcli000004", "workspaceId": - "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "folderId": "dbed2ee2-5dc2-4037-867c-9d29b6287340"}]}' + string: '{"value": [{"id": "bc01466e-cf5a-4149-b878-a4e8337cf2bd", "type": "MirroredDatabase", + "displayName": "fabcli000004", "description": "", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b", + "folderId": "7e6f5658-f52d-460f-9fd5-38080907c930"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1392,15 +1413,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '214' + - '205' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:09 GMT + - Wed, 20 May 2026 09:26:04 GMT Pragma: - no-cache RequestId: - - 59fdde5f-ade9-4609-9cf1-7a1d87656224 + - 9ddce861-84bd-4dc6-92e7-6983558a610b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1426,53 +1447,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True - response: - body: - string: '{"requestId": "fc75deef-55ed-4e76-9dcf-29342d572add", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 8:23:15 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 08:23:10 GMT - RequestId: - - fc75deef-55ed-4e76-9dcf-29342d572add - Retry-After: - - '5' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders?recursive=True response: body: - string: '{"value": [{"id": "dbed2ee2-5dc2-4037-867c-9d29b6287340", "displayName": - "fabcli000003", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf"}]}' + string: '{"value": [{"id": "7e6f5658-f52d-460f-9fd5-38080907c930", "displayName": + "fabcli000003", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1485,11 +1466,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:16 GMT + - Wed, 20 May 2026 09:26:05 GMT Pragma: - no-cache RequestId: - - c26279cd-10c9-4121-bcf4-0ecb7a567190 + - 2181bec5-0085-4463-80b9-17e04a4a07f0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1515,13 +1496,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/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders?recursive=True response: body: - string: '{"value": [{"id": "dbed2ee2-5dc2-4037-867c-9d29b6287340", "displayName": - "fabcli000003", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf"}]}' + string: '{"value": [{"id": "7e6f5658-f52d-460f-9fd5-38080907c930", "displayName": + "fabcli000003", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1534,11 +1515,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:17 GMT + - Wed, 20 May 2026 09:26:06 GMT Pragma: - no-cache RequestId: - - 6831390c-e52c-480c-ad4e-fb69f7986c06 + - 65a74b94-5cdf-4d55-abc5-fd51d6ade07e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1564,16 +1545,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ea214bd9-415d-4843-9beb-5e850f9645a3", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6d115027-c55b-46d3-a868-60b47ac46449", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1582,15 +1566,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:17 GMT + - Wed, 20 May 2026 09:26:07 GMT Pragma: - no-cache RequestId: - - 1ec7c23b-88cb-43c0-ab96-b0858f847b16 + - 5af42e98-9cae-4305-830b-80183ca16bc8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1616,13 +1600,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/ea214bd9-415d-4843-9beb-5e850f9645a3/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/folders?recursive=True response: body: - string: '{"value": [{"id": "4c964959-5e03-42a4-bdbe-188c15d43a99", "displayName": - "fabcli000003", "workspaceId": "ea214bd9-415d-4843-9beb-5e850f9645a3"}]}' + string: '{"value": [{"id": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6", "displayName": + "fabcli000003", "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1631,15 +1615,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '140' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:18 GMT + - Wed, 20 May 2026 09:26:08 GMT Pragma: - no-cache RequestId: - - 3403ba10-ed84-4231-8181-e4c4f76605a1 + - 0d803ee2-f35a-4727-9825-846f6666ec3b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1665,9 +1649,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/ea214bd9-415d-4843-9beb-5e850f9645a3/items + uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/items response: body: string: '{"value": []}' @@ -1683,11 +1667,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:19 GMT + - Wed, 20 May 2026 09:26:09 GMT Pragma: - no-cache RequestId: - - f0cc6610-7f1b-4185-ae42-0227d8f1be8a + - 0a553bb9-d7da-485a-82ae-b611fd966093 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1713,9 +1697,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/ea214bd9-415d-4843-9beb-5e850f9645a3/items + uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/items response: body: string: '{"value": []}' @@ -1731,11 +1715,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:20 GMT + - Wed, 20 May 2026 09:26:10 GMT Pragma: - no-cache RequestId: - - 1a73f75e-825f-4555-81e1-9c0d8aa5d5dc + - c2d7f6f0-50a2-4c6c-84ba-6828ec30b566 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1761,9 +1745,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/ea214bd9-415d-4843-9beb-5e850f9645a3/items + uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/items response: body: string: '{"value": []}' @@ -1779,11 +1763,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:20 GMT + - Wed, 20 May 2026 09:26:10 GMT Pragma: - no-cache RequestId: - - 8cbb6e6b-2fc2-4eef-886b-b60f6c081517 + - 96196a72-313c-4f7d-8520-42cc99915005 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1809,14 +1793,14 @@ 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/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/items/e647cfcf-363f-4a80-9616-e145b698b150 + uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/items/bc01466e-cf5a-4149-b878-a4e8337cf2bd response: body: - string: '{"id": "e647cfcf-363f-4a80-9616-e145b698b150", "type": "MirroredDatabase", - "displayName": "fabcli000004", "workspaceId": - "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "folderId": "dbed2ee2-5dc2-4037-867c-9d29b6287340"}' + string: '{"id": "bc01466e-cf5a-4149-b878-a4e8337cf2bd", "type": "MirroredDatabase", + "displayName": "fabcli000004", "description": "", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b", + "folderId": "7e6f5658-f52d-460f-9fd5-38080907c930"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1825,17 +1809,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '201' + - '192' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:21 GMT + - Wed, 20 May 2026 09:26:12 GMT ETag: - '""' Pragma: - no-cache RequestId: - - a63c50f0-8bc3-4478-8d9a-67fe0b647705 + - 63e6cdcb-8516-4b9d-b757-04e8ac25f0a2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1863,13 +1847,13 @@ interactions: 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/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/items/e647cfcf-363f-4a80-9616-e145b698b150/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/items/bc01466e-cf5a-4149-b878-a4e8337cf2bd/getDefinition response: body: string: '{"definition": {"parts": [{"path": "mirroring.json", "payload": "ew0KICAicHJvcGVydGllcyI6IHsNCiAgICAic291cmNlIjogew0KICAgICAgInR5cGUiOiAiR2VuZXJpY01pcnJvciIsDQogICAgICAidHlwZVByb3BlcnRpZXMiOiB7fQ0KICAgIH0sDQogICAgInRhcmdldCI6IHsNCiAgICAgICJ0eXBlIjogIk1vdW50ZWRSZWxhdGlvbmFsRGF0YWJhc2UiLA0KICAgICAgInR5cGVQcm9wZXJ0aWVzIjogew0KICAgICAgICAiZm9ybWF0IjogIkRlbHRhIg0KICAgICAgfQ0KICAgIH0NCiAgfQ0KfQ==", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk1pcnJvcmVkRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwNCIsCiAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk1pcnJvcmVkRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwNCIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -1879,15 +1863,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '561' + - '535' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:22 GMT + - Wed, 20 May 2026 09:26:12 GMT Pragma: - no-cache RequestId: - - e279b4b3-e8d5-49e5-bce9-2100f451ea86 + - 7a53878b-256e-4219-abfd-89bd2d2b02ba Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1902,11 +1886,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "MirroredDatabase", "displayName": - "fabcli000004", "definition": {"parts": [{"path": "mirroring.json", "payload": - "ew0KICAicHJvcGVydGllcyI6IHsNCiAgICAic291cmNlIjogew0KICAgICAgInR5cGUiOiAiR2VuZXJpY01pcnJvciIsDQogICAgICAidHlwZVByb3BlcnRpZXMiOiB7fQ0KICAgIH0sDQogICAgInRhcmdldCI6IHsNCiAgICAgICJ0eXBlIjogIk1vdW50ZWRSZWxhdGlvbmFsRGF0YWJhc2UiLA0KICAgICAgInR5cGVQcm9wZXJ0aWVzIjogew0KICAgICAgICAiZm9ybWF0IjogIkRlbHRhIg0KICAgICAgfQ0KICAgIH0NCiAgfQ0KfQ==", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk1pcnJvcmVkRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwNCIsCiAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", - "payloadType": "InlineBase64"}]}, "folderId": "4c964959-5e03-42a4-bdbe-188c15d43a99"}' + body: '{"type": "MirroredDatabase", "displayName": "fabcli000004", "definition": + {"parts": [{"path": "mirroring.json", "payload": "ew0KICAicHJvcGVydGllcyI6IHsNCiAgICAic291cmNlIjogew0KICAgICAgInR5cGUiOiAiR2VuZXJpY01pcnJvciIsDQogICAgICAidHlwZVByb3BlcnRpZXMiOiB7fQ0KICAgIH0sDQogICAgInRhcmdldCI6IHsNCiAgICAgICJ0eXBlIjogIk1vdW50ZWRSZWxhdGlvbmFsRGF0YWJhc2UiLA0KICAgICAgInR5cGVQcm9wZXJ0aWVzIjogew0KICAgICAgICAiZm9ybWF0IjogIkRlbHRhIg0KICAgICAgfQ0KICAgIH0NCiAgfQ0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk1pcnJvcmVkRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwNCIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "payloadType": "InlineBase64"}]}, "folderId": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6"}' headers: Accept: - '*/*' @@ -1915,18 +1898,18 @@ interactions: Connection: - keep-alive Content-Length: - - '1110' + - '1029' 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/ea214bd9-415d-4843-9beb-5e850f9645a3/items + uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/items response: body: - string: '{"id": "83f5c4fb-65b3-489f-80e1-d915e28a4775", "type": "MirroredDatabase", - "displayName": "fabcli000004", "workspaceId": - "ea214bd9-415d-4843-9beb-5e850f9645a3", "folderId": "4c964959-5e03-42a4-bdbe-188c15d43a99"}' + string: '{"id": "0379bbf5-650f-476c-b3ae-a8286288ea6f", "type": "MirroredDatabase", + "displayName": "fabcli000004", "description": "", "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449", + "folderId": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1935,17 +1918,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '202' + - '191' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:25 GMT + - Wed, 20 May 2026 09:26:15 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 66fc3bb6-8750-4b3d-aac7-17278ca0ec9a + - 97cc3ad5-cde5-470d-8175-46e2f81395bf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1971,16 +1954,16 @@ 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/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/items + uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/items response: body: - string: '{"value": [{"id": "d1815453-76e7-46c8-8af7-ea2f00255805", "type": "SQLEndpoint", - "displayName": "fabcli000004", "description": "", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", - "folderId": "dbed2ee2-5dc2-4037-867c-9d29b6287340"}, {"id": "e647cfcf-363f-4a80-9616-e145b698b150", - "type": "MirroredDatabase", "displayName": "fabcli000004", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "folderId": - "dbed2ee2-5dc2-4037-867c-9d29b6287340"}]}' + string: '{"value": [{"id": "520bb395-0398-482c-812d-b5fa14c01e7b", "type": "SQLEndpoint", + "displayName": "fabcli000004", "description": "", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b", + "folderId": "7e6f5658-f52d-460f-9fd5-38080907c930"}, {"id": "bc01466e-cf5a-4149-b878-a4e8337cf2bd", + "type": "MirroredDatabase", "displayName": "fabcli000004", "description": + "", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "folderId": "7e6f5658-f52d-460f-9fd5-38080907c930"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1989,15 +1972,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '260' + - '248' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:25 GMT + - Wed, 20 May 2026 09:26:15 GMT Pragma: - no-cache RequestId: - - a387b00f-96ae-4150-ad95-61cb48ec89b1 + - 871b7d15-bb37-4602-bc2a-c87ee266370a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2023,13 +2006,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/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders?recursive=True response: body: - string: '{"value": [{"id": "dbed2ee2-5dc2-4037-867c-9d29b6287340", "displayName": - "fabcli000003", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf"}]}' + string: '{"value": [{"id": "7e6f5658-f52d-460f-9fd5-38080907c930", "displayName": + "fabcli000003", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2042,11 +2025,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:26 GMT + - Wed, 20 May 2026 09:26:16 GMT Pragma: - no-cache RequestId: - - 7dff590c-aee3-4ac2-a6cc-358e4b239865 + - 7ed5cefd-a750-4b55-b69f-1f7b8ac3e347 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2072,13 +2055,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/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders?recursive=True response: body: - string: '{"value": [{"id": "dbed2ee2-5dc2-4037-867c-9d29b6287340", "displayName": - "fabcli000003", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf"}]}' + string: '{"value": [{"id": "7e6f5658-f52d-460f-9fd5-38080907c930", "displayName": + "fabcli000003", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2091,11 +2074,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:27 GMT + - Wed, 20 May 2026 09:26:16 GMT Pragma: - no-cache RequestId: - - 071091e6-4574-42fe-937e-06ae9c6df50f + - 3ec8ec81-054a-4247-8a67-93d8470f31f1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2121,13 +2104,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/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders?recursive=True response: body: - string: '{"value": [{"id": "dbed2ee2-5dc2-4037-867c-9d29b6287340", "displayName": - "fabcli000003", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf"}]}' + string: '{"value": [{"id": "7e6f5658-f52d-460f-9fd5-38080907c930", "displayName": + "fabcli000003", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2140,11 +2123,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:28 GMT + - Wed, 20 May 2026 09:26:16 GMT Pragma: - no-cache RequestId: - - 1a4c412f-d40f-49c2-9c1f-657aa782db28 + - 975b5a7d-fb26-4b64-9977-565a09a78339 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2170,16 +2153,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ea214bd9-415d-4843-9beb-5e850f9645a3", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6d115027-c55b-46d3-a868-60b47ac46449", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2188,15 +2174,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:29 GMT + - Wed, 20 May 2026 09:26:18 GMT Pragma: - no-cache RequestId: - - 11ac2dc1-a499-413c-937a-ad7868b39842 + - 194754dd-66ad-426f-8f1a-1a81cedd859e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2222,14 +2208,14 @@ 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/ea214bd9-415d-4843-9beb-5e850f9645a3/items + uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/items response: body: - string: '{"value": [{"id": "83f5c4fb-65b3-489f-80e1-d915e28a4775", "type": "MirroredDatabase", - "displayName": "fabcli000004", "workspaceId": - "ea214bd9-415d-4843-9beb-5e850f9645a3", "folderId": "4c964959-5e03-42a4-bdbe-188c15d43a99"}]}' + string: '{"value": [{"id": "0379bbf5-650f-476c-b3ae-a8286288ea6f", "type": "MirroredDatabase", + "displayName": "fabcli000004", "description": "", "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449", + "folderId": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2238,15 +2224,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '214' + - '203' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:29 GMT + - Wed, 20 May 2026 09:26:18 GMT Pragma: - no-cache RequestId: - - adbf0870-29eb-48fa-899b-5310e2ecaf71 + - cd59ab50-cc3a-4087-8454-95b9d69322ad Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2272,13 +2258,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/ea214bd9-415d-4843-9beb-5e850f9645a3/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/folders?recursive=True response: body: - string: '{"value": [{"id": "4c964959-5e03-42a4-bdbe-188c15d43a99", "displayName": - "fabcli000003", "workspaceId": "ea214bd9-415d-4843-9beb-5e850f9645a3"}]}' + string: '{"value": [{"id": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6", "displayName": + "fabcli000003", "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2287,15 +2273,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '140' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:29 GMT + - Wed, 20 May 2026 09:26:19 GMT Pragma: - no-cache RequestId: - - e6142bc8-beac-4142-a817-f5dbb2b53be2 + - 84388058-74fb-48eb-86ef-330bc3eda649 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2321,13 +2307,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/ea214bd9-415d-4843-9beb-5e850f9645a3/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/folders?recursive=True response: body: - string: '{"value": [{"id": "4c964959-5e03-42a4-bdbe-188c15d43a99", "displayName": - "fabcli000003", "workspaceId": "ea214bd9-415d-4843-9beb-5e850f9645a3"}]}' + string: '{"value": [{"id": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6", "displayName": + "fabcli000003", "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2336,15 +2322,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '140' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:30 GMT + - Wed, 20 May 2026 09:26:20 GMT Pragma: - no-cache RequestId: - - 2b257292-8a4e-4034-ab91-6e63d233f226 + - 5e8357c4-6d93-4009-a06e-8a7f80000add Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2370,16 +2356,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ea214bd9-415d-4843-9beb-5e850f9645a3", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6d115027-c55b-46d3-a868-60b47ac46449", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2388,15 +2377,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:31 GMT + - Wed, 20 May 2026 09:26:20 GMT Pragma: - no-cache RequestId: - - 25bbcc55-3894-4c4a-bf4f-9c3cd7bd1b0f + - 9491ff84-1739-4be0-bff8-1b130a62ddb0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2422,13 +2411,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/ea214bd9-415d-4843-9beb-5e850f9645a3/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/folders?recursive=True response: body: - string: '{"value": [{"id": "4c964959-5e03-42a4-bdbe-188c15d43a99", "displayName": - "fabcli000003", "workspaceId": "ea214bd9-415d-4843-9beb-5e850f9645a3"}]}' + string: '{"value": [{"id": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6", "displayName": + "fabcli000003", "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2437,15 +2426,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '140' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:31 GMT + - Wed, 20 May 2026 09:26:21 GMT Pragma: - no-cache RequestId: - - 05e1c922-7fae-41a7-af7e-0ad58c8b7cf1 + - 6b7ce682-451e-40b4-92ce-828f3fdaad2a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2471,14 +2460,14 @@ 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/ea214bd9-415d-4843-9beb-5e850f9645a3/items + uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/items response: body: - string: '{"value": [{"id": "83f5c4fb-65b3-489f-80e1-d915e28a4775", "type": "MirroredDatabase", - "displayName": "fabcli000004", "workspaceId": - "ea214bd9-415d-4843-9beb-5e850f9645a3", "folderId": "4c964959-5e03-42a4-bdbe-188c15d43a99"}]}' + string: '{"value": [{"id": "0379bbf5-650f-476c-b3ae-a8286288ea6f", "type": "MirroredDatabase", + "displayName": "fabcli000004", "description": "", "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449", + "folderId": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2487,15 +2476,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '214' + - '203' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:32 GMT + - Wed, 20 May 2026 09:26:22 GMT Pragma: - no-cache RequestId: - - 45e0e01d-c30f-43c3-9051-f81b2d11f623 + - 5cc4f1fc-aac2-4e35-a82a-a166daac808c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2521,13 +2510,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/ea214bd9-415d-4843-9beb-5e850f9645a3/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/folders?recursive=True response: body: - string: '{"value": [{"id": "4c964959-5e03-42a4-bdbe-188c15d43a99", "displayName": - "fabcli000003", "workspaceId": "ea214bd9-415d-4843-9beb-5e850f9645a3"}]}' + string: '{"value": [{"id": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6", "displayName": + "fabcli000003", "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2536,15 +2525,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '140' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:23:33 GMT + - Wed, 20 May 2026 09:26:23 GMT Pragma: - no-cache RequestId: - - 2f5f1e8f-8e91-49e3-96fe-42c1aa932529 + - 960fcb20-a367-4809-8c12-77364b24334f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2570,53 +2559,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ea214bd9-415d-4843-9beb-5e850f9645a3/folders?recursive=True - response: - body: - string: '{"requestId": "97b6fcf4-957f-4d4f-bb4d-8b12680de4d1", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 8:24:17 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 08:23:33 GMT - RequestId: - - 97b6fcf4-957f-4d4f-bb4d-8b12680de4d1 - Retry-After: - - '43' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ea214bd9-415d-4843-9beb-5e850f9645a3/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/folders?recursive=True response: body: - string: '{"value": [{"id": "4c964959-5e03-42a4-bdbe-188c15d43a99", "displayName": - "fabcli000003", "workspaceId": "ea214bd9-415d-4843-9beb-5e850f9645a3"}]}' + string: '{"value": [{"id": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6", "displayName": + "fabcli000003", "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2625,15 +2574,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '140' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:24:20 GMT + - Wed, 20 May 2026 09:26:24 GMT Pragma: - no-cache RequestId: - - 2a093334-3885-4af6-a53a-7d4cf21da526 + - e1d65202-c691-4be2-a409-6339e49650cf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2659,16 +2608,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ea214bd9-415d-4843-9beb-5e850f9645a3", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6d115027-c55b-46d3-a868-60b47ac46449", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2677,15 +2629,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:24:22 GMT + - Wed, 20 May 2026 09:26:25 GMT Pragma: - no-cache RequestId: - - e9cb8026-c493-4f66-b035-d46238842004 + - 0007b8ef-538e-4854-bfa1-661e30292ad8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2711,13 +2663,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/ea214bd9-415d-4843-9beb-5e850f9645a3/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/folders?recursive=True response: body: - string: '{"value": [{"id": "4c964959-5e03-42a4-bdbe-188c15d43a99", "displayName": - "fabcli000003", "workspaceId": "ea214bd9-415d-4843-9beb-5e850f9645a3"}]}' + string: '{"value": [{"id": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6", "displayName": + "fabcli000003", "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2726,15 +2678,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '140' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:24:22 GMT + - Wed, 20 May 2026 09:26:26 GMT Pragma: - no-cache RequestId: - - 8253a573-4fb6-4c49-aeb6-607ec9524a5b + - a4fec9c2-2add-4d46-8091-1866187dccf1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2760,16 +2712,16 @@ 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/ea214bd9-415d-4843-9beb-5e850f9645a3/items + uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/items response: body: - string: '{"value": [{"id": "29e06968-00e2-4949-a1da-cb6addf6f658", "type": "SQLEndpoint", - "displayName": "fabcli000004", "description": "", "workspaceId": "ea214bd9-415d-4843-9beb-5e850f9645a3", - "folderId": "4c964959-5e03-42a4-bdbe-188c15d43a99"}, {"id": "83f5c4fb-65b3-489f-80e1-d915e28a4775", - "type": "MirroredDatabase", "displayName": "fabcli000004", "workspaceId": "ea214bd9-415d-4843-9beb-5e850f9645a3", "folderId": - "4c964959-5e03-42a4-bdbe-188c15d43a99"}]}' + string: '{"value": [{"id": "ab9d61e9-1349-4c72-a0ac-0ed2216b3e9e", "type": "SQLEndpoint", + "displayName": "fabcli000004", "description": "", "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449", + "folderId": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6"}, {"id": "0379bbf5-650f-476c-b3ae-a8286288ea6f", + "type": "MirroredDatabase", "displayName": "fabcli000004", "description": + "", "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449", "folderId": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2778,15 +2730,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '260' + - '247' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:24:23 GMT + - Wed, 20 May 2026 09:26:27 GMT Pragma: - no-cache RequestId: - - b0d71b5c-a024-4d63-9d80-5fbe4226ed03 + - c4dc0c3b-d271-41e0-9ea3-4657f8968dfa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2812,13 +2764,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/ea214bd9-415d-4843-9beb-5e850f9645a3/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/folders?recursive=True response: body: - string: '{"value": [{"id": "4c964959-5e03-42a4-bdbe-188c15d43a99", "displayName": - "fabcli000003", "workspaceId": "ea214bd9-415d-4843-9beb-5e850f9645a3"}]}' + string: '{"value": [{"id": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6", "displayName": + "fabcli000003", "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2827,15 +2779,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '140' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:24:24 GMT + - Wed, 20 May 2026 09:26:27 GMT Pragma: - no-cache RequestId: - - 6008fe6d-502d-4cb0-b0fa-809538876b3a + - 92c69cdc-b8b8-4f77-9695-334e8a4d53f7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2861,13 +2813,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/ea214bd9-415d-4843-9beb-5e850f9645a3/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/folders?recursive=True response: body: - string: '{"value": [{"id": "4c964959-5e03-42a4-bdbe-188c15d43a99", "displayName": - "fabcli000003", "workspaceId": "ea214bd9-415d-4843-9beb-5e850f9645a3"}]}' + string: '{"value": [{"id": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6", "displayName": + "fabcli000003", "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2876,15 +2828,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '140' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:24:25 GMT + - Wed, 20 May 2026 09:26:28 GMT Pragma: - no-cache RequestId: - - c46ac5fb-f651-4836-a6f7-1e5048ba49b8 + - d9dace79-460d-44ac-b573-b73d670722a9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2912,9 +2864,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/ea214bd9-415d-4843-9beb-5e850f9645a3/items/83f5c4fb-65b3-489f-80e1-d915e28a4775 + uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/items/0379bbf5-650f-476c-b3ae-a8286288ea6f response: body: string: '' @@ -2930,11 +2882,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:24:25 GMT + - Wed, 20 May 2026 09:26:29 GMT Pragma: - no-cache RequestId: - - fb038b95-c00b-44c2-9f57-55eb0ead5079 + - 7fe973c5-209b-4b39-96f2-df8b5fd8a5ed Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2960,16 +2912,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ea214bd9-415d-4843-9beb-5e850f9645a3", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6d115027-c55b-46d3-a868-60b47ac46449", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2978,15 +2933,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:24:27 GMT + - Wed, 20 May 2026 09:26:30 GMT Pragma: - no-cache RequestId: - - 46a290a9-501d-4f06-bb10-faec79b2681c + - be584196-2564-487f-9937-fea79d67f1e7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3012,13 +2967,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/ea214bd9-415d-4843-9beb-5e850f9645a3/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/folders?recursive=True response: body: - string: '{"value": [{"id": "4c964959-5e03-42a4-bdbe-188c15d43a99", "displayName": - "fabcli000003", "workspaceId": "ea214bd9-415d-4843-9beb-5e850f9645a3"}]}' + string: '{"value": [{"id": "d111f271-86a1-4d81-bdf6-d8da34d5d0e6", "displayName": + "fabcli000003", "workspaceId": "6d115027-c55b-46d3-a868-60b47ac46449"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3027,15 +2982,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '140' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:24:27 GMT + - Wed, 20 May 2026 09:26:30 GMT Pragma: - no-cache RequestId: - - 0a51acbb-2f21-4090-903e-ac498b6c421f + - e47ec42a-9ec8-42bf-b1b5-439342630a68 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3063,9 +3018,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/ea214bd9-415d-4843-9beb-5e850f9645a3/folders/4c964959-5e03-42a4-bdbe-188c15d43a99 + uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/folders/d111f271-86a1-4d81-bdf6-d8da34d5d0e6 response: body: string: '' @@ -3081,11 +3036,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:24:28 GMT + - Wed, 20 May 2026 09:26:32 GMT Pragma: - no-cache RequestId: - - d5794667-c6bb-4596-8d45-1383132d8963 + - 007869fc-14db-4bb2-a90c-4a59239110f0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3111,16 +3066,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ea214bd9-415d-4843-9beb-5e850f9645a3", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6d115027-c55b-46d3-a868-60b47ac46449", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3129,15 +3087,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:24:29 GMT + - Wed, 20 May 2026 09:26:33 GMT Pragma: - no-cache RequestId: - - c839834c-f5f9-4fd0-8cdb-d9b6605f614c + - 26a0fa29-92bc-4591-924f-744a7e1fdaef Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3163,13 +3121,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/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders?recursive=True response: body: - string: '{"value": [{"id": "dbed2ee2-5dc2-4037-867c-9d29b6287340", "displayName": - "fabcli000003", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf"}]}' + string: '{"value": [{"id": "7e6f5658-f52d-460f-9fd5-38080907c930", "displayName": + "fabcli000003", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3182,11 +3140,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:24:30 GMT + - Wed, 20 May 2026 09:26:34 GMT Pragma: - no-cache RequestId: - - 5f2cd5b5-2191-4342-9951-f8dd4d15ea7c + - e8577693-bae6-41f2-9eda-47aa50a023d6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3212,16 +3170,16 @@ 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/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/items + uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/items response: body: - string: '{"value": [{"id": "d1815453-76e7-46c8-8af7-ea2f00255805", "type": "SQLEndpoint", - "displayName": "fabcli000004", "description": "", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", - "folderId": "dbed2ee2-5dc2-4037-867c-9d29b6287340"}, {"id": "e647cfcf-363f-4a80-9616-e145b698b150", - "type": "MirroredDatabase", "displayName": "fabcli000004", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "folderId": - "dbed2ee2-5dc2-4037-867c-9d29b6287340"}]}' + string: '{"value": [{"id": "520bb395-0398-482c-812d-b5fa14c01e7b", "type": "SQLEndpoint", + "displayName": "fabcli000004", "description": "", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b", + "folderId": "7e6f5658-f52d-460f-9fd5-38080907c930"}, {"id": "bc01466e-cf5a-4149-b878-a4e8337cf2bd", + "type": "MirroredDatabase", "displayName": "fabcli000004", "description": + "", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "folderId": "7e6f5658-f52d-460f-9fd5-38080907c930"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3230,15 +3188,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '260' + - '248' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:24:31 GMT + - Wed, 20 May 2026 09:26:35 GMT Pragma: - no-cache RequestId: - - 043003ed-be87-4ca9-b4e6-21ce1c63469d + - 59c1bda6-b51b-492d-8d12-68993055cace Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3264,13 +3222,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/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders?recursive=True response: body: - string: '{"value": [{"id": "dbed2ee2-5dc2-4037-867c-9d29b6287340", "displayName": - "fabcli000003", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf"}]}' + string: '{"value": [{"id": "7e6f5658-f52d-460f-9fd5-38080907c930", "displayName": + "fabcli000003", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3283,11 +3241,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:24:32 GMT + - Wed, 20 May 2026 09:26:36 GMT Pragma: - no-cache RequestId: - - d6bfa36a-1011-42f0-b267-7d8b1cf260b4 + - 2ebdbac1-e56c-4410-aa1b-9fbb12865cde Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3313,13 +3271,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/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders?recursive=True response: body: - string: '{"value": [{"id": "dbed2ee2-5dc2-4037-867c-9d29b6287340", "displayName": - "fabcli000003", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf"}]}' + string: '{"value": [{"id": "7e6f5658-f52d-460f-9fd5-38080907c930", "displayName": + "fabcli000003", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3332,11 +3290,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:24:33 GMT + - Wed, 20 May 2026 09:26:36 GMT Pragma: - no-cache RequestId: - - 7963282e-92bd-4fb5-be78-79dee99ce0bd + - 1a05c0cc-50c8-4dd4-a710-ccee4fe862f9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3364,9 +3322,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/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/items/e647cfcf-363f-4a80-9616-e145b698b150 + uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/items/bc01466e-cf5a-4149-b878-a4e8337cf2bd response: body: string: '' @@ -3382,11 +3340,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:24:33 GMT + - Wed, 20 May 2026 09:26:38 GMT Pragma: - no-cache RequestId: - - 858fc90e-4307-484e-a4b5-17a1d71e1761 + - 3074986b-9879-4234-908b-2f7ceeda8a87 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3412,16 +3370,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ea214bd9-415d-4843-9beb-5e850f9645a3", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6d115027-c55b-46d3-a868-60b47ac46449", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3430,15 +3391,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:24:34 GMT + - Wed, 20 May 2026 09:26:38 GMT Pragma: - no-cache RequestId: - - 06feb392-7579-46ff-8e5d-e047856af679 + - c3150613-96f6-4041-8bea-50512e161b3b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3464,13 +3425,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/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders?recursive=True response: body: - string: '{"value": [{"id": "dbed2ee2-5dc2-4037-867c-9d29b6287340", "displayName": - "fabcli000003", "workspaceId": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf"}]}' + string: '{"value": [{"id": "7e6f5658-f52d-460f-9fd5-38080907c930", "displayName": + "fabcli000003", "workspaceId": "335417c8-3ffd-4bf3-810e-27d5086cb58b"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3483,11 +3444,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:24:35 GMT + - Wed, 20 May 2026 09:26:39 GMT Pragma: - no-cache RequestId: - - 9b0a6f2f-4c14-4677-9a4b-f478cef325fe + - dcbaaaab-62ac-4e41-a7a4-855b4fe1d259 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3515,9 +3476,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/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/folders/dbed2ee2-5dc2-4037-867c-9d29b6287340 + uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/folders/7e6f5658-f52d-460f-9fd5-38080907c930 response: body: string: '' @@ -3533,11 +3494,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:24:36 GMT + - Wed, 20 May 2026 09:26:40 GMT Pragma: - no-cache RequestId: - - 6e989c6a-cf44-4cfa-bb2b-68e00e5b3cf6 + - eae0cdd3-7d4c-4109-8e98-2d4f03a04975 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3563,16 +3524,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ea214bd9-415d-4843-9beb-5e850f9645a3", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "335417c8-3ffd-4bf3-810e-27d5086cb58b", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6d115027-c55b-46d3-a868-60b47ac46449", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3581,15 +3545,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:24:37 GMT + - Wed, 20 May 2026 09:26:40 GMT Pragma: - no-cache RequestId: - - b9a90fc7-3e4b-44a8-b35c-6531456fc22e + - 3fbf0ec0-3960-40b1-b3c0-3f1c8d87951c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3615,9 +3579,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/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf/items + uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b/items response: body: string: '{"value": []}' @@ -3633,11 +3597,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:24:37 GMT + - Wed, 20 May 2026 09:26:41 GMT Pragma: - no-cache RequestId: - - 7a25ebd8-40eb-4390-b64f-98447abf4e34 + - 20d2cdbf-241c-4804-98b0-06be1350bd73 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3665,9 +3629,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/7d1a7c35-1a32-49aa-aaee-9ddf181eb3cf + uri: https://api.fabric.microsoft.com/v1/workspaces/335417c8-3ffd-4bf3-810e-27d5086cb58b response: body: string: '' @@ -3683,11 +3647,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:24:38 GMT + - Wed, 20 May 2026 09:26:41 GMT Pragma: - no-cache RequestId: - - 1cdc15ed-08f8-4dc2-9cf5-88f62bce2cd8 + - 918ed1df-d905-4018-b652-515e9621cd43 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3713,15 +3677,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ea214bd9-415d-4843-9beb-5e850f9645a3", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6d115027-c55b-46d3-a868-60b47ac46449", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3730,15 +3696,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2843' + - '2659' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:24:40 GMT + - Wed, 20 May 2026 09:26:42 GMT Pragma: - no-cache RequestId: - - 69514b42-6fc9-465c-9429-22ced029f8dd + - 8d79d397-decc-40bc-8a3a-6c1f9af0ddab Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3764,9 +3730,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/ea214bd9-415d-4843-9beb-5e850f9645a3/items + uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449/items response: body: string: '{"value": []}' @@ -3782,11 +3748,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:24:40 GMT + - Wed, 20 May 2026 09:26:43 GMT Pragma: - no-cache RequestId: - - e2a70933-f2c4-41cd-b692-12269414ab85 + - 1500649d-828a-44af-9c18-74c3581121f5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3814,9 +3780,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/ea214bd9-415d-4843-9beb-5e850f9645a3 + uri: https://api.fabric.microsoft.com/v1/workspaces/6d115027-c55b-46d3-a868-60b47ac46449 response: body: string: '' @@ -3832,11 +3798,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:24:41 GMT + - Wed, 20 May 2026 09:26:43 GMT Pragma: - no-cache RequestId: - - 389f0abb-0c21-4791-bda8-5193def30ab1 + - d4a1613f-94d2-45d8-bfb3-4159369f7856 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[Notebook].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[Notebook].yaml index 2b6291f35..c1b450970 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[Notebook].yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[Notebook].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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:24:42 GMT + - Wed, 20 May 2026 09:26:44 GMT Pragma: - no-cache RequestId: - - 5af01cf5-75b0-4639-a304-b91b26c57cae + - f8beed12-d284-4ed1-bd0f-4876e1aa44de Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:24:43 GMT + - Wed, 20 May 2026 09:26:45 GMT Pragma: - no-cache RequestId: - - 42cdb5e7-beec-4aef-9830-8df1a1390fd0 + - 2098235c-0817-4e13-a35a-5bf034d42a77 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,7 +113,7 @@ 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/capacities response: @@ -127,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '425' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:24:48 GMT + - Wed, 20 May 2026 09:26:49 GMT Pragma: - no-cache RequestId: - - 01a49bd0-235e-4226-982c-c95736b015e4 + - 778d4e98-80bc-414c-90b6-00795915c3dc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -150,8 +152,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -160,16 +161,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -178,17 +180,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:25:03 GMT + - Wed, 20 May 2026 09:26:56 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498 + - https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859 Pragma: - no-cache RequestId: - - 64b5c0fb-cb4c-4554-afd9-854a065ff73e + - e5f22673-5571-4dcb-86bf-23747f298494 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,15 +216,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -231,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2842' + - '2657' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:25:04 GMT + - Wed, 20 May 2026 09:26:56 GMT Pragma: - no-cache RequestId: - - 88119ee4-30d9-4556-a487-4d638c4d3542 + - e585994d-bc7f-43bf-a119-fad8a0d28254 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,15 +269,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -282,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2842' + - '2657' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:25:05 GMT + - Wed, 20 May 2026 09:26:57 GMT Pragma: - no-cache RequestId: - - 29433bd1-c32c-4ce9-9dc8-3fc0275524ed + - 284a004c-9c59-4cdd-b2fa-8f2db89dc915 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,7 +322,7 @@ 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/capacities response: @@ -332,15 +338,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:25:10 GMT + - Wed, 20 May 2026 09:27:02 GMT Pragma: - no-cache RequestId: - - 63a46024-f771-48c2-a2a2-0d55da684145 + - 791abd9f-3787-4261-8fd4-033ff16f020a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -355,8 +361,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000002", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -365,16 +370,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "9b487033-0f4a-44f8-84e7-544d239144e0", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -383,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '154' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:25:18 GMT + - Wed, 20 May 2026 09:27:10 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/5d9e9502-f2b7-49f2-8ddc-f8381d07b760 + - https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0 Pragma: - no-cache RequestId: - - 5ec21bcd-8ab2-48e0-96d5-26b2ef4a778c + - 6b77dd29-a6fa-42a7-8508-d4e1402d2c3b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -419,16 +425,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9b487033-0f4a-44f8-84e7-544d239144e0", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -437,15 +446,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2884' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:25:18 GMT + - Wed, 20 May 2026 09:27:10 GMT Pragma: - no-cache RequestId: - - 299db34e-0ce0-4c6f-b3e9-76358a1b8732 + - 47ff9524-e5d1-48c6-8856-c22ac60f2dfd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -471,9 +480,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/30763b40-c9c2-4527-9246-d12086f5b498/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders?recursive=True response: body: string: '{"value": []}' @@ -489,11 +498,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:25:20 GMT + - Wed, 20 May 2026 09:27:12 GMT Pragma: - no-cache RequestId: - - 51ef95c8-9512-4669-859c-5fecc964a4d8 + - 3e9ba0de-ae9f-4660-a44a-9c03f72ece80 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -519,9 +528,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/30763b40-c9c2-4527-9246-d12086f5b498/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders?recursive=True response: body: string: '{"value": []}' @@ -537,11 +546,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:25:20 GMT + - Wed, 20 May 2026 09:27:12 GMT Pragma: - no-cache RequestId: - - 14260bc3-3dcc-4ce1-9979-4ae5c4e78990 + - bbed569c-af8f-4654-a529-e5f070d866c4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -565,17 +574,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/30763b40-c9c2-4527-9246-d12086f5b498/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders response: body: - string: '{"id": "40291a18-8b1f-4762-a94e-1f35b90a4a90", "displayName": "fabcli000003", - "workspaceId": "30763b40-c9c2-4527-9246-d12086f5b498"}' + string: '{"id": "c9a6b4ff-d63e-4e8b-b134-0199fa480293", "displayName": "fabcli000003", + "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -584,17 +593,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '133' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:25:21 GMT + - Wed, 20 May 2026 09:27:14 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498/folders/40291a18-8b1f-4762-a94e-1f35b90a4a90 + - https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders/c9a6b4ff-d63e-4e8b-b134-0199fa480293 Pragma: - no-cache RequestId: - - 607935b2-ef91-465d-8684-4d178b7e8d6e + - c64008ac-771f-415b-8a4a-bb943e46554c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -620,16 +629,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9b487033-0f4a-44f8-84e7-544d239144e0", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -638,15 +650,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2884' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:25:22 GMT + - Wed, 20 May 2026 09:27:15 GMT Pragma: - no-cache RequestId: - - d34fc1f6-3a6a-4297-bd21-96a3b506989f + - 5d30d157-9261-468f-baa5-ab24730d9c54 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -672,13 +684,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/30763b40-c9c2-4527-9246-d12086f5b498/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders?recursive=True response: body: - string: '{"value": [{"id": "40291a18-8b1f-4762-a94e-1f35b90a4a90", "displayName": - "fabcli000003", "workspaceId": "30763b40-c9c2-4527-9246-d12086f5b498"}]}' + string: '{"value": [{"id": "c9a6b4ff-d63e-4e8b-b134-0199fa480293", "displayName": + "fabcli000003", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -687,15 +699,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '142' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:25:22 GMT + - Wed, 20 May 2026 09:27:15 GMT Pragma: - no-cache RequestId: - - 07e9a09b-ce57-457c-8fca-98eebc5b8d58 + - 2bcbcc88-217c-404e-b4c2-b2422af9d2b1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -721,9 +733,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/30763b40-c9c2-4527-9246-d12086f5b498/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/items response: body: string: '{"value": []}' @@ -739,11 +751,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:25:23 GMT + - Wed, 20 May 2026 09:27:16 GMT Pragma: - no-cache RequestId: - - ec42160a-c29f-4d51-b891-bf399f54f3e5 + - c441d9f6-7f1a-43c2-bf55-bf26b14382ce Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -769,9 +781,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/30763b40-c9c2-4527-9246-d12086f5b498/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/items response: body: string: '{"value": []}' @@ -787,11 +799,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:25:24 GMT + - Wed, 20 May 2026 09:27:17 GMT Pragma: - no-cache RequestId: - - d82fa014-239c-4512-985c-0a645008ee8c + - a3af13e0-d084-4c7a-87c7-9591425da8d9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -806,9 +818,8 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000004", "type": - "Notebook", "folderId": "40291a18-8b1f-4762-a94e-1f35b90a4a90", "definition": - {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", + body: '{"displayName": "fabcli000004", "type": "Notebook", "folderId": "c9a6b4ff-d63e-4e8b-b134-0199fa480293", + "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", "payloadType": "InlineBase64"}]}}' headers: Accept: @@ -818,13 +829,13 @@ interactions: Connection: - keep-alive Content-Length: - - '798' + - '765' 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/30763b40-c9c2-4527-9246-d12086f5b498/notebooks + uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/notebooks response: body: string: 'null' @@ -840,15 +851,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:25:25 GMT + - Wed, 20 May 2026 09:27:19 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/068dc9d6-255c-4014-817d-6d3bcae0dbdf + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dd9c4e7a-562e-4695-8b91-3035e30e29a7 Pragma: - no-cache RequestId: - - a3643cc3-f1d5-421a-b58d-8520d895ab3f + - 8360074c-c0b5-4228-ae18-5dda6fc83b0b Retry-After: - '20' Strict-Transport-Security: @@ -862,7 +873,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 068dc9d6-255c-4014-817d-6d3bcae0dbdf + - dd9c4e7a-562e-4695-8b91-3035e30e29a7 status: code: 202 message: Accepted @@ -878,13 +889,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/068dc9d6-255c-4014-817d-6d3bcae0dbdf + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dd9c4e7a-562e-4695-8b91-3035e30e29a7 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:25:25.9069726", - "lastUpdatedTimeUtc": "2026-02-06T08:25:27.3450818", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:27:19.2590561", + "lastUpdatedTimeUtc": "2026-05-20T09:27:20.8084774", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -894,17 +905,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '130' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:25:47 GMT + - Wed, 20 May 2026 09:27:40 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/068dc9d6-255c-4014-817d-6d3bcae0dbdf/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dd9c4e7a-562e-4695-8b91-3035e30e29a7/result Pragma: - no-cache RequestId: - - 356d19f7-35a5-4ddf-8058-dc69d192f943 + - 55dc064c-6054-4bd5-a87f-6fca195c640a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -912,7 +923,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 068dc9d6-255c-4014-817d-6d3bcae0dbdf + - dd9c4e7a-562e-4695-8b91-3035e30e29a7 status: code: 200 message: OK @@ -928,14 +939,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/068dc9d6-255c-4014-817d-6d3bcae0dbdf/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dd9c4e7a-562e-4695-8b91-3035e30e29a7/result response: body: - string: '{"id": "5c04201e-d9f3-49d1-9e6c-5f875c4835fd", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "30763b40-c9c2-4527-9246-d12086f5b498", "folderId": "40291a18-8b1f-4762-a94e-1f35b90a4a90"}' + string: '{"id": "41d7452c-a396-4408-8a4d-30ecc3c84d7b", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859", + "folderId": "c9a6b4ff-d63e-4e8b-b134-0199fa480293"}' headers: Access-Control-Expose-Headers: - RequestId @@ -946,11 +957,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 08:25:49 GMT + - Wed, 20 May 2026 09:27:41 GMT Pragma: - no-cache RequestId: - - 11f38018-3f37-49de-8517-958477563451 + - 830fc5da-5c6d-4c54-8458-9f4e9c084bf7 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -974,16 +985,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9b487033-0f4a-44f8-84e7-544d239144e0", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -992,15 +1006,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2884' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:25:49 GMT + - Wed, 20 May 2026 09:27:42 GMT Pragma: - no-cache RequestId: - - ef2d00b0-b603-4065-8d4f-c2c890a4108a + - 488ef733-44fa-447b-85a8-7b1636eb0a7d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1026,13 +1040,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/30763b40-c9c2-4527-9246-d12086f5b498/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders?recursive=True response: body: - string: '{"value": [{"id": "40291a18-8b1f-4762-a94e-1f35b90a4a90", "displayName": - "fabcli000003", "workspaceId": "30763b40-c9c2-4527-9246-d12086f5b498"}]}' + string: '{"value": [{"id": "c9a6b4ff-d63e-4e8b-b134-0199fa480293", "displayName": + "fabcli000003", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1041,15 +1055,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '142' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:25:50 GMT + - Wed, 20 May 2026 09:27:42 GMT Pragma: - no-cache RequestId: - - 58a98234-4bc2-494d-b591-1574cbc2ca5f + - 478b19ed-6cb9-456f-9d26-c49360f0e95d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1075,16 +1089,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9b487033-0f4a-44f8-84e7-544d239144e0", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1093,15 +1110,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2884' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:25:50 GMT + - Wed, 20 May 2026 09:27:43 GMT Pragma: - no-cache RequestId: - - ca99c4e1-de86-485d-a163-06a7ef613f03 + - 86cb04c6-fb44-499f-99ee-4a70a05fe510 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1127,16 +1144,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9b487033-0f4a-44f8-84e7-544d239144e0", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1145,15 +1165,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2884' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:25:51 GMT + - Wed, 20 May 2026 09:27:44 GMT Pragma: - no-cache RequestId: - - 501ca900-03bf-4eeb-a287-94f916cd6ab5 + - a22d1d57-75e0-4939-9755-dd020a553264 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1179,9 +1199,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/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/folders?recursive=True response: body: string: '{"value": []}' @@ -1197,11 +1217,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:25:52 GMT + - Wed, 20 May 2026 09:27:45 GMT Pragma: - no-cache RequestId: - - fddf19d3-a6c2-4ea5-9100-bea08bf2ed7c + - 401c0658-dd31-4605-ac1f-ccd8571e71c8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1227,9 +1247,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/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/folders?recursive=True response: body: string: '{"value": []}' @@ -1245,11 +1265,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:25:53 GMT + - Wed, 20 May 2026 09:27:45 GMT Pragma: - no-cache RequestId: - - e71e7db1-f0cf-4636-b4c3-037f48c4e140 + - f2420e27-e5e5-4f06-8bcd-1ef39e8c84e6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1273,17 +1293,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/folders response: body: - string: '{"id": "a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea", "displayName": "fabcli000003", - "workspaceId": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760"}' + string: '{"id": "d540e388-260c-40a3-9d40-2072de174d8b", "displayName": "fabcli000003", + "workspaceId": "9b487033-0f4a-44f8-84e7-544d239144e0"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -1292,17 +1312,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '132' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:25:54 GMT + - Wed, 20 May 2026 09:27:46 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/folders/a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea + - https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/folders/d540e388-260c-40a3-9d40-2072de174d8b Pragma: - no-cache RequestId: - - 0966dde0-c977-491f-836f-d2fd74e0c7af + - 7d05e26d-992d-4ec4-926e-e1bb1f86675a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1328,14 +1348,14 @@ 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/30763b40-c9c2-4527-9246-d12086f5b498/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/items response: body: - string: '{"value": [{"id": "5c04201e-d9f3-49d1-9e6c-5f875c4835fd", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "30763b40-c9c2-4527-9246-d12086f5b498", "folderId": "40291a18-8b1f-4762-a94e-1f35b90a4a90"}]}' + string: '{"value": [{"id": "41d7452c-a396-4408-8a4d-30ecc3c84d7b", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859", + "folderId": "c9a6b4ff-d63e-4e8b-b134-0199fa480293"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1344,15 +1364,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '209' + - '196' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:25:54 GMT + - Wed, 20 May 2026 09:27:47 GMT Pragma: - no-cache RequestId: - - 9adb8f6c-3d2e-4b7a-bffc-5b80aa8939c9 + - 048e8e69-66cb-413e-af58-138a28cb8b26 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1378,13 +1398,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/30763b40-c9c2-4527-9246-d12086f5b498/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders?recursive=True response: body: - string: '{"value": [{"id": "40291a18-8b1f-4762-a94e-1f35b90a4a90", "displayName": - "fabcli000003", "workspaceId": "30763b40-c9c2-4527-9246-d12086f5b498"}]}' + string: '{"value": [{"id": "c9a6b4ff-d63e-4e8b-b134-0199fa480293", "displayName": + "fabcli000003", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1393,15 +1413,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '142' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:25:55 GMT + - Wed, 20 May 2026 09:27:48 GMT Pragma: - no-cache RequestId: - - 467863e5-b0bd-4272-83bb-9e7169a6afe7 + - 0d844c7c-8b4d-40c1-8325-edc683d95905 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1427,13 +1447,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/30763b40-c9c2-4527-9246-d12086f5b498/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders?recursive=True response: body: - string: '{"value": [{"id": "40291a18-8b1f-4762-a94e-1f35b90a4a90", "displayName": - "fabcli000003", "workspaceId": "30763b40-c9c2-4527-9246-d12086f5b498"}]}' + string: '{"value": [{"id": "c9a6b4ff-d63e-4e8b-b134-0199fa480293", "displayName": + "fabcli000003", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1442,15 +1462,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '142' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:25:56 GMT + - Wed, 20 May 2026 09:27:49 GMT Pragma: - no-cache RequestId: - - ca1b1396-6625-45a1-9b14-deed5478dd9a + - 269481e6-ba34-4088-8aa0-173d8d8dff98 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1476,14 +1496,14 @@ 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/30763b40-c9c2-4527-9246-d12086f5b498/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/items response: body: - string: '{"value": [{"id": "5c04201e-d9f3-49d1-9e6c-5f875c4835fd", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "30763b40-c9c2-4527-9246-d12086f5b498", "folderId": "40291a18-8b1f-4762-a94e-1f35b90a4a90"}]}' + string: '{"value": [{"id": "41d7452c-a396-4408-8a4d-30ecc3c84d7b", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859", + "folderId": "c9a6b4ff-d63e-4e8b-b134-0199fa480293"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1492,15 +1512,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '209' + - '196' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:25:57 GMT + - Wed, 20 May 2026 09:27:49 GMT Pragma: - no-cache RequestId: - - cb802104-950c-43b5-be48-2b40222c68ca + - 93269ab5-1e61-4122-9455-de75d75853fa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1526,13 +1546,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/30763b40-c9c2-4527-9246-d12086f5b498/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders?recursive=True response: body: - string: '{"value": [{"id": "40291a18-8b1f-4762-a94e-1f35b90a4a90", "displayName": - "fabcli000003", "workspaceId": "30763b40-c9c2-4527-9246-d12086f5b498"}]}' + string: '{"value": [{"id": "c9a6b4ff-d63e-4e8b-b134-0199fa480293", "displayName": + "fabcli000003", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1541,15 +1561,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '142' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:25:57 GMT + - Wed, 20 May 2026 09:27:50 GMT Pragma: - no-cache RequestId: - - b2a06033-5284-400f-aa81-f406d34850d5 + - 75071a74-cecc-4b04-9d34-39ae42e2accd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1575,13 +1595,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/30763b40-c9c2-4527-9246-d12086f5b498/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders?recursive=True response: body: - string: '{"value": [{"id": "40291a18-8b1f-4762-a94e-1f35b90a4a90", "displayName": - "fabcli000003", "workspaceId": "30763b40-c9c2-4527-9246-d12086f5b498"}]}' + string: '{"value": [{"id": "c9a6b4ff-d63e-4e8b-b134-0199fa480293", "displayName": + "fabcli000003", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1590,15 +1610,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '142' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:25:58 GMT + - Wed, 20 May 2026 09:27:51 GMT Pragma: - no-cache RequestId: - - 20aca092-22eb-40cf-9be6-b09e994c7836 + - 75ca5fc3-5fed-42ec-ab52-1c2528b54c08 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1624,16 +1644,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9b487033-0f4a-44f8-84e7-544d239144e0", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1642,15 +1665,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2884' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:26:00 GMT + - Wed, 20 May 2026 09:27:52 GMT Pragma: - no-cache RequestId: - - 8beea879-1433-4d05-9084-da3f7b9fe286 + - f568e8f2-3dd4-44d5-865b-0ef262956265 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1676,13 +1699,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/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/folders?recursive=True response: body: - string: '{"value": [{"id": "a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea", "displayName": - "fabcli000003", "workspaceId": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760"}]}' + string: '{"value": [{"id": "d540e388-260c-40a3-9d40-2072de174d8b", "displayName": + "fabcli000003", "workspaceId": "9b487033-0f4a-44f8-84e7-544d239144e0"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1695,11 +1718,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:26:00 GMT + - Wed, 20 May 2026 09:27:52 GMT Pragma: - no-cache RequestId: - - cd2c78cd-81d6-4c6b-8438-b9ba4b3c42cd + - 4b1fbab1-63d7-4731-8d00-6440363c734f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1725,9 +1748,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/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/items response: body: string: '{"value": []}' @@ -1743,11 +1766,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:26:01 GMT + - Wed, 20 May 2026 09:27:53 GMT Pragma: - no-cache RequestId: - - c1ea45c1-0acc-49f3-850e-532684932612 + - 767970db-2e0c-4796-9401-98989ec68d31 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1773,9 +1796,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/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/items response: body: string: '{"value": []}' @@ -1791,11 +1814,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:26:02 GMT + - Wed, 20 May 2026 09:27:54 GMT Pragma: - no-cache RequestId: - - b1a7b783-c241-45fc-8060-989d2e17eb61 + - b128ee5f-8b5c-4811-a4ec-669e8f1310b4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1821,9 +1844,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/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/items response: body: string: '{"value": []}' @@ -1839,11 +1862,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:26:03 GMT + - Wed, 20 May 2026 09:27:55 GMT Pragma: - no-cache RequestId: - - 31c28fda-3f59-4bf5-ad10-a3cb3aa3f9df + - a4c64b99-08f6-4c7a-b75a-e552ad40c9e3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1869,14 +1892,14 @@ 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/30763b40-c9c2-4527-9246-d12086f5b498/items/5c04201e-d9f3-49d1-9e6c-5f875c4835fd + uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/items/41d7452c-a396-4408-8a4d-30ecc3c84d7b response: body: - string: '{"id": "5c04201e-d9f3-49d1-9e6c-5f875c4835fd", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "30763b40-c9c2-4527-9246-d12086f5b498", "folderId": "40291a18-8b1f-4762-a94e-1f35b90a4a90"}' + string: '{"id": "41d7452c-a396-4408-8a4d-30ecc3c84d7b", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859", + "folderId": "c9a6b4ff-d63e-4e8b-b134-0199fa480293"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1885,17 +1908,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '197' + - '182' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:26:04 GMT + - Wed, 20 May 2026 09:27:56 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 10c7b30e-e9d2-4f30-942e-7ba8d1b9cf87 + - 22b1dcc8-8e03-4228-bddc-cc139e6920b5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1923,9 +1946,9 @@ interactions: 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/30763b40-c9c2-4527-9246-d12086f5b498/items/5c04201e-d9f3-49d1-9e6c-5f875c4835fd/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/items/41d7452c-a396-4408-8a4d-30ecc3c84d7b/getDefinition response: body: string: 'null' @@ -1941,13 +1964,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:26:05 GMT + - Wed, 20 May 2026 09:27:57 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/319283ea-0a3e-44ca-9a21-33639e9333bc + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6d5bb8ba-16cd-4b46-9bfa-f66886c1fb71 Pragma: - no-cache RequestId: - - f53082fb-1e6b-4667-b194-f2e847cb2aba + - 14d86a9c-c9b5-426e-96e9-03ff6e601607 Retry-After: - '20' Strict-Transport-Security: @@ -1961,7 +1984,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 319283ea-0a3e-44ca-9a21-33639e9333bc + - 6d5bb8ba-16cd-4b46-9bfa-f66886c1fb71 status: code: 202 message: Accepted @@ -1977,13 +2000,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/319283ea-0a3e-44ca-9a21-33639e9333bc + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6d5bb8ba-16cd-4b46-9bfa-f66886c1fb71 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:26:05.33643", - "lastUpdatedTimeUtc": "2026-02-06T08:26:05.6645579", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:27:57.6085143", + "lastUpdatedTimeUtc": "2026-05-20T09:27:58.3038009", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1993,17 +2016,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '128' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:26:26 GMT + - Wed, 20 May 2026 09:28:18 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/319283ea-0a3e-44ca-9a21-33639e9333bc/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6d5bb8ba-16cd-4b46-9bfa-f66886c1fb71/result Pragma: - no-cache RequestId: - - c8c4fae5-4546-4e6c-9ddd-1488586f4ca7 + - 9ea048e9-dc6a-42af-8aee-5949fdf5b1ea Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2011,7 +2034,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 319283ea-0a3e-44ca-9a21-33639e9333bc + - 6d5bb8ba-16cd-4b46-9bfa-f66886c1fb71 status: code: 200 message: OK @@ -2027,14 +2050,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/319283ea-0a3e-44ca-9a21-33639e9333bc/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6d5bb8ba-16cd-4b46-9bfa-f66886c1fb71/result response: body: string: '{"definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -2046,11 +2069,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 08:26:27 GMT + - Wed, 20 May 2026 09:28:19 GMT Pragma: - no-cache RequestId: - - 641cf46a-bf75-4a3b-b2bd-ef9bdce0dfb5 + - cdfd563d-d2e9-403d-bca8-575e6ebf24f9 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -2063,10 +2086,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "Notebook", "displayName": "fabcli000004", - "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", - "payloadType": "InlineBase64"}]}, "folderId": "a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea"}' + body: '{"type": "Notebook", "displayName": "fabcli000004", "definition": {"parts": + [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}]}, "folderId": "d540e388-260c-40a3-9d40-2072de174d8b"}' headers: Accept: - '*/*' @@ -2075,13 +2098,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1319' + - '1238' 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/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/items response: body: string: 'null' @@ -2097,15 +2120,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:26:31 GMT + - Wed, 20 May 2026 09:28:21 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fde3bcf5-41b6-48ee-a61c-ed1a9ce70efe + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8c990f3d-3699-4acc-b4a3-f66039677803 Pragma: - no-cache RequestId: - - 44070771-1f62-4e15-907b-1e2937a46922 + - 9592ee30-34bb-48ed-9a9d-522e6d8fdac7 Retry-After: - '20' Strict-Transport-Security: @@ -2119,7 +2142,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - fde3bcf5-41b6-48ee-a61c-ed1a9ce70efe + - 8c990f3d-3699-4acc-b4a3-f66039677803 status: code: 202 message: Accepted @@ -2135,13 +2158,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fde3bcf5-41b6-48ee-a61c-ed1a9ce70efe + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8c990f3d-3699-4acc-b4a3-f66039677803 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:26:29.5289671", - "lastUpdatedTimeUtc": "2026-02-06T08:26:32.4510817", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:28:20.5993692", + "lastUpdatedTimeUtc": "2026-05-20T09:28:22.6705265", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -2151,17 +2174,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:26:52 GMT + - Wed, 20 May 2026 09:28:42 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fde3bcf5-41b6-48ee-a61c-ed1a9ce70efe/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8c990f3d-3699-4acc-b4a3-f66039677803/result Pragma: - no-cache RequestId: - - 15e279d9-1ef8-4173-be8d-19ef9b1cc676 + - b717f2a2-46c0-4272-aa72-17345382a21c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2169,7 +2192,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - fde3bcf5-41b6-48ee-a61c-ed1a9ce70efe + - 8c990f3d-3699-4acc-b4a3-f66039677803 status: code: 200 message: OK @@ -2185,14 +2208,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fde3bcf5-41b6-48ee-a61c-ed1a9ce70efe/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8c990f3d-3699-4acc-b4a3-f66039677803/result response: body: - string: '{"id": "567bb09e-b164-41ff-9227-d9a74f0b087d", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "folderId": "a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea"}' + string: '{"id": "e50918dc-db41-424d-9f24-1e21dbea619f", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "9b487033-0f4a-44f8-84e7-544d239144e0", + "folderId": "d540e388-260c-40a3-9d40-2072de174d8b"}' headers: Access-Control-Expose-Headers: - RequestId @@ -2203,11 +2226,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 08:26:53 GMT + - Wed, 20 May 2026 09:28:44 GMT Pragma: - no-cache RequestId: - - f368538a-04a9-4e58-949e-ddcb80f4208d + - 6fb249be-68cd-420e-8b4c-fb7fc24b65f1 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -2231,14 +2254,14 @@ 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/30763b40-c9c2-4527-9246-d12086f5b498/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/items response: body: - string: '{"value": [{"id": "5c04201e-d9f3-49d1-9e6c-5f875c4835fd", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "30763b40-c9c2-4527-9246-d12086f5b498", "folderId": "40291a18-8b1f-4762-a94e-1f35b90a4a90"}]}' + string: '{"value": [{"id": "41d7452c-a396-4408-8a4d-30ecc3c84d7b", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859", + "folderId": "c9a6b4ff-d63e-4e8b-b134-0199fa480293"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2247,15 +2270,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '209' + - '196' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:26:54 GMT + - Wed, 20 May 2026 09:28:44 GMT Pragma: - no-cache RequestId: - - 2ee86f6d-e88f-4f04-bad0-0a535c19556c + - eac1e2ab-9c26-49ef-b087-b099ce02fe25 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2281,13 +2304,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/30763b40-c9c2-4527-9246-d12086f5b498/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders?recursive=True response: body: - string: '{"value": [{"id": "40291a18-8b1f-4762-a94e-1f35b90a4a90", "displayName": - "fabcli000003", "workspaceId": "30763b40-c9c2-4527-9246-d12086f5b498"}]}' + string: '{"value": [{"id": "c9a6b4ff-d63e-4e8b-b134-0199fa480293", "displayName": + "fabcli000003", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2296,15 +2319,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '142' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:26:56 GMT + - Wed, 20 May 2026 09:28:45 GMT Pragma: - no-cache RequestId: - - 333a0483-843c-49e8-a035-94ffb969ef5d + - 76a784eb-458d-4379-8a04-ad6699004a72 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2330,13 +2353,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/30763b40-c9c2-4527-9246-d12086f5b498/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders?recursive=True response: body: - string: '{"value": [{"id": "40291a18-8b1f-4762-a94e-1f35b90a4a90", "displayName": - "fabcli000003", "workspaceId": "30763b40-c9c2-4527-9246-d12086f5b498"}]}' + string: '{"value": [{"id": "c9a6b4ff-d63e-4e8b-b134-0199fa480293", "displayName": + "fabcli000003", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2345,15 +2368,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '142' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:26:56 GMT + - Wed, 20 May 2026 09:28:46 GMT Pragma: - no-cache RequestId: - - 216b57a8-4998-4aee-8115-9aecf4649620 + - d7222f13-d69c-449b-a02a-21fa87f4e4ea Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2379,16 +2402,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9b487033-0f4a-44f8-84e7-544d239144e0", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2397,15 +2423,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2884' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:26:57 GMT + - Wed, 20 May 2026 09:28:46 GMT Pragma: - no-cache RequestId: - - e8c5e1a0-30c8-47fe-86a2-e6ac2dca3e7d + - 0396c977-1691-46fd-948a-a971e52c9afc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2431,14 +2457,14 @@ 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/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/items response: body: - string: '{"value": [{"id": "567bb09e-b164-41ff-9227-d9a74f0b087d", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "folderId": "a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea"}]}' + string: '{"value": [{"id": "e50918dc-db41-424d-9f24-1e21dbea619f", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "9b487033-0f4a-44f8-84e7-544d239144e0", + "folderId": "d540e388-260c-40a3-9d40-2072de174d8b"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2447,15 +2473,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '208' + - '196' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:26:58 GMT + - Wed, 20 May 2026 09:28:48 GMT Pragma: - no-cache RequestId: - - d5f323ae-0798-4ec1-a07c-50f7950cfba1 + - 01830259-de77-4fe2-80bb-ddcd35f7cc64 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2481,13 +2507,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/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/folders?recursive=True response: body: - string: '{"value": [{"id": "a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea", "displayName": - "fabcli000003", "workspaceId": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760"}]}' + string: '{"value": [{"id": "d540e388-260c-40a3-9d40-2072de174d8b", "displayName": + "fabcli000003", "workspaceId": "9b487033-0f4a-44f8-84e7-544d239144e0"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2500,11 +2526,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:26:59 GMT + - Wed, 20 May 2026 09:28:49 GMT Pragma: - no-cache RequestId: - - dea97287-2992-4c64-a623-3142fe4a2c18 + - 9f35056d-71d8-43b1-9056-add0830f90b3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2530,13 +2556,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/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/folders?recursive=True response: body: - string: '{"value": [{"id": "a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea", "displayName": - "fabcli000003", "workspaceId": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760"}]}' + string: '{"value": [{"id": "d540e388-260c-40a3-9d40-2072de174d8b", "displayName": + "fabcli000003", "workspaceId": "9b487033-0f4a-44f8-84e7-544d239144e0"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2549,11 +2575,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:26:59 GMT + - Wed, 20 May 2026 09:28:49 GMT Pragma: - no-cache RequestId: - - d581c6a2-217e-44c0-90ee-5bee352b69df + - fa92f466-7890-4a2a-a94f-3adae7dfd2c7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2579,16 +2605,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9b487033-0f4a-44f8-84e7-544d239144e0", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2597,15 +2626,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2884' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:27:00 GMT + - Wed, 20 May 2026 09:28:50 GMT Pragma: - no-cache RequestId: - - 260e7eee-3e6a-4119-9b16-3ebcf91f6677 + - 1ca1d166-897e-49bd-94ce-9442ffeee4b2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2631,13 +2660,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/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/folders?recursive=True response: body: - string: '{"value": [{"id": "a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea", "displayName": - "fabcli000003", "workspaceId": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760"}]}' + string: '{"value": [{"id": "d540e388-260c-40a3-9d40-2072de174d8b", "displayName": + "fabcli000003", "workspaceId": "9b487033-0f4a-44f8-84e7-544d239144e0"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2650,11 +2679,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:27:01 GMT + - Wed, 20 May 2026 09:28:51 GMT Pragma: - no-cache RequestId: - - 3e90f3d0-33ed-46eb-af98-b2e6bf0a0449 + - 6616eede-1807-49bf-bc17-5b681759bf20 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2680,14 +2709,14 @@ 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/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/items response: body: - string: '{"value": [{"id": "567bb09e-b164-41ff-9227-d9a74f0b087d", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "folderId": "a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea"}]}' + string: '{"value": [{"id": "e50918dc-db41-424d-9f24-1e21dbea619f", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "9b487033-0f4a-44f8-84e7-544d239144e0", + "folderId": "d540e388-260c-40a3-9d40-2072de174d8b"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2696,15 +2725,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '208' + - '196' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:27:02 GMT + - Wed, 20 May 2026 09:28:52 GMT Pragma: - no-cache RequestId: - - 56b5d24b-15c9-4e18-8d05-0ef8e2669f50 + - c982cbf4-c40c-4a67-8af9-b3cf65a86207 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2730,13 +2759,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/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/folders?recursive=True response: body: - string: '{"value": [{"id": "a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea", "displayName": - "fabcli000003", "workspaceId": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760"}]}' + string: '{"value": [{"id": "d540e388-260c-40a3-9d40-2072de174d8b", "displayName": + "fabcli000003", "workspaceId": "9b487033-0f4a-44f8-84e7-544d239144e0"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2749,11 +2778,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:27:03 GMT + - Wed, 20 May 2026 09:28:53 GMT Pragma: - no-cache RequestId: - - a9903c3a-f824-4ec3-938c-da94f7e92339 + - 9871097c-468d-426b-817f-aa3be5efad8f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2779,13 +2808,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/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/folders?recursive=True response: body: - string: '{"value": [{"id": "a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea", "displayName": - "fabcli000003", "workspaceId": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760"}]}' + string: '{"value": [{"id": "d540e388-260c-40a3-9d40-2072de174d8b", "displayName": + "fabcli000003", "workspaceId": "9b487033-0f4a-44f8-84e7-544d239144e0"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2798,11 +2827,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:27:03 GMT + - Wed, 20 May 2026 09:28:53 GMT Pragma: - no-cache RequestId: - - 48f0511a-a7d7-4ef2-a47f-78a122f51195 + - aebe5dd6-b429-4f18-b35b-fc7ae4867213 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2828,16 +2857,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9b487033-0f4a-44f8-84e7-544d239144e0", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2846,15 +2878,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2884' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:27:04 GMT + - Wed, 20 May 2026 09:28:54 GMT Pragma: - no-cache RequestId: - - 02683ff9-f500-4fb2-bf28-572c5a4d5830 + - 479f43c9-38c8-444a-8356-d872136ab49d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2880,13 +2912,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/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/folders?recursive=True response: body: - string: '{"value": [{"id": "a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea", "displayName": - "fabcli000003", "workspaceId": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760"}]}' + string: '{"value": [{"id": "d540e388-260c-40a3-9d40-2072de174d8b", "displayName": + "fabcli000003", "workspaceId": "9b487033-0f4a-44f8-84e7-544d239144e0"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2899,11 +2931,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:27:05 GMT + - Wed, 20 May 2026 09:28:55 GMT Pragma: - no-cache RequestId: - - d02f1e6d-70cd-44ce-a876-5141812ef939 + - fb95aa99-97b5-4aab-94a0-7e9d145708bb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2929,14 +2961,14 @@ 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/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/items response: body: - string: '{"value": [{"id": "567bb09e-b164-41ff-9227-d9a74f0b087d", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "folderId": "a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea"}]}' + string: '{"value": [{"id": "e50918dc-db41-424d-9f24-1e21dbea619f", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "9b487033-0f4a-44f8-84e7-544d239144e0", + "folderId": "d540e388-260c-40a3-9d40-2072de174d8b"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2945,15 +2977,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '208' + - '196' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:27:06 GMT + - Wed, 20 May 2026 09:28:56 GMT Pragma: - no-cache RequestId: - - 06badb0a-703d-4273-bed4-8645dd2b6a1a + - c42d8588-0053-4747-b0e2-3db077df32ad Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2979,13 +3011,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/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/folders?recursive=True response: body: - string: '{"value": [{"id": "a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea", "displayName": - "fabcli000003", "workspaceId": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760"}]}' + string: '{"value": [{"id": "d540e388-260c-40a3-9d40-2072de174d8b", "displayName": + "fabcli000003", "workspaceId": "9b487033-0f4a-44f8-84e7-544d239144e0"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2998,11 +3030,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:27:06 GMT + - Wed, 20 May 2026 09:28:57 GMT Pragma: - no-cache RequestId: - - 997ae79d-9d80-4d28-a141-4929ba019839 + - de7ef6e4-18f1-4e5c-bee1-bc229e6b1049 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3030,9 +3062,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/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/items/567bb09e-b164-41ff-9227-d9a74f0b087d + uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/items/e50918dc-db41-424d-9f24-1e21dbea619f response: body: string: '' @@ -3048,11 +3080,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:27:07 GMT + - Wed, 20 May 2026 09:28:58 GMT Pragma: - no-cache RequestId: - - 0ac99cfe-e17c-4a37-8d46-013c0e462d1c + - 05a9c994-f439-40c7-aecc-b5381c051ae2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3078,16 +3110,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9b487033-0f4a-44f8-84e7-544d239144e0", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3096,15 +3131,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2884' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:27:07 GMT + - Wed, 20 May 2026 09:28:58 GMT Pragma: - no-cache RequestId: - - 19c1d42c-9ec6-4a11-9940-64e16861afc1 + - a5c07c27-1def-4fce-8a74-2d0a6c678438 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3130,13 +3165,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/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/folders?recursive=True response: body: - string: '{"value": [{"id": "a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea", "displayName": - "fabcli000003", "workspaceId": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760"}]}' + string: '{"value": [{"id": "d540e388-260c-40a3-9d40-2072de174d8b", "displayName": + "fabcli000003", "workspaceId": "9b487033-0f4a-44f8-84e7-544d239144e0"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3149,11 +3184,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:27:08 GMT + - Wed, 20 May 2026 09:28:59 GMT Pragma: - no-cache RequestId: - - dacab54e-b7ef-4a9c-b1a7-83862df37e4a + - 5de304b0-8f5d-47df-9a49-11eab139909b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3181,9 +3216,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/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/folders/a0ea3aa1-61e3-4b93-b71b-25f4bd03c3ea + uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/folders/d540e388-260c-40a3-9d40-2072de174d8b response: body: string: '' @@ -3199,11 +3234,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:27:10 GMT + - Wed, 20 May 2026 09:29:01 GMT Pragma: - no-cache RequestId: - - 4b1d4693-3873-43e7-9987-81dbff4783e9 + - f0b70107-e4b9-4833-8a41-19984925fe1f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3229,16 +3264,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9b487033-0f4a-44f8-84e7-544d239144e0", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3247,15 +3285,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2884' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:27:11 GMT + - Wed, 20 May 2026 09:29:01 GMT Pragma: - no-cache RequestId: - - b8386846-e814-42a7-ab5d-87d310e3b6f9 + - 00c6fccc-99ac-45a6-9a36-4bbeb003a3fe Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3281,53 +3319,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498/folders?recursive=True - response: - body: - string: '{"requestId": "842652fa-b851-495a-9397-5feebfc24f79", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 8:27:56 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 08:27:12 GMT - RequestId: - - 842652fa-b851-495a-9397-5feebfc24f79 - Retry-After: - - '44' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/30763b40-c9c2-4527-9246-d12086f5b498/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders?recursive=True response: body: - string: '{"value": [{"id": "40291a18-8b1f-4762-a94e-1f35b90a4a90", "displayName": - "fabcli000003", "workspaceId": "30763b40-c9c2-4527-9246-d12086f5b498"}]}' + string: '{"value": [{"id": "c9a6b4ff-d63e-4e8b-b134-0199fa480293", "displayName": + "fabcli000003", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3336,15 +3334,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '142' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:27:58 GMT + - Wed, 20 May 2026 09:29:02 GMT Pragma: - no-cache RequestId: - - ed9c74dd-4e35-4de3-832a-036d37485d2c + - abb52fb4-c345-4821-8528-26ba300283c0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3370,14 +3368,14 @@ 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/30763b40-c9c2-4527-9246-d12086f5b498/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/items response: body: - string: '{"value": [{"id": "5c04201e-d9f3-49d1-9e6c-5f875c4835fd", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "30763b40-c9c2-4527-9246-d12086f5b498", "folderId": "40291a18-8b1f-4762-a94e-1f35b90a4a90"}]}' + string: '{"value": [{"id": "41d7452c-a396-4408-8a4d-30ecc3c84d7b", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859", + "folderId": "c9a6b4ff-d63e-4e8b-b134-0199fa480293"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3386,15 +3384,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '209' + - '196' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:27:59 GMT + - Wed, 20 May 2026 09:29:03 GMT Pragma: - no-cache RequestId: - - 64e1e632-8df0-45e7-952a-c4c95a3ef947 + - 3796bfe7-7e3d-45c1-b0a3-05a5c0bbd269 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3420,13 +3418,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/30763b40-c9c2-4527-9246-d12086f5b498/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders?recursive=True response: body: - string: '{"value": [{"id": "40291a18-8b1f-4762-a94e-1f35b90a4a90", "displayName": - "fabcli000003", "workspaceId": "30763b40-c9c2-4527-9246-d12086f5b498"}]}' + string: '{"value": [{"id": "c9a6b4ff-d63e-4e8b-b134-0199fa480293", "displayName": + "fabcli000003", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3435,15 +3433,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '142' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:00 GMT + - Wed, 20 May 2026 09:29:03 GMT Pragma: - no-cache RequestId: - - 3ada0bd4-3403-4370-97a9-16e54b6b78a5 + - f899a394-4efe-4e0f-b743-14275b1b8b11 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3471,9 +3469,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/30763b40-c9c2-4527-9246-d12086f5b498/items/5c04201e-d9f3-49d1-9e6c-5f875c4835fd + uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/items/41d7452c-a396-4408-8a4d-30ecc3c84d7b response: body: string: '' @@ -3489,11 +3487,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:28:01 GMT + - Wed, 20 May 2026 09:29:05 GMT Pragma: - no-cache RequestId: - - eb7c420a-9c56-48ea-80c4-29adf57591c6 + - b0e0a0a4-712d-46e5-ba24-6c00ac52c3ce Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3519,16 +3517,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9b487033-0f4a-44f8-84e7-544d239144e0", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3537,15 +3538,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2884' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:01 GMT + - Wed, 20 May 2026 09:29:05 GMT Pragma: - no-cache RequestId: - - d28689ac-1a1d-4a02-916d-a8cbbb0a8fd6 + - 87f51459-e170-44c8-a740-61a55826be2f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3571,13 +3572,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/30763b40-c9c2-4527-9246-d12086f5b498/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders?recursive=True response: body: - string: '{"value": [{"id": "40291a18-8b1f-4762-a94e-1f35b90a4a90", "displayName": - "fabcli000003", "workspaceId": "30763b40-c9c2-4527-9246-d12086f5b498"}]}' + string: '{"value": [{"id": "c9a6b4ff-d63e-4e8b-b134-0199fa480293", "displayName": + "fabcli000003", "workspaceId": "4c7e078a-3cf2-4050-a492-764540e98859"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3586,15 +3587,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '142' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:03 GMT + - Wed, 20 May 2026 09:29:06 GMT Pragma: - no-cache RequestId: - - 805b4df9-3313-41a2-9955-e9517e5488c2 + - a066c235-5574-4a4e-9e0b-5b85e9fe114a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3622,9 +3623,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/30763b40-c9c2-4527-9246-d12086f5b498/folders/40291a18-8b1f-4762-a94e-1f35b90a4a90 + uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/folders/c9a6b4ff-d63e-4e8b-b134-0199fa480293 response: body: string: '' @@ -3640,11 +3641,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:28:03 GMT + - Wed, 20 May 2026 09:29:07 GMT Pragma: - no-cache RequestId: - - 32c41a4c-fa12-4743-afca-049b4c9f7efe + - 35391404-370f-412d-a423-ba56f4911631 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3670,16 +3671,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "30763b40-c9c2-4527-9246-d12086f5b498", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4c7e078a-3cf2-4050-a492-764540e98859", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9b487033-0f4a-44f8-84e7-544d239144e0", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3688,15 +3692,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2884' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:04 GMT + - Wed, 20 May 2026 09:29:08 GMT Pragma: - no-cache RequestId: - - a4bcf32b-f469-44c5-b8fd-cab584d09d90 + - ac630219-e794-4a26-aae5-7a2acb792b5d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3722,9 +3726,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/30763b40-c9c2-4527-9246-d12086f5b498/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859/items response: body: string: '{"value": []}' @@ -3740,11 +3744,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:05 GMT + - Wed, 20 May 2026 09:29:09 GMT Pragma: - no-cache RequestId: - - 06034b21-6d8b-490d-8a31-8048714c03aa + - 1d7219f3-2f6a-40d7-b7e2-9587210d239d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3772,9 +3776,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/30763b40-c9c2-4527-9246-d12086f5b498 + uri: https://api.fabric.microsoft.com/v1/workspaces/4c7e078a-3cf2-4050-a492-764540e98859 response: body: string: '' @@ -3790,11 +3794,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:28:06 GMT + - Wed, 20 May 2026 09:29:09 GMT Pragma: - no-cache RequestId: - - 6792e822-8ceb-4aa8-9e10-4356aa3d701b + - 74821730-4cbf-4fa6-8c76-0f8797a40704 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3820,15 +3824,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "5d9e9502-f2b7-49f2-8ddc-f8381d07b760", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9b487033-0f4a-44f8-84e7-544d239144e0", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3837,15 +3843,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2847' + - '2659' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:07 GMT + - Wed, 20 May 2026 09:29:11 GMT Pragma: - no-cache RequestId: - - dd5f0903-3217-40e4-b297-fb58d2100d78 + - 39f25f52-81f8-4b99-aaa5-9f5f55e5fb1e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3871,9 +3877,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/5d9e9502-f2b7-49f2-8ddc-f8381d07b760/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0/items response: body: string: '{"value": []}' @@ -3889,11 +3895,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:07 GMT + - Wed, 20 May 2026 09:29:11 GMT Pragma: - no-cache RequestId: - - c2fd1527-0d20-476f-82a0-4a5e367de6ba + - 5650fa10-6a9d-4eee-b10b-e4ab81873f49 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3921,9 +3927,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/5d9e9502-f2b7-49f2-8ddc-f8381d07b760 + uri: https://api.fabric.microsoft.com/v1/workspaces/9b487033-0f4a-44f8-84e7-544d239144e0 response: body: string: '' @@ -3939,11 +3945,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:28:08 GMT + - Wed, 20 May 2026 09:29:12 GMT Pragma: - no-cache RequestId: - - 62ed4299-1a5a-4a5b-9d31-efff7e860622 + - 5635b669-fa5f-4932-87a3-ba973fc45756 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[Reflex].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[Reflex].yaml index 0b40aea1b..87f8a0b15 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[Reflex].yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[Reflex].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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:09 GMT + - Wed, 20 May 2026 09:29:13 GMT Pragma: - no-cache RequestId: - - 975948c9-a10a-4193-9053-7cfcd23eb7ea + - 41dda96f-554b-455f-9795-950519240caf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:10 GMT + - Wed, 20 May 2026 09:29:14 GMT Pragma: - no-cache RequestId: - - 52fc52ad-a9d4-4151-8454-a9b19a57f567 + - ac6fd34d-0f1e-45d4-b041-4617bb90717b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,7 +113,7 @@ 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/capacities response: @@ -131,11 +133,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:16 GMT + - Wed, 20 May 2026 09:29:17 GMT Pragma: - no-cache RequestId: - - 16dde09e-6f37-408f-bd24-6fc680e3f3a2 + - fa4debf7-7a3e-4ed9-aa7f-e382331b7bc9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -150,8 +152,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -160,16 +161,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -178,17 +180,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:24 GMT + - Wed, 20 May 2026 09:29:26 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635 + - https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8 Pragma: - no-cache RequestId: - - 7d4d5b5a-640d-4ee9-81d2-ad305c9950b3 + - f5d073d6-7a3e-449d-8f0d-35535b07fa97 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,15 +216,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -231,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2844' + - '2657' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:25 GMT + - Wed, 20 May 2026 09:29:26 GMT Pragma: - no-cache RequestId: - - 57596775-c5c7-4845-b988-7d3a18f0cfb4 + - 5d540192-1eca-49f7-96cf-2f67d5a2d745 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,15 +269,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -282,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2844' + - '2657' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:25 GMT + - Wed, 20 May 2026 09:29:28 GMT Pragma: - no-cache RequestId: - - 597e87ef-ab76-4e9c-86c4-31ad0fc109d5 + - fbe88043-229e-4a24-bfe2-6db3e58e0eb0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,7 +322,7 @@ 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/capacities response: @@ -332,15 +338,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '427' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:31 GMT + - Wed, 20 May 2026 09:29:31 GMT Pragma: - no-cache RequestId: - - d613c79f-822c-4d19-abd6-d0dd262dc535 + - a3bffb9b-45f0-4235-9909-70e8ab1d952d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -355,8 +361,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000002", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -365,16 +370,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "2c29fee0-222c-4751-b351-99b41f590032", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -383,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:40 GMT + - Wed, 20 May 2026 09:29:39 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/4db2ea4d-49a9-4fa5-8522-328ed395bcc1 + - https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032 Pragma: - no-cache RequestId: - - 072d5a9a-4d5f-44ac-9072-baf94354bed4 + - 8b9338aa-aa29-465e-8655-4c4040a0e6d6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -419,16 +425,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2c29fee0-222c-4751-b351-99b41f590032", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -437,15 +446,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2884' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:41 GMT + - Wed, 20 May 2026 09:29:40 GMT Pragma: - no-cache RequestId: - - a36c617c-88d0-411f-8759-b6846b07b348 + - 5336e39b-9667-4e3c-8730-e3d336d91e8f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -471,9 +480,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/92eb7715-46b8-4aa4-ab55-680935cf0635/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders?recursive=True response: body: string: '{"value": []}' @@ -489,11 +498,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:42 GMT + - Wed, 20 May 2026 09:29:40 GMT Pragma: - no-cache RequestId: - - 9590e93c-7ba1-4b28-b841-f8abb3ba2bce + - 1e75cf1a-60e8-465e-bf14-09a659b41b67 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -519,9 +528,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/92eb7715-46b8-4aa4-ab55-680935cf0635/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders?recursive=True response: body: string: '{"value": []}' @@ -537,11 +546,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:43 GMT + - Wed, 20 May 2026 09:29:42 GMT Pragma: - no-cache RequestId: - - afada5e7-c06a-4947-9f66-e55cf4578f86 + - 59552008-f26f-4945-bab5-ca8e123b54e0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -565,17 +574,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/92eb7715-46b8-4aa4-ab55-680935cf0635/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders response: body: - string: '{"id": "75575781-b775-4df2-be7c-eb7a330992fd", "displayName": "fabcli000003", - "workspaceId": "92eb7715-46b8-4aa4-ab55-680935cf0635"}' + string: '{"id": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64", "displayName": "fabcli000003", + "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -584,17 +593,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '133' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:44 GMT + - Wed, 20 May 2026 09:29:43 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635/folders/75575781-b775-4df2-be7c-eb7a330992fd + - https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders/c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64 Pragma: - no-cache RequestId: - - c43694a3-22ff-4093-ab11-70c48b2920d3 + - c2ebd5b9-001b-4989-bcf6-4635419cec74 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -620,16 +629,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2c29fee0-222c-4751-b351-99b41f590032", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -638,15 +650,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2884' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:45 GMT + - Wed, 20 May 2026 09:29:43 GMT Pragma: - no-cache RequestId: - - 58816a32-8ca8-4891-a806-6a82948afbdc + - 580a8f69-f18b-4508-885e-4b370d80f783 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -672,13 +684,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/92eb7715-46b8-4aa4-ab55-680935cf0635/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders?recursive=True response: body: - string: '{"value": [{"id": "75575781-b775-4df2-be7c-eb7a330992fd", "displayName": - "fabcli000003", "workspaceId": "92eb7715-46b8-4aa4-ab55-680935cf0635"}]}' + string: '{"value": [{"id": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64", "displayName": + "fabcli000003", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -687,15 +699,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:45 GMT + - Wed, 20 May 2026 09:29:44 GMT Pragma: - no-cache RequestId: - - b15668cd-bdd5-4acb-8a55-b84509493557 + - a741d876-cedf-49b8-9dc1-5a4bbc402442 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -721,9 +733,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/92eb7715-46b8-4aa4-ab55-680935cf0635/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/items response: body: string: '{"value": []}' @@ -739,11 +751,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:46 GMT + - Wed, 20 May 2026 09:29:45 GMT Pragma: - no-cache RequestId: - - 2e1bdef6-9cef-4d5c-b983-14dcba20a433 + - aad31a91-18e0-4cfd-926a-e97298d61405 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -769,9 +781,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/92eb7715-46b8-4aa4-ab55-680935cf0635/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/items response: body: string: '{"value": []}' @@ -787,11 +799,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:47 GMT + - Wed, 20 May 2026 09:29:45 GMT Pragma: - no-cache RequestId: - - 54afd967-1f9e-4caf-8089-7e652c154048 + - 05ce3bb0-a10a-4cd8-80df-ac0edc1474b2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -806,8 +818,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000004", "type": - "Reflex", "folderId": "75575781-b775-4df2-be7c-eb7a330992fd"}' + body: '{"displayName": "fabcli000004", "type": "Reflex", "folderId": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64"}' headers: Accept: - '*/*' @@ -816,18 +827,18 @@ interactions: Connection: - keep-alive Content-Length: - - '138' + - '105' 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/92eb7715-46b8-4aa4-ab55-680935cf0635/reflexes + uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/reflexes response: body: - string: '{"id": "0a9a9dea-0db8-4d41-b71b-e8ed10a8c91f", "type": "Reflex", "displayName": - "fabcli000004", "workspaceId": "92eb7715-46b8-4aa4-ab55-680935cf0635", - "folderId": "75575781-b775-4df2-be7c-eb7a330992fd"}' + string: '{"id": "a5062f6e-ef9a-4a89-99e6-37fa0c5cdf91", "type": "Reflex", "displayName": + "fabcli000004", "description": "", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8", + "folderId": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -836,17 +847,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '196' + - '184' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:50 GMT + - Wed, 20 May 2026 09:29:50 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 24b519b3-4066-4305-9c06-c6ee45a7a637 + - 8af09a18-4084-4c52-b127-c34efb088485 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -872,16 +883,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2c29fee0-222c-4751-b351-99b41f590032", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -890,15 +904,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2884' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:50 GMT + - Wed, 20 May 2026 09:29:50 GMT Pragma: - no-cache RequestId: - - 588fb2b0-ab22-4564-969c-810b2c74174f + - a09153f0-6e35-4351-938f-02184f3c74e0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -924,13 +938,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/92eb7715-46b8-4aa4-ab55-680935cf0635/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders?recursive=True response: body: - string: '{"value": [{"id": "75575781-b775-4df2-be7c-eb7a330992fd", "displayName": - "fabcli000003", "workspaceId": "92eb7715-46b8-4aa4-ab55-680935cf0635"}]}' + string: '{"value": [{"id": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64", "displayName": + "fabcli000003", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -939,15 +953,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:52 GMT + - Wed, 20 May 2026 09:29:51 GMT Pragma: - no-cache RequestId: - - d1e3545e-28ff-46fd-b776-ff1aa9c0f927 + - d9afc18b-2fbd-4858-b344-dae1f875c978 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -973,16 +987,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2c29fee0-222c-4751-b351-99b41f590032", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -991,15 +1008,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2884' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:52 GMT + - Wed, 20 May 2026 09:29:52 GMT Pragma: - no-cache RequestId: - - 09040ec6-8af9-4206-a34e-6c6ceab4eefa + - 931c84e7-86d3-46c1-af77-1116b1ef2649 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1025,16 +1042,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2c29fee0-222c-4751-b351-99b41f590032", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1043,15 +1063,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2884' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:54 GMT + - Wed, 20 May 2026 09:29:52 GMT Pragma: - no-cache RequestId: - - eaf00e3a-d628-4dd5-bfd0-9da7207dfac3 + - 4f513063-da1b-4a3b-8091-b0bde0db129b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1077,9 +1097,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/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/folders?recursive=True response: body: string: '{"value": []}' @@ -1095,11 +1115,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:54 GMT + - Wed, 20 May 2026 09:29:54 GMT Pragma: - no-cache RequestId: - - 814e021b-1527-45b2-af63-ac6673a4b3fa + - ecb71d82-9b8b-4a23-bbb7-f572b5923255 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1125,9 +1145,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/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/folders?recursive=True response: body: string: '{"value": []}' @@ -1143,11 +1163,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:55 GMT + - Wed, 20 May 2026 09:29:54 GMT Pragma: - no-cache RequestId: - - dd5243f5-f879-41bd-a12d-0d31495b859d + - cb62c5b9-4716-4aaf-842f-c72af7835c6f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1171,17 +1191,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/folders response: body: - string: '{"id": "9e62aa3f-368e-4b58-aed4-f8d0632de25b", "displayName": "fabcli000003", - "workspaceId": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1"}' + string: '{"id": "b6144bfa-24f7-49b2-b848-0c2bf45158e4", "displayName": "fabcli000003", + "workspaceId": "2c29fee0-222c-4751-b351-99b41f590032"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -1190,17 +1210,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '133' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:55 GMT + - Wed, 20 May 2026 09:29:55 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/folders/9e62aa3f-368e-4b58-aed4-f8d0632de25b + - https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/folders/b6144bfa-24f7-49b2-b848-0c2bf45158e4 Pragma: - no-cache RequestId: - - c5b16148-19cf-41d2-bf79-7f1f5b631326 + - 1f042bc9-d30f-4823-a55b-379afa523e20 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1226,14 +1246,14 @@ 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/92eb7715-46b8-4aa4-ab55-680935cf0635/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/items response: body: - string: '{"value": [{"id": "0a9a9dea-0db8-4d41-b71b-e8ed10a8c91f", "type": "Reflex", - "displayName": "fabcli000004", "workspaceId": - "92eb7715-46b8-4aa4-ab55-680935cf0635", "folderId": "75575781-b775-4df2-be7c-eb7a330992fd"}]}' + string: '{"value": [{"id": "a5062f6e-ef9a-4a89-99e6-37fa0c5cdf91", "type": "Reflex", + "displayName": "fabcli000004", "description": "", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8", + "folderId": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1242,15 +1262,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '207' + - '195' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:56 GMT + - Wed, 20 May 2026 09:29:56 GMT Pragma: - no-cache RequestId: - - 156dec40-e29a-44a6-89b2-a1aa3eb07cac + - 8724b609-9448-49d9-8eea-1b0e5ff6f7b6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1276,13 +1296,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/92eb7715-46b8-4aa4-ab55-680935cf0635/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders?recursive=True response: body: - string: '{"value": [{"id": "75575781-b775-4df2-be7c-eb7a330992fd", "displayName": - "fabcli000003", "workspaceId": "92eb7715-46b8-4aa4-ab55-680935cf0635"}]}' + string: '{"value": [{"id": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64", "displayName": + "fabcli000003", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1291,15 +1311,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:28:57 GMT + - Wed, 20 May 2026 09:29:57 GMT Pragma: - no-cache RequestId: - - 41044faa-eff4-4406-a0c1-be51f2eb15e0 + - 0f4093f1-279c-4452-b356-e9acc3e4a094 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1325,53 +1345,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/92eb7715-46b8-4aa4-ab55-680935cf0635/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders?recursive=True response: body: - string: '{"requestId": "a456edbe-0ba7-4b08-a638-b71c52f4c366", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 8:28:59 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 08:28:58 GMT - RequestId: - - a456edbe-0ba7-4b08-a638-b71c52f4c366 - Retry-After: - - '1' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/92eb7715-46b8-4aa4-ab55-680935cf0635/folders?recursive=True - response: - body: - string: '{"value": [{"id": "75575781-b775-4df2-be7c-eb7a330992fd", "displayName": - "fabcli000003", "workspaceId": "92eb7715-46b8-4aa4-ab55-680935cf0635"}]}' + string: '{"value": [{"id": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64", "displayName": + "fabcli000003", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1380,15 +1360,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:29:00 GMT + - Wed, 20 May 2026 09:29:57 GMT Pragma: - no-cache RequestId: - - aa628dfc-2284-4acf-a530-bf702b5c5a78 + - 3cd50618-1062-4935-92e3-f5d7cd617bbe Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1414,14 +1394,14 @@ 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/92eb7715-46b8-4aa4-ab55-680935cf0635/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/items response: body: - string: '{"value": [{"id": "0a9a9dea-0db8-4d41-b71b-e8ed10a8c91f", "type": "Reflex", - "displayName": "fabcli000004", "workspaceId": - "92eb7715-46b8-4aa4-ab55-680935cf0635", "folderId": "75575781-b775-4df2-be7c-eb7a330992fd"}]}' + string: '{"value": [{"id": "a5062f6e-ef9a-4a89-99e6-37fa0c5cdf91", "type": "Reflex", + "displayName": "fabcli000004", "description": "", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8", + "folderId": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1430,15 +1410,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '207' + - '195' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:29:01 GMT + - Wed, 20 May 2026 09:29:59 GMT Pragma: - no-cache RequestId: - - da980a37-c17e-4303-bf4d-a0f233c9984e + - d99c8f11-7749-461c-9b62-e44a3325568e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1464,13 +1444,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/92eb7715-46b8-4aa4-ab55-680935cf0635/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders?recursive=True response: body: - string: '{"value": [{"id": "75575781-b775-4df2-be7c-eb7a330992fd", "displayName": - "fabcli000003", "workspaceId": "92eb7715-46b8-4aa4-ab55-680935cf0635"}]}' + string: '{"value": [{"id": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64", "displayName": + "fabcli000003", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1479,15 +1459,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:29:02 GMT + - Wed, 20 May 2026 09:29:59 GMT Pragma: - no-cache RequestId: - - 0c4f8301-352a-4111-80c9-b4f0570643d6 + - f27968fd-e864-4c5c-ba2a-fc8a9703bf5f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1513,13 +1493,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/92eb7715-46b8-4aa4-ab55-680935cf0635/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders?recursive=True response: body: - string: '{"value": [{"id": "75575781-b775-4df2-be7c-eb7a330992fd", "displayName": - "fabcli000003", "workspaceId": "92eb7715-46b8-4aa4-ab55-680935cf0635"}]}' + string: '{"value": [{"id": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64", "displayName": + "fabcli000003", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1528,15 +1508,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:29:02 GMT + - Wed, 20 May 2026 09:30:01 GMT Pragma: - no-cache RequestId: - - 696847b6-d5ce-4d57-be9e-52810e2df68d + - ebe29216-d050-4ed6-8831-494b7b103f0b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1562,16 +1542,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2c29fee0-222c-4751-b351-99b41f590032", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1580,15 +1563,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2884' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:29:03 GMT + - Wed, 20 May 2026 09:30:02 GMT Pragma: - no-cache RequestId: - - 21c05d70-f46b-46ec-a861-274b4ee302b0 + - 9abad60f-45a7-4b10-8a2c-68e15bede498 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1614,13 +1597,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/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/folders?recursive=True response: body: - string: '{"value": [{"id": "9e62aa3f-368e-4b58-aed4-f8d0632de25b", "displayName": - "fabcli000003", "workspaceId": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1"}]}' + string: '{"value": [{"id": "b6144bfa-24f7-49b2-b848-0c2bf45158e4", "displayName": + "fabcli000003", "workspaceId": "2c29fee0-222c-4751-b351-99b41f590032"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1629,15 +1612,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:29:04 GMT + - Wed, 20 May 2026 09:30:02 GMT Pragma: - no-cache RequestId: - - c8cd0786-b5ee-4fca-a3bc-0778aef6d15f + - 3b1df33e-50e3-456c-a0eb-0ac92a932283 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1663,9 +1646,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/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/items response: body: string: '{"value": []}' @@ -1681,11 +1664,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:29:05 GMT + - Wed, 20 May 2026 09:30:03 GMT Pragma: - no-cache RequestId: - - 9a11a921-3701-4b71-bfcb-83bcf2476719 + - bcbee926-0279-4ced-a6b3-8f91dffcb4ca Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1711,9 +1694,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/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/items response: body: string: '{"value": []}' @@ -1729,11 +1712,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:29:06 GMT + - Wed, 20 May 2026 09:30:04 GMT Pragma: - no-cache RequestId: - - 0d08b387-5742-4c32-93fe-63efe3251e1d + - 18080842-8c7e-44bb-bb54-fefadecc263d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1759,9 +1742,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/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/items response: body: string: '{"value": []}' @@ -1777,11 +1760,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:29:06 GMT + - Wed, 20 May 2026 09:30:04 GMT Pragma: - no-cache RequestId: - - 4d091a0a-319b-4431-99e3-e991574fb863 + - ee6e8c2a-b961-4de0-af69-679133746dd4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1807,14 +1790,14 @@ 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/92eb7715-46b8-4aa4-ab55-680935cf0635/items/0a9a9dea-0db8-4d41-b71b-e8ed10a8c91f + uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/items/a5062f6e-ef9a-4a89-99e6-37fa0c5cdf91 response: body: - string: '{"id": "0a9a9dea-0db8-4d41-b71b-e8ed10a8c91f", "type": "Reflex", "displayName": - "fabcli000004", "workspaceId": "92eb7715-46b8-4aa4-ab55-680935cf0635", - "folderId": "75575781-b775-4df2-be7c-eb7a330992fd"}' + string: '{"id": "a5062f6e-ef9a-4a89-99e6-37fa0c5cdf91", "type": "Reflex", "displayName": + "fabcli000004", "description": "", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8", + "folderId": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1823,17 +1806,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '196' + - '184' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:29:07 GMT + - Wed, 20 May 2026 09:30:06 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 68fb83dd-bc23-4546-ab1f-861ce5ae02a4 + - 7319e14a-4135-4538-ab76-5641b908f1c0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1861,13 +1844,13 @@ interactions: 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/92eb7715-46b8-4aa4-ab55-680935cf0635/items/0a9a9dea-0db8-4d41-b71b-e8ed10a8c91f/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/items/a5062f6e-ef9a-4a89-99e6-37fa0c5cdf91/getDefinition response: body: string: '{"definition": {"parts": [{"path": "ReflexEntities.json", "payload": - "W10=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlJlZmxleCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "W10=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlJlZmxleCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -1877,15 +1860,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '425' + - '394' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:29:10 GMT + - Wed, 20 May 2026 09:30:07 GMT Pragma: - no-cache RequestId: - - d99a8752-598d-4d1d-9796-cced700414fe + - a5b5dd1e-14ec-4334-99c3-09bc03b86033 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1900,10 +1883,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "Reflex", "displayName": "fabcli000004", - "definition": {"parts": [{"path": "ReflexEntities.json", "payload": "W10=", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlJlZmxleCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", - "payloadType": "InlineBase64"}]}, "folderId": "9e62aa3f-368e-4b58-aed4-f8d0632de25b"}' + body: '{"type": "Reflex", "displayName": "fabcli000004", "definition": {"parts": + [{"path": "ReflexEntities.json", "payload": "W10=", "payloadType": "InlineBase64"}, + {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlJlZmxleCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "payloadType": "InlineBase64"}]}, "folderId": "b6144bfa-24f7-49b2-b848-0c2bf45158e4"}' headers: Accept: - '*/*' @@ -1912,18 +1895,18 @@ interactions: Connection: - keep-alive Content-Length: - - '769' + - '684' 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/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/items response: body: - string: '{"id": "f6685eec-5ba4-4abb-888e-ff2db21c87ea", "type": "Reflex", "displayName": - "fabcli000004", "workspaceId": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", - "folderId": "9e62aa3f-368e-4b58-aed4-f8d0632de25b"}' + string: '{"id": "033734c6-8b78-44a4-ade1-f27cef91fd71", "type": "Reflex", "displayName": + "fabcli000004", "description": "", "workspaceId": "2c29fee0-222c-4751-b351-99b41f590032", + "folderId": "b6144bfa-24f7-49b2-b848-0c2bf45158e4"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1932,17 +1915,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '197' + - '186' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:29:15 GMT + - Wed, 20 May 2026 09:30:11 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 509df0d4-5f76-4308-a84b-8a4105069ca5 + - 678d8cd8-c7dc-437a-b7e7-df52477a8ffd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1968,14 +1951,14 @@ 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/92eb7715-46b8-4aa4-ab55-680935cf0635/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/items response: body: - string: '{"value": [{"id": "0a9a9dea-0db8-4d41-b71b-e8ed10a8c91f", "type": "Reflex", - "displayName": "fabcli000004", "workspaceId": - "92eb7715-46b8-4aa4-ab55-680935cf0635", "folderId": "75575781-b775-4df2-be7c-eb7a330992fd"}]}' + string: '{"value": [{"id": "a5062f6e-ef9a-4a89-99e6-37fa0c5cdf91", "type": "Reflex", + "displayName": "fabcli000004", "description": "", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8", + "folderId": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1984,15 +1967,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '207' + - '195' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:29:16 GMT + - Wed, 20 May 2026 09:30:12 GMT Pragma: - no-cache RequestId: - - 45991398-5c07-49b5-88ed-e0ca906812f7 + - 99f99f2a-4e23-4e2b-b047-55d0206de068 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2018,13 +2001,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/92eb7715-46b8-4aa4-ab55-680935cf0635/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders?recursive=True response: body: - string: '{"value": [{"id": "75575781-b775-4df2-be7c-eb7a330992fd", "displayName": - "fabcli000003", "workspaceId": "92eb7715-46b8-4aa4-ab55-680935cf0635"}]}' + string: '{"value": [{"id": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64", "displayName": + "fabcli000003", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2033,15 +2016,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:29:17 GMT + - Wed, 20 May 2026 09:30:14 GMT Pragma: - no-cache RequestId: - - 84e58e58-e25d-4252-87be-1a85aaeee28c + - 7f617766-00fc-4810-876d-f12382eefc7c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2067,13 +2050,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/92eb7715-46b8-4aa4-ab55-680935cf0635/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders?recursive=True response: body: - string: '{"value": [{"id": "75575781-b775-4df2-be7c-eb7a330992fd", "displayName": - "fabcli000003", "workspaceId": "92eb7715-46b8-4aa4-ab55-680935cf0635"}]}' + string: '{"value": [{"id": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64", "displayName": + "fabcli000003", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2082,15 +2065,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:29:17 GMT + - Wed, 20 May 2026 09:30:14 GMT Pragma: - no-cache RequestId: - - 5b7ab91d-6efd-454a-9472-7a1cc2ea9c9d + - 88a32803-be20-44cd-99f0-2e4afb91af11 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2116,16 +2099,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2c29fee0-222c-4751-b351-99b41f590032", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2134,15 +2120,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2884' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:29:19 GMT + - Wed, 20 May 2026 09:30:15 GMT Pragma: - no-cache RequestId: - - c9b3015f-0194-43cb-b73a-a148764239e7 + - 79c18a29-5092-4912-a5e5-1640544bb933 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2168,14 +2154,14 @@ 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/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/items response: body: - string: '{"value": [{"id": "f6685eec-5ba4-4abb-888e-ff2db21c87ea", "type": "Reflex", - "displayName": "fabcli000004", "workspaceId": - "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "folderId": "9e62aa3f-368e-4b58-aed4-f8d0632de25b"}]}' + string: '{"value": [{"id": "033734c6-8b78-44a4-ade1-f27cef91fd71", "type": "Reflex", + "displayName": "fabcli000004", "description": "", "workspaceId": "2c29fee0-222c-4751-b351-99b41f590032", + "folderId": "b6144bfa-24f7-49b2-b848-0c2bf45158e4"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2184,15 +2170,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '208' + - '198' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:29:19 GMT + - Wed, 20 May 2026 09:30:15 GMT Pragma: - no-cache RequestId: - - a0d14cd0-90db-4358-99ca-aec8ca1ef955 + - 1cf1e76f-eacf-4227-91db-0ece7a291ced Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2218,13 +2204,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/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/folders?recursive=True response: body: - string: '{"value": [{"id": "9e62aa3f-368e-4b58-aed4-f8d0632de25b", "displayName": - "fabcli000003", "workspaceId": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1"}]}' + string: '{"value": [{"id": "b6144bfa-24f7-49b2-b848-0c2bf45158e4", "displayName": + "fabcli000003", "workspaceId": "2c29fee0-222c-4751-b351-99b41f590032"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2233,15 +2219,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:29:20 GMT + - Wed, 20 May 2026 09:30:16 GMT Pragma: - no-cache RequestId: - - 0972b645-b4af-4324-8849-347260507559 + - 44567097-7a5c-49aa-a2ad-56d2275f076e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2267,13 +2253,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/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/folders?recursive=True response: body: - string: '{"value": [{"id": "9e62aa3f-368e-4b58-aed4-f8d0632de25b", "displayName": - "fabcli000003", "workspaceId": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1"}]}' + string: '{"value": [{"id": "b6144bfa-24f7-49b2-b848-0c2bf45158e4", "displayName": + "fabcli000003", "workspaceId": "2c29fee0-222c-4751-b351-99b41f590032"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2282,15 +2268,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:29:21 GMT + - Wed, 20 May 2026 09:30:18 GMT Pragma: - no-cache RequestId: - - 8f5f0ac4-56d8-4722-b0da-1cd392b019b5 + - 9fe52e70-e442-4a6e-80a1-b4e3d6fe6504 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2316,16 +2302,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2c29fee0-222c-4751-b351-99b41f590032", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2334,15 +2323,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2884' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:29:21 GMT + - Wed, 20 May 2026 09:30:18 GMT Pragma: - no-cache RequestId: - - 48e01d12-ccfd-4b54-ad03-d9d1af762737 + - 3a78f56d-67a8-4bea-ac1f-4478873a0358 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2368,13 +2357,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/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/folders?recursive=True response: body: - string: '{"value": [{"id": "9e62aa3f-368e-4b58-aed4-f8d0632de25b", "displayName": - "fabcli000003", "workspaceId": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1"}]}' + string: '{"value": [{"id": "b6144bfa-24f7-49b2-b848-0c2bf45158e4", "displayName": + "fabcli000003", "workspaceId": "2c29fee0-222c-4751-b351-99b41f590032"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2383,15 +2372,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:29:22 GMT + - Wed, 20 May 2026 09:30:18 GMT Pragma: - no-cache RequestId: - - 3455a0d1-f293-4ab6-b223-6edc7cee905f + - 011ce3b1-cffb-4ec4-8964-dcd55b29014f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2417,14 +2406,14 @@ 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/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/items response: body: - string: '{"value": [{"id": "f6685eec-5ba4-4abb-888e-ff2db21c87ea", "type": "Reflex", - "displayName": "fabcli000004", "workspaceId": - "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "folderId": "9e62aa3f-368e-4b58-aed4-f8d0632de25b"}]}' + string: '{"value": [{"id": "033734c6-8b78-44a4-ade1-f27cef91fd71", "type": "Reflex", + "displayName": "fabcli000004", "description": "", "workspaceId": "2c29fee0-222c-4751-b351-99b41f590032", + "folderId": "b6144bfa-24f7-49b2-b848-0c2bf45158e4"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2433,15 +2422,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '208' + - '198' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:29:23 GMT + - Wed, 20 May 2026 09:30:19 GMT Pragma: - no-cache RequestId: - - 6c0446ec-a37d-4c4c-8de4-93469a1c5a68 + - a8105c6d-d400-4c55-b3a5-f1fe7b85a860 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2467,13 +2456,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/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/folders?recursive=True response: body: - string: '{"value": [{"id": "9e62aa3f-368e-4b58-aed4-f8d0632de25b", "displayName": - "fabcli000003", "workspaceId": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1"}]}' + string: '{"value": [{"id": "b6144bfa-24f7-49b2-b848-0c2bf45158e4", "displayName": + "fabcli000003", "workspaceId": "2c29fee0-222c-4751-b351-99b41f590032"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2482,15 +2471,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:29:23 GMT + - Wed, 20 May 2026 09:30:19 GMT Pragma: - no-cache RequestId: - - 36f96f93-b8cd-4a83-8651-40830726089b + - da538f12-acc5-4350-9660-13be36d37cb9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2516,53 +2505,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/folders?recursive=True - response: - body: - string: '{"requestId": "c67f7bfe-e293-4d3e-a7a9-be3796ebdbd1", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 8:30:00 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 08:29:24 GMT - RequestId: - - c67f7bfe-e293-4d3e-a7a9-be3796ebdbd1 - Retry-After: - - '36' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/folders?recursive=True response: body: - string: '{"value": [{"id": "9e62aa3f-368e-4b58-aed4-f8d0632de25b", "displayName": - "fabcli000003", "workspaceId": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1"}]}' + string: '{"value": [{"id": "b6144bfa-24f7-49b2-b848-0c2bf45158e4", "displayName": + "fabcli000003", "workspaceId": "2c29fee0-222c-4751-b351-99b41f590032"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2571,15 +2520,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:03 GMT + - Wed, 20 May 2026 09:30:20 GMT Pragma: - no-cache RequestId: - - f80f2d82-f703-47eb-80e1-d27411509ae6 + - 83c9dd13-b7ac-4525-96ea-13f2ee1df692 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2605,16 +2554,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2c29fee0-222c-4751-b351-99b41f590032", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2623,15 +2575,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2884' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:04 GMT + - Wed, 20 May 2026 09:30:21 GMT Pragma: - no-cache RequestId: - - 9fd49b38-c0f7-4722-a8a1-02cd117cd80e + - f06bead7-4ca2-4df4-8d40-a2ef1dc255be Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2657,13 +2609,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/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/folders?recursive=True response: body: - string: '{"value": [{"id": "9e62aa3f-368e-4b58-aed4-f8d0632de25b", "displayName": - "fabcli000003", "workspaceId": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1"}]}' + string: '{"value": [{"id": "b6144bfa-24f7-49b2-b848-0c2bf45158e4", "displayName": + "fabcli000003", "workspaceId": "2c29fee0-222c-4751-b351-99b41f590032"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2672,15 +2624,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:04 GMT + - Wed, 20 May 2026 09:30:21 GMT Pragma: - no-cache RequestId: - - d608abdd-f7f7-48e4-9b54-3a3a6ee21130 + - 658ecab4-6d46-4ca9-926e-abe4ea2531cd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2706,14 +2658,14 @@ 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/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/items response: body: - string: '{"value": [{"id": "f6685eec-5ba4-4abb-888e-ff2db21c87ea", "type": "Reflex", - "displayName": "fabcli000004", "workspaceId": - "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "folderId": "9e62aa3f-368e-4b58-aed4-f8d0632de25b"}]}' + string: '{"value": [{"id": "033734c6-8b78-44a4-ade1-f27cef91fd71", "type": "Reflex", + "displayName": "fabcli000004", "description": "", "workspaceId": "2c29fee0-222c-4751-b351-99b41f590032", + "folderId": "b6144bfa-24f7-49b2-b848-0c2bf45158e4"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2722,15 +2674,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '208' + - '198' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:06 GMT + - Wed, 20 May 2026 09:30:22 GMT Pragma: - no-cache RequestId: - - 6296eb86-5a4c-4947-8f77-ee8a3bd42370 + - ed73b8cb-665e-49f9-84e9-a69a69c41ee3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2756,13 +2708,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/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/folders?recursive=True response: body: - string: '{"value": [{"id": "9e62aa3f-368e-4b58-aed4-f8d0632de25b", "displayName": - "fabcli000003", "workspaceId": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1"}]}' + string: '{"value": [{"id": "b6144bfa-24f7-49b2-b848-0c2bf45158e4", "displayName": + "fabcli000003", "workspaceId": "2c29fee0-222c-4751-b351-99b41f590032"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2771,15 +2723,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:06 GMT + - Wed, 20 May 2026 09:30:22 GMT Pragma: - no-cache RequestId: - - 9c6e63e6-1592-4582-897a-42cec3634b12 + - 4ce2cb9c-f717-4151-bb99-398512cae293 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2807,9 +2759,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/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/items/f6685eec-5ba4-4abb-888e-ff2db21c87ea + uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/items/033734c6-8b78-44a4-ade1-f27cef91fd71 response: body: string: '' @@ -2825,11 +2777,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:30:07 GMT + - Wed, 20 May 2026 09:30:23 GMT Pragma: - no-cache RequestId: - - 78f3fb81-a706-482f-9531-b83f8a9e2b2f + - fa523516-f6f6-47f1-9ee7-d347ccc20163 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2855,16 +2807,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2c29fee0-222c-4751-b351-99b41f590032", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2873,15 +2828,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2884' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:08 GMT + - Wed, 20 May 2026 09:30:23 GMT Pragma: - no-cache RequestId: - - d2a8e877-9c07-45bd-b609-d1fcefd2d689 + - 0f9488d3-3950-4c68-a758-ff61873b53ff Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2907,13 +2862,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/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/folders?recursive=True response: body: - string: '{"value": [{"id": "9e62aa3f-368e-4b58-aed4-f8d0632de25b", "displayName": - "fabcli000003", "workspaceId": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1"}]}' + string: '{"value": [{"id": "b6144bfa-24f7-49b2-b848-0c2bf45158e4", "displayName": + "fabcli000003", "workspaceId": "2c29fee0-222c-4751-b351-99b41f590032"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2922,15 +2877,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:09 GMT + - Wed, 20 May 2026 09:30:24 GMT Pragma: - no-cache RequestId: - - facf8463-3c9f-4def-8d15-d31c967c65ca + - ebaba67f-8707-4e50-b407-c24f4a507c17 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2958,9 +2913,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/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/folders/9e62aa3f-368e-4b58-aed4-f8d0632de25b + uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/folders/b6144bfa-24f7-49b2-b848-0c2bf45158e4 response: body: string: '' @@ -2976,11 +2931,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:30:10 GMT + - Wed, 20 May 2026 09:30:25 GMT Pragma: - no-cache RequestId: - - cd697629-5ae3-4981-8287-384092e65c5c + - 2ac60d45-94c7-4277-bd48-23352cd1848d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3006,16 +2961,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2c29fee0-222c-4751-b351-99b41f590032", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3024,15 +2982,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2884' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:11 GMT + - Wed, 20 May 2026 09:30:25 GMT Pragma: - no-cache RequestId: - - 6fae67b6-f3b6-40d6-ba5f-d46dd6fec119 + - f4cc052b-fbce-4701-8003-9ef92d3e0b5b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3058,13 +3016,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/92eb7715-46b8-4aa4-ab55-680935cf0635/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders?recursive=True response: body: - string: '{"value": [{"id": "75575781-b775-4df2-be7c-eb7a330992fd", "displayName": - "fabcli000003", "workspaceId": "92eb7715-46b8-4aa4-ab55-680935cf0635"}]}' + string: '{"value": [{"id": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64", "displayName": + "fabcli000003", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3073,15 +3031,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:11 GMT + - Wed, 20 May 2026 09:30:26 GMT Pragma: - no-cache RequestId: - - 088d5091-77c1-4078-a5e8-92e3a2c853c8 + - 1763c0f8-f628-425b-85f9-1338204a254f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3107,14 +3065,14 @@ 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/92eb7715-46b8-4aa4-ab55-680935cf0635/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/items response: body: - string: '{"value": [{"id": "0a9a9dea-0db8-4d41-b71b-e8ed10a8c91f", "type": "Reflex", - "displayName": "fabcli000004", "workspaceId": - "92eb7715-46b8-4aa4-ab55-680935cf0635", "folderId": "75575781-b775-4df2-be7c-eb7a330992fd"}]}' + string: '{"value": [{"id": "a5062f6e-ef9a-4a89-99e6-37fa0c5cdf91", "type": "Reflex", + "displayName": "fabcli000004", "description": "", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8", + "folderId": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3123,15 +3081,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '207' + - '195' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:12 GMT + - Wed, 20 May 2026 09:30:27 GMT Pragma: - no-cache RequestId: - - 622c837f-8988-4f4f-a0f4-228e52eed519 + - 8e264f12-ca12-471e-97ff-7a58ea1f9f3a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3157,13 +3115,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/92eb7715-46b8-4aa4-ab55-680935cf0635/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders?recursive=True response: body: - string: '{"value": [{"id": "75575781-b775-4df2-be7c-eb7a330992fd", "displayName": - "fabcli000003", "workspaceId": "92eb7715-46b8-4aa4-ab55-680935cf0635"}]}' + string: '{"value": [{"id": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64", "displayName": + "fabcli000003", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3172,15 +3130,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:13 GMT + - Wed, 20 May 2026 09:30:27 GMT Pragma: - no-cache RequestId: - - 1f981592-e86b-4b99-a9ba-7c1077edfa4a + - c5a2f323-4665-4fa7-9194-8d124776ceac Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3208,9 +3166,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/92eb7715-46b8-4aa4-ab55-680935cf0635/items/0a9a9dea-0db8-4d41-b71b-e8ed10a8c91f + uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/items/a5062f6e-ef9a-4a89-99e6-37fa0c5cdf91 response: body: string: '' @@ -3226,11 +3184,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:30:14 GMT + - Wed, 20 May 2026 09:30:28 GMT Pragma: - no-cache RequestId: - - 4e2d9664-5c4f-4c4e-918e-631df7b80acf + - ed316716-cbc2-4029-be1b-4e457744e9be Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3256,16 +3214,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2c29fee0-222c-4751-b351-99b41f590032", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3274,15 +3235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2884' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:14 GMT + - Wed, 20 May 2026 09:30:29 GMT Pragma: - no-cache RequestId: - - 912208de-1a08-41ae-ac4e-4c4e5cf1b8c8 + - a7358ba5-98c8-4c6a-a241-13eee6db026a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3308,13 +3269,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/92eb7715-46b8-4aa4-ab55-680935cf0635/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders?recursive=True response: body: - string: '{"value": [{"id": "75575781-b775-4df2-be7c-eb7a330992fd", "displayName": - "fabcli000003", "workspaceId": "92eb7715-46b8-4aa4-ab55-680935cf0635"}]}' + string: '{"value": [{"id": "c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64", "displayName": + "fabcli000003", "workspaceId": "9d333cee-7d75-4024-9eee-dea08bf151e8"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3323,15 +3284,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:15 GMT + - Wed, 20 May 2026 09:30:29 GMT Pragma: - no-cache RequestId: - - ae1ee2f8-7768-44df-af97-236080a7c381 + - 1daf4bd0-4ea0-4805-a4d3-95584e0f5ea9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3359,9 +3320,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/92eb7715-46b8-4aa4-ab55-680935cf0635/folders/75575781-b775-4df2-be7c-eb7a330992fd + uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/folders/c8627c00-7a3e-45ff-a0ce-5e5ca33a9a64 response: body: string: '' @@ -3377,11 +3338,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:30:16 GMT + - Wed, 20 May 2026 09:30:30 GMT Pragma: - no-cache RequestId: - - 889b4323-1af7-4f73-bb4c-40ef93bd0a5d + - 441e141b-1c1f-4674-a41b-3e0d830fd033 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3407,16 +3368,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "92eb7715-46b8-4aa4-ab55-680935cf0635", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9d333cee-7d75-4024-9eee-dea08bf151e8", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2c29fee0-222c-4751-b351-99b41f590032", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3425,15 +3389,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2884' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:17 GMT + - Wed, 20 May 2026 09:30:30 GMT Pragma: - no-cache RequestId: - - 52099bfe-9ff7-481e-b106-0743c98cb52a + - 7fb843a3-7031-4374-9f6e-92a340d1a7a4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3459,9 +3423,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/92eb7715-46b8-4aa4-ab55-680935cf0635/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8/items response: body: string: '{"value": []}' @@ -3477,11 +3441,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:17 GMT + - Wed, 20 May 2026 09:30:31 GMT Pragma: - no-cache RequestId: - - f429b6ec-85b4-4c9a-a5fe-4e53f887b4c0 + - 19fa7d5f-61f4-4dc8-a091-3750c5ae4097 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3509,9 +3473,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/92eb7715-46b8-4aa4-ab55-680935cf0635 + uri: https://api.fabric.microsoft.com/v1/workspaces/9d333cee-7d75-4024-9eee-dea08bf151e8 response: body: string: '' @@ -3527,11 +3491,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:30:19 GMT + - Wed, 20 May 2026 09:30:31 GMT Pragma: - no-cache RequestId: - - e617413b-20a4-4a94-9953-72f5f111dc07 + - d71e13cf-3053-4287-82bd-34ab9b357ecc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3557,15 +3521,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "4db2ea4d-49a9-4fa5-8522-328ed395bcc1", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2c29fee0-222c-4751-b351-99b41f590032", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3574,15 +3540,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2842' + - '2657' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:19 GMT + - Wed, 20 May 2026 09:30:32 GMT Pragma: - no-cache RequestId: - - 7f986954-9ac8-4e3b-9e92-b602b2c87046 + - 4b54349d-4111-43cd-86dd-c92304747c62 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3608,9 +3574,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/4db2ea4d-49a9-4fa5-8522-328ed395bcc1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032/items response: body: string: '{"value": []}' @@ -3626,11 +3592,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:20 GMT + - Wed, 20 May 2026 09:30:33 GMT Pragma: - no-cache RequestId: - - a887d3da-062c-4a82-9e30-aaeffaad0185 + - 6a3befef-9f14-4ff2-bc9f-d54a9d068f17 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3658,9 +3624,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/4db2ea4d-49a9-4fa5-8522-328ed395bcc1 + uri: https://api.fabric.microsoft.com/v1/workspaces/2c29fee0-222c-4751-b351-99b41f590032 response: body: string: '' @@ -3676,11 +3642,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:30:21 GMT + - Wed, 20 May 2026 09:30:34 GMT Pragma: - no-cache RequestId: - - 90c86ef5-addc-4ed8-9b46-85bbbae310fd + - e4cdaf07-fa11-4e58-9ce8-89e5dc918c4b 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[SparkJobDefinition].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[SparkJobDefinition].yaml index 797efb939..3a02ac599 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[SparkJobDefinition].yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[SparkJobDefinition].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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:22 GMT + - Wed, 20 May 2026 09:30:34 GMT Pragma: - no-cache RequestId: - - 8dd48fad-07db-4d64-99b2-21edfb60def3 + - ce720d65-d3ce-425d-a7fc-f1b1895f3b42 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:23 GMT + - Wed, 20 May 2026 09:30:35 GMT Pragma: - no-cache RequestId: - - 7275f64e-58cf-4cdb-bbe2-4a1eadb3bbdb + - 41a299d9-59d8-47fa-bddd-3400a7df2e58 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,7 +113,7 @@ 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/capacities response: @@ -127,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:28 GMT + - Wed, 20 May 2026 09:30:40 GMT Pragma: - no-cache RequestId: - - 6a8e51cc-7c97-45b9-90a2-9ae8032667c9 + - 3e680607-5822-46b3-8ae6-b4fdd16b63d2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -150,8 +152,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -160,16 +161,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -178,17 +180,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '154' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:37 GMT + - Wed, 20 May 2026 09:30:46 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc + - https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc Pragma: - no-cache RequestId: - - b6c0f5ec-3e96-4d59-b03f-3c92f5394774 + - 86412443-3413-42f7-9904-83cf96f480c4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,15 +216,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -231,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2841' + - '2659' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:38 GMT + - Wed, 20 May 2026 09:30:48 GMT Pragma: - no-cache RequestId: - - 22472458-39d0-45a7-890f-fc8adab27d6e + - 344dccaa-8545-46c2-b061-3c82de07c480 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,15 +269,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -282,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2841' + - '2659' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:39 GMT + - Wed, 20 May 2026 09:30:48 GMT Pragma: - no-cache RequestId: - - b4ddec1e-044f-466b-a671-77e57abc7a95 + - 77295a8a-31ed-4bb6-9227-87d56454ed12 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,7 +322,7 @@ 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/capacities response: @@ -332,15 +338,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:44 GMT + - Wed, 20 May 2026 09:30:52 GMT Pragma: - no-cache RequestId: - - b6b11c84-acae-4ece-91cd-fe17da052c1b + - 2597fc8a-e06e-4e0d-a30b-a24617c6b33d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -355,8 +361,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000002", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -365,16 +370,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -383,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:52 GMT + - Wed, 20 May 2026 09:30:58 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/40eb0da3-18e1-4ecb-ba83-349893d9a3ed + - https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a Pragma: - no-cache RequestId: - - 35d1ef55-7c3c-4017-9092-654264878790 + - 9a058842-7ae0-46ff-b4a2-024126491a7d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -419,16 +425,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -437,15 +446,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:52 GMT + - Wed, 20 May 2026 09:30:59 GMT Pragma: - no-cache RequestId: - - eb6cfbfc-4186-414f-ab22-dbcfd80d065b + - 36ca344a-ea61-4637-b9b7-1b7e109bde7f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -471,9 +480,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/747d69b2-79bb-48c9-a284-3f9a777297fc/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders?recursive=True response: body: string: '{"value": []}' @@ -489,11 +498,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:53 GMT + - Wed, 20 May 2026 09:30:59 GMT Pragma: - no-cache RequestId: - - 29c80bd6-8341-4c3a-b688-7cb590e9443d + - 333d408e-584d-4bb5-a95e-39170e12b57f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -519,9 +528,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/747d69b2-79bb-48c9-a284-3f9a777297fc/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders?recursive=True response: body: string: '{"value": []}' @@ -537,11 +546,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:54 GMT + - Wed, 20 May 2026 09:31:00 GMT Pragma: - no-cache RequestId: - - 62f8921a-7870-4eb9-bf7d-d4fa29bd6f28 + - 5b494d1f-a748-421a-8073-8a0585bded0c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -565,17 +574,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/747d69b2-79bb-48c9-a284-3f9a777297fc/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders response: body: - string: '{"id": "6f48997a-cb6a-4c8b-b653-9a89060553dc", "displayName": "fabcli000003", - "workspaceId": "747d69b2-79bb-48c9-a284-3f9a777297fc"}' + string: '{"id": "6477e14d-f9f0-4180-a26d-2d72cbf3b034", "displayName": "fabcli000003", + "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -588,13 +597,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:54 GMT + - Wed, 20 May 2026 09:31:00 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/folders/6f48997a-cb6a-4c8b-b653-9a89060553dc + - https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders/6477e14d-f9f0-4180-a26d-2d72cbf3b034 Pragma: - no-cache RequestId: - - 7fe77e4f-ae62-4ae8-8e59-cd804f87ba86 + - b3464a6f-f1e9-4d07-984a-3865d34907d2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -620,16 +629,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -638,15 +650,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:55 GMT + - Wed, 20 May 2026 09:31:01 GMT Pragma: - no-cache RequestId: - - cf2202a3-a7f4-4c23-b7e8-023b230cdee5 + - ee7055e7-901a-4922-86a8-a2b5b4d377b8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -672,13 +684,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/747d69b2-79bb-48c9-a284-3f9a777297fc/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders?recursive=True response: body: - string: '{"value": [{"id": "6f48997a-cb6a-4c8b-b653-9a89060553dc", "displayName": - "fabcli000003", "workspaceId": "747d69b2-79bb-48c9-a284-3f9a777297fc"}]}' + string: '{"value": [{"id": "6477e14d-f9f0-4180-a26d-2d72cbf3b034", "displayName": + "fabcli000003", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -687,15 +699,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:55 GMT + - Wed, 20 May 2026 09:31:02 GMT Pragma: - no-cache RequestId: - - 13e4f45f-4317-4ffa-9617-66afaeaaa06b + - e410b88c-4d02-4c94-a291-c51264ff7459 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -721,9 +733,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/747d69b2-79bb-48c9-a284-3f9a777297fc/items + uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/items response: body: string: '{"value": []}' @@ -739,11 +751,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:56 GMT + - Wed, 20 May 2026 09:31:03 GMT Pragma: - no-cache RequestId: - - 7074d730-7ede-4ec5-a4e4-feee17350988 + - 1e06c4fd-6333-466e-b5a5-89fb98c6c928 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -769,9 +781,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/747d69b2-79bb-48c9-a284-3f9a777297fc/items + uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/items response: body: string: '{"value": []}' @@ -787,11 +799,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:57 GMT + - Wed, 20 May 2026 09:31:04 GMT Pragma: - no-cache RequestId: - - 4ea82e1d-0e59-4260-aade-04c8392dc162 + - 2daadc78-22b9-436e-912f-bbad2741b779 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -806,8 +818,8 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000004", "type": - "SparkJobDefinition", "folderId": "6f48997a-cb6a-4c8b-b653-9a89060553dc"}' + body: '{"displayName": "fabcli000004", "type": "SparkJobDefinition", "folderId": + "6477e14d-f9f0-4180-a26d-2d72cbf3b034"}' headers: Accept: - '*/*' @@ -816,18 +828,18 @@ interactions: Connection: - keep-alive Content-Length: - - '150' + - '117' 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/747d69b2-79bb-48c9-a284-3f9a777297fc/sparkJobDefinitions + uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/sparkJobDefinitions response: body: - string: '{"id": "c31f55a0-96ee-47d4-a89d-4adfdaa2face", "type": "SparkJobDefinition", - "displayName": "fabcli000004", "workspaceId": - "747d69b2-79bb-48c9-a284-3f9a777297fc", "folderId": "6f48997a-cb6a-4c8b-b653-9a89060553dc"}' + string: '{"id": "9dbfcedb-283e-45c7-a836-fbe4386807e4", "type": "SparkJobDefinition", + "displayName": "fabcli000004", "description": "", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", + "folderId": "6477e14d-f9f0-4180-a26d-2d72cbf3b034"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -836,17 +848,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '206' + - '195' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:30:59 GMT + - Wed, 20 May 2026 09:31:06 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 54e6945e-a2f7-45c3-970d-65e78880cad7 + - 27eeea93-a5a8-4df0-a4c0-254567893b63 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -872,16 +884,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -890,15 +905,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:31:00 GMT + - Wed, 20 May 2026 09:31:08 GMT Pragma: - no-cache RequestId: - - 2acd6fb6-2d48-4bd8-a665-2790cd30d69c + - e73b8b52-1145-49d6-a99d-7a7010762a6a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -924,53 +939,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/folders?recursive=True - response: - body: - string: '{"requestId": "f5e637f3-dc2f-44fc-88ae-a7eb3040d538", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 8:31:04 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 08:31:01 GMT - RequestId: - - f5e637f3-dc2f-44fc-88ae-a7eb3040d538 - Retry-After: - - '3' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders?recursive=True response: body: - string: '{"value": [{"id": "6f48997a-cb6a-4c8b-b653-9a89060553dc", "displayName": - "fabcli000003", "workspaceId": "747d69b2-79bb-48c9-a284-3f9a777297fc"}]}' + string: '{"value": [{"id": "6477e14d-f9f0-4180-a26d-2d72cbf3b034", "displayName": + "fabcli000003", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -979,15 +954,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:31:05 GMT + - Wed, 20 May 2026 09:31:09 GMT Pragma: - no-cache RequestId: - - d36183dc-64e4-4cef-b0e6-7ae9122f964b + - 5f726f35-19b1-4718-b43f-e1ae0d549012 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1013,16 +988,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1031,15 +1009,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:31:05 GMT + - Wed, 20 May 2026 09:31:09 GMT Pragma: - no-cache RequestId: - - 175c3fa3-4ba5-4278-b93c-6d05fdcd7ac5 + - e6d0e06c-b835-4acb-ae72-52959dcba3ab Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1065,16 +1043,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1083,15 +1064,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:31:06 GMT + - Wed, 20 May 2026 09:31:11 GMT Pragma: - no-cache RequestId: - - 5fac3109-39e0-4a26-af07-9830247bef5f + - ca8d40c7-19e1-42cd-b2c0-8c43d3f37d9d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1117,9 +1098,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/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/folders?recursive=True response: body: string: '{"value": []}' @@ -1135,11 +1116,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:31:07 GMT + - Wed, 20 May 2026 09:31:12 GMT Pragma: - no-cache RequestId: - - 00953e0c-60de-4ff2-8cf8-0da85e2510c8 + - d6ea53fd-a199-4dc4-9e0a-d3fa72189513 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1165,9 +1146,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/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/folders?recursive=True response: body: string: '{"value": []}' @@ -1183,11 +1164,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:31:08 GMT + - Wed, 20 May 2026 09:31:13 GMT Pragma: - no-cache RequestId: - - 08728652-887b-4837-81f6-cffb5c904597 + - 25578cea-6a4b-4811-850a-c90580eba2c0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1211,17 +1192,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/folders response: body: - string: '{"id": "dfccfe1d-c393-41df-823c-ff7da7146ea7", "displayName": "fabcli000003", - "workspaceId": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed"}' + string: '{"id": "d8c0511f-d62b-419b-bcd1-c4fc7545d280", "displayName": "fabcli000003", + "workspaceId": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -1234,13 +1215,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:31:08 GMT + - Wed, 20 May 2026 09:31:13 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/folders/dfccfe1d-c393-41df-823c-ff7da7146ea7 + - https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/folders/d8c0511f-d62b-419b-bcd1-c4fc7545d280 Pragma: - no-cache RequestId: - - eb4ec6a7-591c-4398-a6ef-efc62945f141 + - dd68ff49-62b6-43af-bd89-fb3804a9c41b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1266,14 +1247,14 @@ 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/747d69b2-79bb-48c9-a284-3f9a777297fc/items + uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/items response: body: - string: '{"value": [{"id": "c31f55a0-96ee-47d4-a89d-4adfdaa2face", "type": "SparkJobDefinition", - "displayName": "fabcli000004", "workspaceId": - "747d69b2-79bb-48c9-a284-3f9a777297fc", "folderId": "6f48997a-cb6a-4c8b-b653-9a89060553dc"}]}' + string: '{"value": [{"id": "9dbfcedb-283e-45c7-a836-fbe4386807e4", "type": "SparkJobDefinition", + "displayName": "fabcli000004", "description": "", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", + "folderId": "6477e14d-f9f0-4180-a26d-2d72cbf3b034"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1282,15 +1263,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '216' + - '206' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:31:09 GMT + - Wed, 20 May 2026 09:31:14 GMT Pragma: - no-cache RequestId: - - b0eae9bc-1541-45f0-baff-d43258c9351c + - e9612649-6508-4f77-9d0e-064d860ec123 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1316,13 +1297,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/747d69b2-79bb-48c9-a284-3f9a777297fc/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders?recursive=True response: body: - string: '{"value": [{"id": "6f48997a-cb6a-4c8b-b653-9a89060553dc", "displayName": - "fabcli000003", "workspaceId": "747d69b2-79bb-48c9-a284-3f9a777297fc"}]}' + string: '{"value": [{"id": "6477e14d-f9f0-4180-a26d-2d72cbf3b034", "displayName": + "fabcli000003", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1331,15 +1312,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:31:10 GMT + - Wed, 20 May 2026 09:31:15 GMT Pragma: - no-cache RequestId: - - 9f82e1a9-2a61-434b-801b-e1e8ecb31801 + - f1012873-7d9b-48e6-be84-aa27552ccc9a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1365,13 +1346,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/747d69b2-79bb-48c9-a284-3f9a777297fc/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders?recursive=True response: body: - string: '{"value": [{"id": "6f48997a-cb6a-4c8b-b653-9a89060553dc", "displayName": - "fabcli000003", "workspaceId": "747d69b2-79bb-48c9-a284-3f9a777297fc"}]}' + string: '{"value": [{"id": "6477e14d-f9f0-4180-a26d-2d72cbf3b034", "displayName": + "fabcli000003", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1380,15 +1361,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:31:10 GMT + - Wed, 20 May 2026 09:31:15 GMT Pragma: - no-cache RequestId: - - 4840ff38-0881-4643-b2b5-f99b28eb1311 + - c97b5b5c-eedb-40c6-a0ed-20bfff3d7a9d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1414,14 +1395,14 @@ 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/747d69b2-79bb-48c9-a284-3f9a777297fc/items + uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/items response: body: - string: '{"value": [{"id": "c31f55a0-96ee-47d4-a89d-4adfdaa2face", "type": "SparkJobDefinition", - "displayName": "fabcli000004", "workspaceId": - "747d69b2-79bb-48c9-a284-3f9a777297fc", "folderId": "6f48997a-cb6a-4c8b-b653-9a89060553dc"}]}' + string: '{"value": [{"id": "9dbfcedb-283e-45c7-a836-fbe4386807e4", "type": "SparkJobDefinition", + "displayName": "fabcli000004", "description": "", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", + "folderId": "6477e14d-f9f0-4180-a26d-2d72cbf3b034"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1430,15 +1411,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '216' + - '206' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:31:11 GMT + - Wed, 20 May 2026 09:31:16 GMT Pragma: - no-cache RequestId: - - 8c245d85-3473-42d1-91da-e1b795fb2cea + - c3057e6d-7a6f-4f15-bb48-c09324ea683b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1464,13 +1445,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/747d69b2-79bb-48c9-a284-3f9a777297fc/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders?recursive=True response: body: - string: '{"value": [{"id": "6f48997a-cb6a-4c8b-b653-9a89060553dc", "displayName": - "fabcli000003", "workspaceId": "747d69b2-79bb-48c9-a284-3f9a777297fc"}]}' + string: '{"value": [{"id": "6477e14d-f9f0-4180-a26d-2d72cbf3b034", "displayName": + "fabcli000003", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1479,15 +1460,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:31:12 GMT + - Wed, 20 May 2026 09:31:17 GMT Pragma: - no-cache RequestId: - - 88a9db3d-d97d-440f-aec9-2982800be532 + - 94573697-d15a-456d-a9f7-55963058d418 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1513,13 +1494,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/747d69b2-79bb-48c9-a284-3f9a777297fc/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders?recursive=True response: body: - string: '{"value": [{"id": "6f48997a-cb6a-4c8b-b653-9a89060553dc", "displayName": - "fabcli000003", "workspaceId": "747d69b2-79bb-48c9-a284-3f9a777297fc"}]}' + string: '{"value": [{"id": "6477e14d-f9f0-4180-a26d-2d72cbf3b034", "displayName": + "fabcli000003", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1528,15 +1509,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:31:13 GMT + - Wed, 20 May 2026 09:31:18 GMT Pragma: - no-cache RequestId: - - 3afe09a4-3c9b-4b38-a3a1-df1d9c4fa6af + - 490f5ce7-b3a1-4637-8c39-a955fb23b6e7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1562,16 +1543,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1580,15 +1564,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:31:14 GMT + - Wed, 20 May 2026 09:31:19 GMT Pragma: - no-cache RequestId: - - 3f598b15-e7c7-403e-b39b-bce8f9182847 + - 56641731-68fc-472c-bdf2-b063732656ad Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1614,13 +1598,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/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/folders?recursive=True response: body: - string: '{"value": [{"id": "dfccfe1d-c393-41df-823c-ff7da7146ea7", "displayName": - "fabcli000003", "workspaceId": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed"}]}' + string: '{"value": [{"id": "d8c0511f-d62b-419b-bcd1-c4fc7545d280", "displayName": + "fabcli000003", "workspaceId": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1633,11 +1617,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:31:14 GMT + - Wed, 20 May 2026 09:31:20 GMT Pragma: - no-cache RequestId: - - 938420f6-964f-42c6-83ad-c953aa19f1e4 + - 7232f02c-b938-4a64-b6de-f869fdce4c0c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1663,9 +1647,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/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/items + uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/items response: body: string: '{"value": []}' @@ -1681,11 +1665,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:31:16 GMT + - Wed, 20 May 2026 09:31:21 GMT Pragma: - no-cache RequestId: - - d36113c0-185c-4bff-b339-b2010ac8a238 + - 9d028e19-d62b-4d29-af1c-2aa372b53ad7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1711,9 +1695,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/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/items + uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/items response: body: string: '{"value": []}' @@ -1729,11 +1713,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:31:16 GMT + - Wed, 20 May 2026 09:31:22 GMT Pragma: - no-cache RequestId: - - f1f7fe1d-4198-4c09-aec5-025a4d20b3b5 + - 54c4ec64-a5fe-4ca8-a6f7-3054d09f0174 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1759,9 +1743,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/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/items + uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/items response: body: string: '{"value": []}' @@ -1777,11 +1761,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:31:17 GMT + - Wed, 20 May 2026 09:31:23 GMT Pragma: - no-cache RequestId: - - 8d2bebe0-7779-4635-938d-deb61b03b221 + - 2ee816f6-a35c-461d-bcd9-c8daa9921224 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1807,14 +1791,14 @@ 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/747d69b2-79bb-48c9-a284-3f9a777297fc/items/c31f55a0-96ee-47d4-a89d-4adfdaa2face + uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/items/9dbfcedb-283e-45c7-a836-fbe4386807e4 response: body: - string: '{"id": "c31f55a0-96ee-47d4-a89d-4adfdaa2face", "type": "SparkJobDefinition", - "displayName": "fabcli000004", "workspaceId": - "747d69b2-79bb-48c9-a284-3f9a777297fc", "folderId": "6f48997a-cb6a-4c8b-b653-9a89060553dc"}' + string: '{"id": "9dbfcedb-283e-45c7-a836-fbe4386807e4", "type": "SparkJobDefinition", + "displayName": "fabcli000004", "description": "", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", + "folderId": "6477e14d-f9f0-4180-a26d-2d72cbf3b034"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1823,17 +1807,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '206' + - '195' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:31:18 GMT + - Wed, 20 May 2026 09:31:23 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 830bd552-74a6-4610-9297-f2b14bf4f4ae + - 09c53e8c-0d6e-4f83-8d05-9badad0c1798 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1861,14 +1845,14 @@ interactions: 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/747d69b2-79bb-48c9-a284-3f9a777297fc/items/c31f55a0-96ee-47d4-a89d-4adfdaa2face/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/items/9dbfcedb-283e-45c7-a836-fbe4386807e4/getDefinition response: body: string: '{"definition": {"parts": [{"path": "SparkJobDefinitionV1.json", "payload": "ew0KICAiZXhlY3V0YWJsZUZpbGUiOiBudWxsLA0KICAiZGVmYXVsdExha2Vob3VzZUFydGlmYWN0SWQiOiBudWxsLA0KICAibWFpbkNsYXNzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMYWtlaG91c2VJZHMiOiBbXSwNCiAgInJldHJ5UG9saWN5IjogbnVsbCwNCiAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMaWJyYXJ5VXJpcyI6IG51bGwsDQogICJsYW5ndWFnZSI6IG51bGwsDQogICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsDQp9", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -1878,15 +1862,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '616' + - '585' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:31:19 GMT + - Wed, 20 May 2026 09:31:25 GMT Pragma: - no-cache RequestId: - - bc355f3f-ad84-452c-8361-38121fcb70d5 + - 348b169a-eaf6-4324-9265-4065f8a9e704 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1901,11 +1885,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "SparkJobDefinition", "displayName": - "fabcli000004", "definition": {"parts": [{"path": "SparkJobDefinitionV1.json", - "payload": "ew0KICAiZXhlY3V0YWJsZUZpbGUiOiBudWxsLA0KICAiZGVmYXVsdExha2Vob3VzZUFydGlmYWN0SWQiOiBudWxsLA0KICAibWFpbkNsYXNzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMYWtlaG91c2VJZHMiOiBbXSwNCiAgInJldHJ5UG9saWN5IjogbnVsbCwNCiAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMaWJyYXJ5VXJpcyI6IG51bGwsDQogICJsYW5ndWFnZSI6IG51bGwsDQogICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsDQp9", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", - "payloadType": "InlineBase64"}]}, "folderId": "dfccfe1d-c393-41df-823c-ff7da7146ea7"}' + body: '{"type": "SparkJobDefinition", "displayName": "fabcli000004", "definition": + {"parts": [{"path": "SparkJobDefinitionV1.json", "payload": "ew0KICAiZXhlY3V0YWJsZUZpbGUiOiBudWxsLA0KICAiZGVmYXVsdExha2Vob3VzZUFydGlmYWN0SWQiOiBudWxsLA0KICAibWFpbkNsYXNzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMYWtlaG91c2VJZHMiOiBbXSwNCiAgInJldHJ5UG9saWN5IjogbnVsbCwNCiAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMaWJyYXJ5VXJpcyI6IG51bGwsDQogICJsYW5ndWFnZSI6IG51bGwsDQogICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsDQp9", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "payloadType": "InlineBase64"}]}, "folderId": "d8c0511f-d62b-419b-bcd1-c4fc7545d280"}' headers: Accept: - '*/*' @@ -1914,18 +1897,18 @@ interactions: Connection: - keep-alive Content-Length: - - '1159' + - '1074' 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/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/items + uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/items response: body: - string: '{"id": "2dc8f689-e555-4462-9718-7122e32cbf33", "type": "SparkJobDefinition", - "displayName": "fabcli000004", "workspaceId": - "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "folderId": "dfccfe1d-c393-41df-823c-ff7da7146ea7"}' + string: '{"id": "08a168a4-6b8e-4ae3-9464-99aae422593a", "type": "SparkJobDefinition", + "displayName": "fabcli000004", "description": "", "workspaceId": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", + "folderId": "d8c0511f-d62b-419b-bcd1-c4fc7545d280"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1934,17 +1917,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '205' + - '194' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:31:21 GMT + - Wed, 20 May 2026 09:31:28 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 73c0ec40-7bef-4ef9-9857-a24c82251d51 + - 813f510f-97ad-4b35-a9f9-05650926d235 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1970,14 +1953,14 @@ 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/747d69b2-79bb-48c9-a284-3f9a777297fc/items + uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/items response: body: - string: '{"value": [{"id": "c31f55a0-96ee-47d4-a89d-4adfdaa2face", "type": "SparkJobDefinition", - "displayName": "fabcli000004", "workspaceId": - "747d69b2-79bb-48c9-a284-3f9a777297fc", "folderId": "6f48997a-cb6a-4c8b-b653-9a89060553dc"}]}' + string: '{"value": [{"id": "9dbfcedb-283e-45c7-a836-fbe4386807e4", "type": "SparkJobDefinition", + "displayName": "fabcli000004", "description": "", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", + "folderId": "6477e14d-f9f0-4180-a26d-2d72cbf3b034"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1986,15 +1969,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '216' + - '206' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:31:22 GMT + - Wed, 20 May 2026 09:31:28 GMT Pragma: - no-cache RequestId: - - f8ac2263-da34-4399-94bf-2c138a9f16ef + - cf32766a-b9fb-44ce-aa82-4ae05f1f333b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2020,13 +2003,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/747d69b2-79bb-48c9-a284-3f9a777297fc/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders?recursive=True response: body: - string: '{"value": [{"id": "6f48997a-cb6a-4c8b-b653-9a89060553dc", "displayName": - "fabcli000003", "workspaceId": "747d69b2-79bb-48c9-a284-3f9a777297fc"}]}' + string: '{"value": [{"id": "6477e14d-f9f0-4180-a26d-2d72cbf3b034", "displayName": + "fabcli000003", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2035,15 +2018,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:31:23 GMT + - Wed, 20 May 2026 09:31:29 GMT Pragma: - no-cache RequestId: - - 31e91d47-d27d-4369-9f1f-a8435c91d494 + - 12ade1e9-1bd9-422e-a934-0f24e8fff6af Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2069,13 +2052,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/747d69b2-79bb-48c9-a284-3f9a777297fc/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders?recursive=True response: body: - string: '{"value": [{"id": "6f48997a-cb6a-4c8b-b653-9a89060553dc", "displayName": - "fabcli000003", "workspaceId": "747d69b2-79bb-48c9-a284-3f9a777297fc"}]}' + string: '{"value": [{"id": "6477e14d-f9f0-4180-a26d-2d72cbf3b034", "displayName": + "fabcli000003", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2084,15 +2067,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:31:23 GMT + - Wed, 20 May 2026 09:31:30 GMT Pragma: - no-cache RequestId: - - 74471907-db08-4f07-be13-a1ec0aba554a + - 821c15e0-2dce-474e-8863-917b8d6005ba Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2118,16 +2101,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2136,15 +2122,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:31:24 GMT + - Wed, 20 May 2026 09:31:31 GMT Pragma: - no-cache RequestId: - - d7a8b5b3-afb2-407a-af80-6cb9977adc3b + - c431139a-83fc-4095-9de9-69bd930b2c28 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2170,14 +2156,14 @@ 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/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/items + uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/items response: body: - string: '{"value": [{"id": "2dc8f689-e555-4462-9718-7122e32cbf33", "type": "SparkJobDefinition", - "displayName": "fabcli000004", "workspaceId": - "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "folderId": "dfccfe1d-c393-41df-823c-ff7da7146ea7"}]}' + string: '{"value": [{"id": "08a168a4-6b8e-4ae3-9464-99aae422593a", "type": "SparkJobDefinition", + "displayName": "fabcli000004", "description": "", "workspaceId": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", + "folderId": "d8c0511f-d62b-419b-bcd1-c4fc7545d280"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2186,15 +2172,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '216' + - '205' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:31:24 GMT + - Wed, 20 May 2026 09:31:31 GMT Pragma: - no-cache RequestId: - - a990969e-93d1-43ac-9515-4389958ade16 + - 71e61d05-774c-4122-85cc-743ebde69d0f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2220,53 +2206,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/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/folders?recursive=True response: body: - string: '{"requestId": "c231a1bd-d103-46dc-950a-8f708f7b0d3e", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 8:32:05 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 08:31:25 GMT - RequestId: - - c231a1bd-d103-46dc-950a-8f708f7b0d3e - Retry-After: - - '40' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/folders?recursive=True - response: - body: - string: '{"value": [{"id": "dfccfe1d-c393-41df-823c-ff7da7146ea7", "displayName": - "fabcli000003", "workspaceId": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed"}]}' + string: '{"value": [{"id": "d8c0511f-d62b-419b-bcd1-c4fc7545d280", "displayName": + "fabcli000003", "workspaceId": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2279,11 +2225,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:32:08 GMT + - Wed, 20 May 2026 09:31:33 GMT Pragma: - no-cache RequestId: - - ded98fae-82d8-4e10-99ac-04132a7a87b8 + - b2f75407-6f08-4b14-ac23-e3331ca28ffe Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2309,13 +2255,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/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/folders?recursive=True response: body: - string: '{"value": [{"id": "dfccfe1d-c393-41df-823c-ff7da7146ea7", "displayName": - "fabcli000003", "workspaceId": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed"}]}' + string: '{"value": [{"id": "d8c0511f-d62b-419b-bcd1-c4fc7545d280", "displayName": + "fabcli000003", "workspaceId": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2328,11 +2274,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:32:09 GMT + - Wed, 20 May 2026 09:31:33 GMT Pragma: - no-cache RequestId: - - 5a54a527-c705-4d7b-a36a-8697333a938e + - d384b7be-4ef1-4450-b03d-15d9ca795e44 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2358,16 +2304,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2376,15 +2325,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:32:09 GMT + - Wed, 20 May 2026 09:31:34 GMT Pragma: - no-cache RequestId: - - 3c2ac28b-fba2-4428-9b59-f2a8aede322b + - 5a3cd8e2-c1ee-49c9-acab-f46550662d94 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2410,13 +2359,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/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/folders?recursive=True response: body: - string: '{"value": [{"id": "dfccfe1d-c393-41df-823c-ff7da7146ea7", "displayName": - "fabcli000003", "workspaceId": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed"}]}' + string: '{"value": [{"id": "d8c0511f-d62b-419b-bcd1-c4fc7545d280", "displayName": + "fabcli000003", "workspaceId": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2429,11 +2378,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:32:10 GMT + - Wed, 20 May 2026 09:31:35 GMT Pragma: - no-cache RequestId: - - 60fe1c81-6088-4f72-a8a1-24710c6e4f50 + - 3aabb5a2-5a52-46e9-9d4a-065d7e832f60 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2459,14 +2408,14 @@ 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/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/items + uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/items response: body: - string: '{"value": [{"id": "2dc8f689-e555-4462-9718-7122e32cbf33", "type": "SparkJobDefinition", - "displayName": "fabcli000004", "workspaceId": - "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "folderId": "dfccfe1d-c393-41df-823c-ff7da7146ea7"}]}' + string: '{"value": [{"id": "08a168a4-6b8e-4ae3-9464-99aae422593a", "type": "SparkJobDefinition", + "displayName": "fabcli000004", "description": "", "workspaceId": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", + "folderId": "d8c0511f-d62b-419b-bcd1-c4fc7545d280"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2475,15 +2424,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '216' + - '205' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:32:11 GMT + - Wed, 20 May 2026 09:31:35 GMT Pragma: - no-cache RequestId: - - d0d37ebb-c889-4b8c-a2d9-b942db92f279 + - 136d52f6-a26a-4afc-b526-0198574eb8e1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2509,13 +2458,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/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/folders?recursive=True response: body: - string: '{"value": [{"id": "dfccfe1d-c393-41df-823c-ff7da7146ea7", "displayName": - "fabcli000003", "workspaceId": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed"}]}' + string: '{"value": [{"id": "d8c0511f-d62b-419b-bcd1-c4fc7545d280", "displayName": + "fabcli000003", "workspaceId": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2528,11 +2477,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:32:11 GMT + - Wed, 20 May 2026 09:31:36 GMT Pragma: - no-cache RequestId: - - c7ecd01f-e72e-41b3-8890-5e3b1907f418 + - 5fc450a7-207e-4b86-945e-dc7f96e1f07a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2558,13 +2507,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/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/folders?recursive=True response: body: - string: '{"value": [{"id": "dfccfe1d-c393-41df-823c-ff7da7146ea7", "displayName": - "fabcli000003", "workspaceId": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed"}]}' + string: '{"value": [{"id": "d8c0511f-d62b-419b-bcd1-c4fc7545d280", "displayName": + "fabcli000003", "workspaceId": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2577,11 +2526,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:32:13 GMT + - Wed, 20 May 2026 09:31:36 GMT Pragma: - no-cache RequestId: - - 1a3073fe-a19c-40e8-9dba-df34557b65b2 + - 3de522eb-6c37-4a58-970b-b5cc1b2b1194 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2607,16 +2556,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2625,15 +2577,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:32:14 GMT + - Wed, 20 May 2026 09:31:37 GMT Pragma: - no-cache RequestId: - - e46dd814-4e7d-4056-9279-52ff00cb36fa + - 3fbf522f-596a-4eec-8ac7-97f0b52db1b3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2659,13 +2611,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/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/folders?recursive=True response: body: - string: '{"value": [{"id": "dfccfe1d-c393-41df-823c-ff7da7146ea7", "displayName": - "fabcli000003", "workspaceId": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed"}]}' + string: '{"value": [{"id": "d8c0511f-d62b-419b-bcd1-c4fc7545d280", "displayName": + "fabcli000003", "workspaceId": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2678,11 +2630,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:32:14 GMT + - Wed, 20 May 2026 09:31:39 GMT Pragma: - no-cache RequestId: - - 9cff34b2-a1a2-4809-94bc-a74a5e753397 + - 43ed4892-9cc5-487b-bde7-b277cf497ac0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2708,14 +2660,14 @@ 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/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/items + uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/items response: body: - string: '{"value": [{"id": "2dc8f689-e555-4462-9718-7122e32cbf33", "type": "SparkJobDefinition", - "displayName": "fabcli000004", "workspaceId": - "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "folderId": "dfccfe1d-c393-41df-823c-ff7da7146ea7"}]}' + string: '{"value": [{"id": "08a168a4-6b8e-4ae3-9464-99aae422593a", "type": "SparkJobDefinition", + "displayName": "fabcli000004", "description": "", "workspaceId": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", + "folderId": "d8c0511f-d62b-419b-bcd1-c4fc7545d280"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2724,15 +2676,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '216' + - '205' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:32:15 GMT + - Wed, 20 May 2026 09:31:39 GMT Pragma: - no-cache RequestId: - - dfab5c5b-144b-4bf3-a6e7-4492887ef302 + - 997b2126-cf37-4a26-ad3a-3f426a8f0192 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2758,13 +2710,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/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/folders?recursive=True response: body: - string: '{"value": [{"id": "dfccfe1d-c393-41df-823c-ff7da7146ea7", "displayName": - "fabcli000003", "workspaceId": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed"}]}' + string: '{"value": [{"id": "d8c0511f-d62b-419b-bcd1-c4fc7545d280", "displayName": + "fabcli000003", "workspaceId": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2777,11 +2729,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:32:16 GMT + - Wed, 20 May 2026 09:31:40 GMT Pragma: - no-cache RequestId: - - 3a6282fc-609f-4cca-b718-4f491838ed76 + - 34f324e6-e82a-467e-b84b-44a8f0af6694 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2809,9 +2761,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/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/items/2dc8f689-e555-4462-9718-7122e32cbf33 + uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/items/08a168a4-6b8e-4ae3-9464-99aae422593a response: body: string: '' @@ -2827,11 +2779,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:32:17 GMT + - Wed, 20 May 2026 09:31:41 GMT Pragma: - no-cache RequestId: - - 271d9aa0-0336-4152-ade3-c20c9e9ae2e8 + - 9f59014b-2b9e-4698-9a55-81411a0b48b3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2857,16 +2809,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2875,15 +2830,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:32:18 GMT + - Wed, 20 May 2026 09:31:42 GMT Pragma: - no-cache RequestId: - - ab7f3e2d-6b4b-494d-88fb-6f07bfb16b52 + - 1e859659-3835-439f-97c0-2acfd6284254 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2909,13 +2864,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/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/folders?recursive=True response: body: - string: '{"value": [{"id": "dfccfe1d-c393-41df-823c-ff7da7146ea7", "displayName": - "fabcli000003", "workspaceId": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed"}]}' + string: '{"value": [{"id": "d8c0511f-d62b-419b-bcd1-c4fc7545d280", "displayName": + "fabcli000003", "workspaceId": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2928,11 +2883,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:32:18 GMT + - Wed, 20 May 2026 09:31:43 GMT Pragma: - no-cache RequestId: - - 255fd04a-dc34-4ab8-a248-933f679b1492 + - 2f5ecb23-8067-41a1-b87e-87280a24eee2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2960,9 +2915,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/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/folders/dfccfe1d-c393-41df-823c-ff7da7146ea7 + uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/folders/d8c0511f-d62b-419b-bcd1-c4fc7545d280 response: body: string: '' @@ -2978,11 +2933,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:32:19 GMT + - Wed, 20 May 2026 09:31:43 GMT Pragma: - no-cache RequestId: - - d20cc6a1-cf24-4662-be86-f83ea3d2371b + - 76ecfde5-ef87-49ad-b644-8987177891b8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3008,16 +2963,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3026,15 +2984,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:32:20 GMT + - Wed, 20 May 2026 09:31:44 GMT Pragma: - no-cache RequestId: - - 96929eec-accc-4814-8a90-24788287e9c9 + - 2ed4a36f-6516-48d2-a5e6-6f6dbd62acd7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3060,13 +3018,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/747d69b2-79bb-48c9-a284-3f9a777297fc/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders?recursive=True response: body: - string: '{"value": [{"id": "6f48997a-cb6a-4c8b-b653-9a89060553dc", "displayName": - "fabcli000003", "workspaceId": "747d69b2-79bb-48c9-a284-3f9a777297fc"}]}' + string: '{"value": [{"id": "6477e14d-f9f0-4180-a26d-2d72cbf3b034", "displayName": + "fabcli000003", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3075,15 +3033,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:32:21 GMT + - Wed, 20 May 2026 09:31:45 GMT Pragma: - no-cache RequestId: - - 05765cd1-12fb-4e99-b690-f34e877814a3 + - 4f2bbff1-e50c-471f-98d2-576fef0121e3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3109,14 +3067,14 @@ 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/747d69b2-79bb-48c9-a284-3f9a777297fc/items + uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/items response: body: - string: '{"value": [{"id": "c31f55a0-96ee-47d4-a89d-4adfdaa2face", "type": "SparkJobDefinition", - "displayName": "fabcli000004", "workspaceId": - "747d69b2-79bb-48c9-a284-3f9a777297fc", "folderId": "6f48997a-cb6a-4c8b-b653-9a89060553dc"}]}' + string: '{"value": [{"id": "9dbfcedb-283e-45c7-a836-fbe4386807e4", "type": "SparkJobDefinition", + "displayName": "fabcli000004", "description": "", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", + "folderId": "6477e14d-f9f0-4180-a26d-2d72cbf3b034"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3125,15 +3083,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '216' + - '206' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:32:21 GMT + - Wed, 20 May 2026 09:31:46 GMT Pragma: - no-cache RequestId: - - fee9ce10-47b1-490b-bf8c-4d18ccf163ca + - 3ad09487-d3a5-4386-aa2c-e18060e9e2a0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3159,13 +3117,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/747d69b2-79bb-48c9-a284-3f9a777297fc/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders?recursive=True response: body: - string: '{"value": [{"id": "6f48997a-cb6a-4c8b-b653-9a89060553dc", "displayName": - "fabcli000003", "workspaceId": "747d69b2-79bb-48c9-a284-3f9a777297fc"}]}' + string: '{"value": [{"id": "6477e14d-f9f0-4180-a26d-2d72cbf3b034", "displayName": + "fabcli000003", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3174,15 +3132,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:32:22 GMT + - Wed, 20 May 2026 09:31:47 GMT Pragma: - no-cache RequestId: - - fddf023b-7d0f-477b-9ceb-b4b9b6abd8b9 + - a5e091cf-3b92-4905-9e9d-cdc8264a2962 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3210,9 +3168,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/747d69b2-79bb-48c9-a284-3f9a777297fc/items/c31f55a0-96ee-47d4-a89d-4adfdaa2face + uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/items/9dbfcedb-283e-45c7-a836-fbe4386807e4 response: body: string: '' @@ -3228,11 +3186,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:32:24 GMT + - Wed, 20 May 2026 09:31:48 GMT Pragma: - no-cache RequestId: - - 7787a5d5-91ae-439d-8caa-2b50a53a19cf + - e92b4c4c-25bd-4742-a81f-47dcac0a9f0d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3258,16 +3216,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3276,15 +3237,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:32:24 GMT + - Wed, 20 May 2026 09:31:48 GMT Pragma: - no-cache RequestId: - - ed08a9bb-d2cf-4468-8f01-182ace1011c1 + - c37f9e6e-6086-470e-8f60-c8f9daa019ae Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3310,53 +3271,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/747d69b2-79bb-48c9-a284-3f9a777297fc/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders?recursive=True response: body: - string: '{"requestId": "fab194b2-3a1f-455b-bef5-92384485704e", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 8:33:09 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 08:32:25 GMT - RequestId: - - fab194b2-3a1f-455b-bef5-92384485704e - Retry-After: - - '44' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/747d69b2-79bb-48c9-a284-3f9a777297fc/folders?recursive=True - response: - body: - string: '{"value": [{"id": "6f48997a-cb6a-4c8b-b653-9a89060553dc", "displayName": - "fabcli000003", "workspaceId": "747d69b2-79bb-48c9-a284-3f9a777297fc"}]}' + string: '{"value": [{"id": "6477e14d-f9f0-4180-a26d-2d72cbf3b034", "displayName": + "fabcli000003", "workspaceId": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3365,15 +3286,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:33:12 GMT + - Wed, 20 May 2026 09:31:49 GMT Pragma: - no-cache RequestId: - - 5bfc5c20-a08c-4139-9394-cc04b6b1b946 + - 36195dff-488b-4590-b81e-f21ad53c53b4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3401,9 +3322,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/747d69b2-79bb-48c9-a284-3f9a777297fc/folders/6f48997a-cb6a-4c8b-b653-9a89060553dc + uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/folders/6477e14d-f9f0-4180-a26d-2d72cbf3b034 response: body: string: '' @@ -3419,11 +3340,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:33:13 GMT + - Wed, 20 May 2026 09:31:50 GMT Pragma: - no-cache RequestId: - - c7ee7c92-02ce-4eb7-a89b-16a025c4d1e3 + - bfa05f28-9e92-430c-9f5d-6cf249e7171d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3449,16 +3370,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "747d69b2-79bb-48c9-a284-3f9a777297fc", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "764cfa76-4859-4a54-8db0-7aba4dcd2ddc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3467,15 +3391,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:33:14 GMT + - Wed, 20 May 2026 09:31:51 GMT Pragma: - no-cache RequestId: - - f2ca89b3-338b-4b4c-b7b2-86c732cc8cd1 + - 89c21dc4-9038-4b15-903d-5499389123bb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3501,9 +3425,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/747d69b2-79bb-48c9-a284-3f9a777297fc/items + uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc/items response: body: string: '{"value": []}' @@ -3519,11 +3443,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:33:15 GMT + - Wed, 20 May 2026 09:31:51 GMT Pragma: - no-cache RequestId: - - 89bc07e3-cb31-48ab-97a4-f2fbb5734c4a + - 3d2bbbcf-2828-4608-997f-e8155516015d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3551,9 +3475,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/747d69b2-79bb-48c9-a284-3f9a777297fc + uri: https://api.fabric.microsoft.com/v1/workspaces/764cfa76-4859-4a54-8db0-7aba4dcd2ddc response: body: string: '' @@ -3569,11 +3493,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:33:16 GMT + - Wed, 20 May 2026 09:31:52 GMT Pragma: - no-cache RequestId: - - 307d8a29-456c-4076-9996-8ce800d63644 + - 52ba5f7f-6584-4fea-bd5b-a133067ee507 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3599,15 +3523,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "40eb0da3-18e1-4ecb-ba83-349893d9a3ed", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a2474dc3-5ef1-42b5-bca4-762dc9e4a09a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3616,15 +3542,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2844' + - '2660' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:33:16 GMT + - Wed, 20 May 2026 09:31:52 GMT Pragma: - no-cache RequestId: - - b40f25a8-bdd7-4d7f-b6b8-0ffdc312d618 + - ce5dda8c-9a14-464d-9122-e2df5eb23b5f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3650,9 +3576,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/40eb0da3-18e1-4ecb-ba83-349893d9a3ed/items + uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a/items response: body: string: '{"value": []}' @@ -3668,11 +3594,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:33:16 GMT + - Wed, 20 May 2026 09:31:53 GMT Pragma: - no-cache RequestId: - - dc555566-ffcc-4f8b-be62-2f75b9a160cf + - 9cd7292a-84e5-4b52-b94e-3db2299ac6ac Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3700,9 +3626,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/40eb0da3-18e1-4ecb-ba83-349893d9a3ed + uri: https://api.fabric.microsoft.com/v1/workspaces/a2474dc3-5ef1-42b5-bca4-762dc9e4a09a response: body: string: '' @@ -3718,11 +3644,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:33:18 GMT + - Wed, 20 May 2026 09:31:54 GMT Pragma: - no-cache RequestId: - - 37bf8062-794c-475b-94b3-6ea300759f7c + - 96f9abff-bb6b-4578-85d8-8abac3fb752e 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[UserDataFunction].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[UserDataFunction].yaml index 2c81b5532..1a1daf8ae 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[UserDataFunction].yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_folder_with_different_item_types_success[UserDataFunction].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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:36:59 GMT + - Wed, 20 May 2026 09:34:32 GMT Pragma: - no-cache RequestId: - - fc71c787-252f-4cfd-ba77-cc1954085995 + - ffe94b05-931c-4be8-b84f-160d24bff2ac Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:00 GMT + - Wed, 20 May 2026 09:34:32 GMT Pragma: - no-cache RequestId: - - b9f248a8-48f8-4ff8-befd-24aaac83369d + - 2e053c0e-7334-4ac5-8dea-e7c0fb8639e4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,7 +113,7 @@ 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/capacities response: @@ -127,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '427' + - '425' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:06 GMT + - Wed, 20 May 2026 09:34:38 GMT Pragma: - no-cache RequestId: - - 8e79e504-beb2-48e0-b049-633e19933ad2 + - 3f867412-3d95-4bc9-a2f6-99beedfa4110 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -150,8 +152,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -160,16 +161,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -178,17 +180,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:14 GMT + - Wed, 20 May 2026 09:34:44 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8 + - https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf Pragma: - no-cache RequestId: - - 57628633-73a9-4e0f-a723-0eba2ffdc172 + - bd766985-9b24-4e09-9c46-92ea91d31eb4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,15 +216,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -231,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2843' + - '2656' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:15 GMT + - Wed, 20 May 2026 09:34:45 GMT Pragma: - no-cache RequestId: - - 076e9389-00f7-439d-9363-1212baf7c55a + - c600824d-2bbb-48e7-98d1-de9c79a1403a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,15 +269,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -282,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2843' + - '2656' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:15 GMT + - Wed, 20 May 2026 09:34:46 GMT Pragma: - no-cache RequestId: - - 6c0ee6a8-5457-4550-b6f7-3d93aafbe6db + - 1dbb4c8c-b9d2-413d-80ba-7570f5ddf5d4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,7 +322,7 @@ 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/capacities response: @@ -332,15 +338,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '427' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:20 GMT + - Wed, 20 May 2026 09:34:49 GMT Pragma: - no-cache RequestId: - - 82ef3f0a-8db0-4079-926d-9321b30cc16d + - 999530c0-7a55-48d7-8384-f12087378080 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -355,8 +361,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000002", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -365,16 +370,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "93eb3596-2c8f-4aa4-be02-d3420853704e", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "5389187e-90dc-42d8-b7af-a37dfe3e8640", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -383,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:29 GMT + - Wed, 20 May 2026 09:34:56 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/93eb3596-2c8f-4aa4-be02-d3420853704e + - https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640 Pragma: - no-cache RequestId: - - 5c5d84dc-4378-4203-932b-35c2d695f3c0 + - 2f590b86-677b-4c96-bc20-8ebfe1012f38 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -419,16 +425,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "93eb3596-2c8f-4aa4-be02-d3420853704e", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "5389187e-90dc-42d8-b7af-a37dfe3e8640", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -437,15 +446,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2692' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:30 GMT + - Wed, 20 May 2026 09:34:57 GMT Pragma: - no-cache RequestId: - - 092cbeb5-120b-4006-adf9-4044bf8dd0fb + - 2c1e6f87-49d3-44d3-8019-ac029534c5b1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -471,9 +480,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/8a45ab65-004c-4701-8010-749472af28d8/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders?recursive=True response: body: string: '{"value": []}' @@ -489,11 +498,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:30 GMT + - Wed, 20 May 2026 09:34:57 GMT Pragma: - no-cache RequestId: - - 214d9a46-3c6c-4af1-be43-38ad5b923b93 + - 9d0bf31d-f097-4b65-91b1-8abf5c11b3af Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -519,9 +528,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/8a45ab65-004c-4701-8010-749472af28d8/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders?recursive=True response: body: string: '{"value": []}' @@ -537,11 +546,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:30 GMT + - Wed, 20 May 2026 09:34:58 GMT Pragma: - no-cache RequestId: - - f6d5bcfc-a5ae-4f93-aab8-788b3a9b8c79 + - 4909052d-8aff-4b99-82a9-4d8689170f69 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -565,17 +574,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/8a45ab65-004c-4701-8010-749472af28d8/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders response: body: - string: '{"id": "7a343f3b-0a57-4adb-95fb-5723e265f971", "displayName": "fabcli000003", - "workspaceId": "8a45ab65-004c-4701-8010-749472af28d8"}' + string: '{"id": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a", "displayName": "fabcli000003", + "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -588,13 +597,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:31 GMT + - Wed, 20 May 2026 09:34:59 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/folders/7a343f3b-0a57-4adb-95fb-5723e265f971 + - https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders/f3ad0c8e-b066-46f4-897a-2f9f7cafd71a Pragma: - no-cache RequestId: - - c50a9b70-fad6-4546-b29c-d212109ea07b + - 3ad55417-8335-443a-b61c-2e831b5958e7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -620,16 +629,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "93eb3596-2c8f-4aa4-be02-d3420853704e", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "5389187e-90dc-42d8-b7af-a37dfe3e8640", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -638,15 +650,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2692' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:31 GMT + - Wed, 20 May 2026 09:35:01 GMT Pragma: - no-cache RequestId: - - fbd9380b-47c4-455a-92e1-40f1e2d5f1eb + - 47d64ffe-a2ef-4313-80cd-95a97bdb378a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -672,13 +684,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/8a45ab65-004c-4701-8010-749472af28d8/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders?recursive=True response: body: - string: '{"value": [{"id": "7a343f3b-0a57-4adb-95fb-5723e265f971", "displayName": - "fabcli000003", "workspaceId": "8a45ab65-004c-4701-8010-749472af28d8"}]}' + string: '{"value": [{"id": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a", "displayName": + "fabcli000003", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -687,15 +699,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:32 GMT + - Wed, 20 May 2026 09:35:01 GMT Pragma: - no-cache RequestId: - - 78a03236-10df-4fc4-9d1b-b94c66556b51 + - a39a70dd-d39d-404d-903b-dc721b15ee64 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -721,9 +733,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/8a45ab65-004c-4701-8010-749472af28d8/items + uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/items response: body: string: '{"value": []}' @@ -739,11 +751,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:33 GMT + - Wed, 20 May 2026 09:35:02 GMT Pragma: - no-cache RequestId: - - ce265d78-4820-4090-b5e1-89600001b706 + - b32d1927-1513-4f03-84d2-3e2d65f7cd37 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -769,9 +781,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/8a45ab65-004c-4701-8010-749472af28d8/items + uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/items response: body: string: '{"value": []}' @@ -787,11 +799,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:33 GMT + - Wed, 20 May 2026 09:35:03 GMT Pragma: - no-cache RequestId: - - dfdd70f0-2ee4-419e-adc7-e29c2c1126fa + - 56b37933-068f-4667-a26e-548e950d4d6e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -806,8 +818,8 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000004", "type": - "UserDataFunction", "folderId": "7a343f3b-0a57-4adb-95fb-5723e265f971"}' + body: '{"displayName": "fabcli000004", "type": "UserDataFunction", "folderId": + "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a"}' headers: Accept: - '*/*' @@ -816,18 +828,18 @@ interactions: Connection: - keep-alive Content-Length: - - '148' + - '115' 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/8a45ab65-004c-4701-8010-749472af28d8/userdatafunctions + uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/userdatafunctions response: body: - string: '{"id": "63c6dd9c-e3c1-4304-b2fe-1dd7f03b3208", "type": "UserDataFunction", - "displayName": "fabcli000004", "workspaceId": - "8a45ab65-004c-4701-8010-749472af28d8", "folderId": "7a343f3b-0a57-4adb-95fb-5723e265f971"}' + string: '{"id": "cc71f28b-c903-4fee-a0e1-f47b2dcc51e2", "type": "UserDataFunction", + "displayName": "fabcli000004", "description": "", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf", + "folderId": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -836,17 +848,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '204' + - '193' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:36 GMT + - Wed, 20 May 2026 09:35:06 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 67f1fca1-2482-4e8e-80cd-64e2d9849aaa + - 55a451fc-05bb-4c5f-a4ad-c314ed6767a3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -872,16 +884,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "93eb3596-2c8f-4aa4-be02-d3420853704e", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "5389187e-90dc-42d8-b7af-a37dfe3e8640", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -890,15 +905,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2692' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:37 GMT + - Wed, 20 May 2026 09:35:06 GMT Pragma: - no-cache RequestId: - - 35aa9f19-d6c6-4010-b24e-b403f72c0fa7 + - 1b959f71-5fb8-4cc8-a630-b4bc24b017a6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -924,53 +939,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/folders?recursive=True - response: - body: - string: '{"requestId": "6686cfb4-b276-4cfd-b3d7-e2b59b94e3e3", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 8:37:43 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 08:37:38 GMT - RequestId: - - 6686cfb4-b276-4cfd-b3d7-e2b59b94e3e3 - Retry-After: - - '5' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders?recursive=True response: body: - string: '{"value": [{"id": "7a343f3b-0a57-4adb-95fb-5723e265f971", "displayName": - "fabcli000003", "workspaceId": "8a45ab65-004c-4701-8010-749472af28d8"}]}' + string: '{"value": [{"id": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a", "displayName": + "fabcli000003", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -979,15 +954,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:43 GMT + - Wed, 20 May 2026 09:35:08 GMT Pragma: - no-cache RequestId: - - 9f29875b-7590-4ccf-807f-f1c5e976543f + - 289f3fb3-9360-44b4-8201-ba7ace675ad5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1013,16 +988,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "93eb3596-2c8f-4aa4-be02-d3420853704e", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "5389187e-90dc-42d8-b7af-a37dfe3e8640", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1031,15 +1009,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2692' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:43 GMT + - Wed, 20 May 2026 09:35:08 GMT Pragma: - no-cache RequestId: - - 8c9e743d-1e93-4eb8-a65b-66d3144a55e0 + - 2d2d3776-8cc9-42b9-9005-eac89ce2fd17 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1065,16 +1043,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "93eb3596-2c8f-4aa4-be02-d3420853704e", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "5389187e-90dc-42d8-b7af-a37dfe3e8640", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1083,15 +1064,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2692' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:44 GMT + - Wed, 20 May 2026 09:35:09 GMT Pragma: - no-cache RequestId: - - 9a1e4a73-c3b5-41f9-ba0e-97707e441a7b + - a602e019-7635-4599-a78f-86f6ef8e1ea9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1117,9 +1098,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/93eb3596-2c8f-4aa4-be02-d3420853704e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/folders?recursive=True response: body: string: '{"value": []}' @@ -1135,11 +1116,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:45 GMT + - Wed, 20 May 2026 09:35:10 GMT Pragma: - no-cache RequestId: - - 7cc2cea1-5541-4c91-8d64-243c8113c99b + - b616075a-50ca-425f-832b-a0fccf1f64a1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1165,9 +1146,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/93eb3596-2c8f-4aa4-be02-d3420853704e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/folders?recursive=True response: body: string: '{"value": []}' @@ -1183,11 +1164,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:46 GMT + - Wed, 20 May 2026 09:35:12 GMT Pragma: - no-cache RequestId: - - 46466059-c026-4f65-be6c-1de06f921265 + - 99ceb505-8bd5-4d56-a2a1-e7e1455b199a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1211,17 +1192,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/93eb3596-2c8f-4aa4-be02-d3420853704e/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/folders response: body: - string: '{"id": "1e9dc060-5f16-46c9-b7c5-81504b8d888c", "displayName": "fabcli000003", - "workspaceId": "93eb3596-2c8f-4aa4-be02-d3420853704e"}' + string: '{"id": "2f96208a-7830-4db7-9575-1170bf953db5", "displayName": "fabcli000003", + "workspaceId": "5389187e-90dc-42d8-b7af-a37dfe3e8640"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -1230,17 +1211,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '133' + - '134' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:46 GMT + - Wed, 20 May 2026 09:35:12 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/93eb3596-2c8f-4aa4-be02-d3420853704e/folders/1e9dc060-5f16-46c9-b7c5-81504b8d888c + - https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/folders/2f96208a-7830-4db7-9575-1170bf953db5 Pragma: - no-cache RequestId: - - 43e0d2c1-66e5-4219-a071-04828a129632 + - 9a1525d7-c5c8-4017-80f4-6f9c51f22b4c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1266,14 +1247,14 @@ 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/8a45ab65-004c-4701-8010-749472af28d8/items + uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/items response: body: - string: '{"value": [{"id": "63c6dd9c-e3c1-4304-b2fe-1dd7f03b3208", "type": "UserDataFunction", - "displayName": "fabcli000004", "workspaceId": - "8a45ab65-004c-4701-8010-749472af28d8", "folderId": "7a343f3b-0a57-4adb-95fb-5723e265f971"}]}' + string: '{"value": [{"id": "cc71f28b-c903-4fee-a0e1-f47b2dcc51e2", "type": "UserDataFunction", + "displayName": "fabcli000004", "description": "", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf", + "folderId": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1282,15 +1263,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '215' + - '205' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:47 GMT + - Wed, 20 May 2026 09:35:13 GMT Pragma: - no-cache RequestId: - - abaa3db6-bcd3-4bce-bfbd-d4b4bca9c236 + - 0012c717-4d55-4841-b9be-1c3492f2b68b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1316,13 +1297,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/8a45ab65-004c-4701-8010-749472af28d8/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders?recursive=True response: body: - string: '{"value": [{"id": "7a343f3b-0a57-4adb-95fb-5723e265f971", "displayName": - "fabcli000003", "workspaceId": "8a45ab65-004c-4701-8010-749472af28d8"}]}' + string: '{"value": [{"id": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a", "displayName": + "fabcli000003", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1331,15 +1312,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:48 GMT + - Wed, 20 May 2026 09:35:14 GMT Pragma: - no-cache RequestId: - - 53d2a2e3-fe01-4cd9-a89f-71d963c40c57 + - 435a5e8d-8e1c-45ba-a5bb-6d2c8d56fb62 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1365,13 +1346,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/8a45ab65-004c-4701-8010-749472af28d8/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders?recursive=True response: body: - string: '{"value": [{"id": "7a343f3b-0a57-4adb-95fb-5723e265f971", "displayName": - "fabcli000003", "workspaceId": "8a45ab65-004c-4701-8010-749472af28d8"}]}' + string: '{"value": [{"id": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a", "displayName": + "fabcli000003", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1380,15 +1361,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:49 GMT + - Wed, 20 May 2026 09:35:14 GMT Pragma: - no-cache RequestId: - - 8aab5f90-a3f0-493b-b3b0-f90252b53928 + - d099a913-1106-482a-bcbc-e4786340be92 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1414,14 +1395,14 @@ 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/8a45ab65-004c-4701-8010-749472af28d8/items + uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/items response: body: - string: '{"value": [{"id": "63c6dd9c-e3c1-4304-b2fe-1dd7f03b3208", "type": "UserDataFunction", - "displayName": "fabcli000004", "workspaceId": - "8a45ab65-004c-4701-8010-749472af28d8", "folderId": "7a343f3b-0a57-4adb-95fb-5723e265f971"}]}' + string: '{"value": [{"id": "cc71f28b-c903-4fee-a0e1-f47b2dcc51e2", "type": "UserDataFunction", + "displayName": "fabcli000004", "description": "", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf", + "folderId": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1430,15 +1411,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '215' + - '205' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:50 GMT + - Wed, 20 May 2026 09:35:15 GMT Pragma: - no-cache RequestId: - - c98e5395-b81d-4544-ae05-e0241d231ac0 + - 74208172-8999-4896-8f01-7f2f1c3a6549 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1464,13 +1445,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/8a45ab65-004c-4701-8010-749472af28d8/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders?recursive=True response: body: - string: '{"value": [{"id": "7a343f3b-0a57-4adb-95fb-5723e265f971", "displayName": - "fabcli000003", "workspaceId": "8a45ab65-004c-4701-8010-749472af28d8"}]}' + string: '{"value": [{"id": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a", "displayName": + "fabcli000003", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1479,15 +1460,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:51 GMT + - Wed, 20 May 2026 09:35:16 GMT Pragma: - no-cache RequestId: - - e04c6e10-d316-4014-a927-51b652967a63 + - f29bb0b7-98e8-494b-838f-1e2f866828a2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1513,13 +1494,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/8a45ab65-004c-4701-8010-749472af28d8/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders?recursive=True response: body: - string: '{"value": [{"id": "7a343f3b-0a57-4adb-95fb-5723e265f971", "displayName": - "fabcli000003", "workspaceId": "8a45ab65-004c-4701-8010-749472af28d8"}]}' + string: '{"value": [{"id": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a", "displayName": + "fabcli000003", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1528,15 +1509,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:51 GMT + - Wed, 20 May 2026 09:35:17 GMT Pragma: - no-cache RequestId: - - a235576d-b436-4928-aded-bebbbe325a30 + - 184fe864-3d04-4cd5-bc9a-a993c486f4dd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1562,16 +1543,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "93eb3596-2c8f-4aa4-be02-d3420853704e", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "5389187e-90dc-42d8-b7af-a37dfe3e8640", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1580,15 +1564,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2692' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:52 GMT + - Wed, 20 May 2026 09:35:18 GMT Pragma: - no-cache RequestId: - - 441b610e-df10-4364-a18d-4145251958dd + - 154d58c6-698d-4467-a1e6-cf7b97682183 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1614,13 +1598,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/93eb3596-2c8f-4aa4-be02-d3420853704e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/folders?recursive=True response: body: - string: '{"value": [{"id": "1e9dc060-5f16-46c9-b7c5-81504b8d888c", "displayName": - "fabcli000003", "workspaceId": "93eb3596-2c8f-4aa4-be02-d3420853704e"}]}' + string: '{"value": [{"id": "2f96208a-7830-4db7-9575-1170bf953db5", "displayName": + "fabcli000003", "workspaceId": "5389187e-90dc-42d8-b7af-a37dfe3e8640"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1633,11 +1617,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:53 GMT + - Wed, 20 May 2026 09:35:19 GMT Pragma: - no-cache RequestId: - - cc65c624-4b79-46b0-a5d4-a3c793f3153b + - 4707c41a-bc4b-4611-9233-5a9edb1ae7df Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1663,9 +1647,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/93eb3596-2c8f-4aa4-be02-d3420853704e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/items response: body: string: '{"value": []}' @@ -1681,11 +1665,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:54 GMT + - Wed, 20 May 2026 09:35:20 GMT Pragma: - no-cache RequestId: - - 2ab4f0c2-b0b5-477e-8ecf-2f405d0d1cac + - a62c22ff-9069-4977-a070-63c1ca42151c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1711,9 +1695,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/93eb3596-2c8f-4aa4-be02-d3420853704e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/items response: body: string: '{"value": []}' @@ -1729,11 +1713,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:55 GMT + - Wed, 20 May 2026 09:35:21 GMT Pragma: - no-cache RequestId: - - 3ea489ba-bb0c-493d-aea2-d3f9c17df4b2 + - 73c7fce7-a7c1-43da-acfe-e28fc3980f75 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1759,9 +1743,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/93eb3596-2c8f-4aa4-be02-d3420853704e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/items response: body: string: '{"value": []}' @@ -1777,11 +1761,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:55 GMT + - Wed, 20 May 2026 09:35:22 GMT Pragma: - no-cache RequestId: - - 603417ce-3f9f-4019-8f18-79243f582593 + - 6fc3cf1e-7115-41ad-89c2-9363d6fb9818 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1807,14 +1791,14 @@ 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/8a45ab65-004c-4701-8010-749472af28d8/items/63c6dd9c-e3c1-4304-b2fe-1dd7f03b3208 + uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/items/cc71f28b-c903-4fee-a0e1-f47b2dcc51e2 response: body: - string: '{"id": "63c6dd9c-e3c1-4304-b2fe-1dd7f03b3208", "type": "UserDataFunction", - "displayName": "fabcli000004", "workspaceId": - "8a45ab65-004c-4701-8010-749472af28d8", "folderId": "7a343f3b-0a57-4adb-95fb-5723e265f971"}' + string: '{"id": "cc71f28b-c903-4fee-a0e1-f47b2dcc51e2", "type": "UserDataFunction", + "displayName": "fabcli000004", "description": "", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf", + "folderId": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1823,17 +1807,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '204' + - '193' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:56 GMT + - Wed, 20 May 2026 09:35:23 GMT ETag: - '""' Pragma: - no-cache RequestId: - - e77d81d0-fa67-479f-aea9-29542ec891d7 + - 02b00b52-6928-44c7-9116-94e21190fd1a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1861,9 +1845,9 @@ interactions: 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/8a45ab65-004c-4701-8010-749472af28d8/items/63c6dd9c-e3c1-4304-b2fe-1dd7f03b3208/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/items/cc71f28b-c903-4fee-a0e1-f47b2dcc51e2/getDefinition response: body: string: 'null' @@ -1879,13 +1863,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:37:57 GMT + - Wed, 20 May 2026 09:35:24 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d0455930-f492-431e-aed7-3dcc08790238 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/557c2ab3-8f99-4190-8295-d415ce67b072 Pragma: - no-cache RequestId: - - 66fd0dc8-bcf4-4982-a619-071e33fbe753 + - a4a718d3-e1d6-4862-8c31-c52b10d60559 Retry-After: - '20' Strict-Transport-Security: @@ -1899,7 +1883,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - d0455930-f492-431e-aed7-3dcc08790238 + - 557c2ab3-8f99-4190-8295-d415ce67b072 status: code: 202 message: Accepted @@ -1915,13 +1899,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d0455930-f492-431e-aed7-3dcc08790238 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/557c2ab3-8f99-4190-8295-d415ce67b072 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:37:57.8195758", - "lastUpdatedTimeUtc": "2026-02-06T08:37:58.1009934", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:35:24.7730849", + "lastUpdatedTimeUtc": "2026-05-20T09:35:25.0753044", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1935,13 +1919,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:38:19 GMT + - Wed, 20 May 2026 09:35:45 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d0455930-f492-431e-aed7-3dcc08790238/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/557c2ab3-8f99-4190-8295-d415ce67b072/result Pragma: - no-cache RequestId: - - 6a3f647e-c475-4d5c-b2e4-8cecb86b91e0 + - 589e7773-e561-4d15-88a6-b1f1b1868ba5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1949,7 +1933,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - d0455930-f492-431e-aed7-3dcc08790238 + - 557c2ab3-8f99-4190-8295-d415ce67b072 status: code: 200 message: OK @@ -1965,13 +1949,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d0455930-f492-431e-aed7-3dcc08790238/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/557c2ab3-8f99-4190-8295-d415ce67b072/result response: body: string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS91c2VyRGF0YUZ1bmN0aW9uL2RlZmluaXRpb24vMS4xLjAvc2NoZW1hLmpzb24iLA0KICAicnVudGltZSI6ICJQWVRIT04iLA0KICAiY29ubmVjdGVkRGF0YVNvdXJjZXMiOiBbXSwNCiAgImZ1bmN0aW9ucyI6IFtdLA0KICAibGlicmFyaWVzIjogew0KICAgICJwdWJsaWMiOiBbXSwNCiAgICAicHJpdmF0ZSI6IFtdDQogIH0NCn0=", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlVzZXJEYXRhRnVuY3Rpb24iLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwNCIsCiAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlVzZXJEYXRhRnVuY3Rpb24iLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwNCIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -1983,11 +1967,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 08:38:20 GMT + - Wed, 20 May 2026 09:35:46 GMT Pragma: - no-cache RequestId: - - d3c79c0f-1a51-44f2-882d-160edc44734e + - 71e86d07-79c6-4407-ab2a-d0b926af2321 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -2000,11 +1984,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "UserDataFunction", "displayName": - "fabcli000004", "definition": {"parts": [{"path": "definition.json", "payload": - "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS91c2VyRGF0YUZ1bmN0aW9uL2RlZmluaXRpb24vMS4xLjAvc2NoZW1hLmpzb24iLA0KICAicnVudGltZSI6ICJQWVRIT04iLA0KICAiY29ubmVjdGVkRGF0YVNvdXJjZXMiOiBbXSwNCiAgImZ1bmN0aW9ucyI6IFtdLA0KICAibGlicmFyaWVzIjogew0KICAgICJwdWJsaWMiOiBbXSwNCiAgICAicHJpdmF0ZSI6IFtdDQogIH0NCn0=", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlVzZXJEYXRhRnVuY3Rpb24iLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwNCIsCiAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", - "payloadType": "InlineBase64"}]}, "folderId": "1e9dc060-5f16-46c9-b7c5-81504b8d888c"}' + body: '{"type": "UserDataFunction", "displayName": "fabcli000004", "definition": + {"parts": [{"path": "definition.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS91c2VyRGF0YUZ1bmN0aW9uL2RlZmluaXRpb24vMS4xLjAvc2NoZW1hLmpzb24iLA0KICAicnVudGltZSI6ICJQWVRIT04iLA0KICAiY29ubmVjdGVkRGF0YVNvdXJjZXMiOiBbXSwNCiAgImZ1bmN0aW9ucyI6IFtdLA0KICAibGlicmFyaWVzIjogew0KICAgICJwdWJsaWMiOiBbXSwNCiAgICAicHJpdmF0ZSI6IFtdDQogIH0NCn0=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlVzZXJEYXRhRnVuY3Rpb24iLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwNCIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "payloadType": "InlineBase64"}]}, "folderId": "2f96208a-7830-4db7-9575-1170bf953db5"}' headers: Accept: - '*/*' @@ -2013,13 +1996,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1131' + - '1050' 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/93eb3596-2c8f-4aa4-be02-d3420853704e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/items response: body: string: 'null' @@ -2035,15 +2018,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:38:21 GMT + - Wed, 20 May 2026 09:35:48 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fec68534-b3d9-4f5e-9b37-46a64e6520d4 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2a55f337-c5b1-4f38-b23c-a7d1f05e9fd9 Pragma: - no-cache RequestId: - - e882e0b3-dbd2-4e5e-adc3-2239b5ea0717 + - 42e9f202-25e6-451d-ad32-00ae1821bb59 Retry-After: - '20' Strict-Transport-Security: @@ -2057,7 +2040,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - fec68534-b3d9-4f5e-9b37-46a64e6520d4 + - 2a55f337-c5b1-4f38-b23c-a7d1f05e9fd9 status: code: 202 message: Accepted @@ -2073,13 +2056,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fec68534-b3d9-4f5e-9b37-46a64e6520d4 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2a55f337-c5b1-4f38-b23c-a7d1f05e9fd9 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:38:21.7008693", - "lastUpdatedTimeUtc": "2026-02-06T08:38:24.9198959", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:35:47.5676048", + "lastUpdatedTimeUtc": "2026-05-20T09:35:50.6886914", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -2089,17 +2072,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '132' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:38:44 GMT + - Wed, 20 May 2026 09:36:08 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fec68534-b3d9-4f5e-9b37-46a64e6520d4/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2a55f337-c5b1-4f38-b23c-a7d1f05e9fd9/result Pragma: - no-cache RequestId: - - 5b1744d4-96af-4712-aa14-19c004934151 + - 4d32b403-dd41-40f5-973c-33c5ddf97d5c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2107,7 +2090,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - fec68534-b3d9-4f5e-9b37-46a64e6520d4 + - 2a55f337-c5b1-4f38-b23c-a7d1f05e9fd9 status: code: 200 message: OK @@ -2123,14 +2106,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/fec68534-b3d9-4f5e-9b37-46a64e6520d4/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2a55f337-c5b1-4f38-b23c-a7d1f05e9fd9/result response: body: - string: '{"id": "43474723-2eec-45e1-b0f6-e1664d472a07", "type": "UserDataFunction", - "displayName": "fabcli000004", "workspaceId": - "93eb3596-2c8f-4aa4-be02-d3420853704e", "folderId": "1e9dc060-5f16-46c9-b7c5-81504b8d888c"}' + string: '{"id": "21faf9e4-5f52-4581-821d-875938815ace", "type": "UserDataFunction", + "displayName": "fabcli000004", "description": "", "workspaceId": "5389187e-90dc-42d8-b7af-a37dfe3e8640", + "folderId": "2f96208a-7830-4db7-9575-1170bf953db5"}' headers: Access-Control-Expose-Headers: - RequestId @@ -2141,11 +2124,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 08:38:44 GMT + - Wed, 20 May 2026 09:36:10 GMT Pragma: - no-cache RequestId: - - 6f2fcbcf-b9de-4231-b063-b3b49ba4151d + - f6fad8f7-097c-44a4-81aa-dee4f23930a3 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -2169,14 +2152,14 @@ 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/8a45ab65-004c-4701-8010-749472af28d8/items + uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/items response: body: - string: '{"value": [{"id": "63c6dd9c-e3c1-4304-b2fe-1dd7f03b3208", "type": "UserDataFunction", - "displayName": "fabcli000004", "workspaceId": - "8a45ab65-004c-4701-8010-749472af28d8", "folderId": "7a343f3b-0a57-4adb-95fb-5723e265f971"}]}' + string: '{"value": [{"id": "cc71f28b-c903-4fee-a0e1-f47b2dcc51e2", "type": "UserDataFunction", + "displayName": "fabcli000004", "description": "", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf", + "folderId": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2185,15 +2168,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '215' + - '205' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:38:45 GMT + - Wed, 20 May 2026 09:36:10 GMT Pragma: - no-cache RequestId: - - 1f25c32e-226a-4b73-ae09-0de04ed8af72 + - b075c9b2-0732-437e-af61-54604666f333 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2219,13 +2202,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/8a45ab65-004c-4701-8010-749472af28d8/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders?recursive=True response: body: - string: '{"value": [{"id": "7a343f3b-0a57-4adb-95fb-5723e265f971", "displayName": - "fabcli000003", "workspaceId": "8a45ab65-004c-4701-8010-749472af28d8"}]}' + string: '{"value": [{"id": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a", "displayName": + "fabcli000003", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2234,15 +2217,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:38:46 GMT + - Wed, 20 May 2026 09:36:12 GMT Pragma: - no-cache RequestId: - - 2b1a9fb0-5e3d-4e5c-8a15-555c4ecaac18 + - 34e188f5-42ab-420c-b3b4-36730f1ffb18 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2268,13 +2251,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/8a45ab65-004c-4701-8010-749472af28d8/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders?recursive=True response: body: - string: '{"value": [{"id": "7a343f3b-0a57-4adb-95fb-5723e265f971", "displayName": - "fabcli000003", "workspaceId": "8a45ab65-004c-4701-8010-749472af28d8"}]}' + string: '{"value": [{"id": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a", "displayName": + "fabcli000003", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2283,15 +2266,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:38:47 GMT + - Wed, 20 May 2026 09:36:12 GMT Pragma: - no-cache RequestId: - - 797717d6-0b55-4874-bbef-4d7905d2986b + - 936be4c8-b7bc-4f29-8466-946c56016e12 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2317,16 +2300,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "93eb3596-2c8f-4aa4-be02-d3420853704e", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "5389187e-90dc-42d8-b7af-a37dfe3e8640", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2335,15 +2321,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2692' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:38:47 GMT + - Wed, 20 May 2026 09:36:13 GMT Pragma: - no-cache RequestId: - - 564b2095-0358-4c52-ac77-5b0bc574427e + - ec199cf1-da27-4c10-b734-86482e57305a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2369,14 +2355,14 @@ 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/93eb3596-2c8f-4aa4-be02-d3420853704e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/items response: body: - string: '{"value": [{"id": "43474723-2eec-45e1-b0f6-e1664d472a07", "type": "UserDataFunction", - "displayName": "fabcli000004", "workspaceId": - "93eb3596-2c8f-4aa4-be02-d3420853704e", "folderId": "1e9dc060-5f16-46c9-b7c5-81504b8d888c"}]}' + string: '{"value": [{"id": "21faf9e4-5f52-4581-821d-875938815ace", "type": "UserDataFunction", + "displayName": "fabcli000004", "description": "", "workspaceId": "5389187e-90dc-42d8-b7af-a37dfe3e8640", + "folderId": "2f96208a-7830-4db7-9575-1170bf953db5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2385,15 +2371,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '215' + - '206' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:38:48 GMT + - Wed, 20 May 2026 09:36:14 GMT Pragma: - no-cache RequestId: - - 0a34c5c3-776f-47fe-a5ad-b8650797c55d + - 8c333f67-d83f-4ccf-9612-4a00f7989054 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2419,13 +2405,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/93eb3596-2c8f-4aa4-be02-d3420853704e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/folders?recursive=True response: body: - string: '{"value": [{"id": "1e9dc060-5f16-46c9-b7c5-81504b8d888c", "displayName": - "fabcli000003", "workspaceId": "93eb3596-2c8f-4aa4-be02-d3420853704e"}]}' + string: '{"value": [{"id": "2f96208a-7830-4db7-9575-1170bf953db5", "displayName": + "fabcli000003", "workspaceId": "5389187e-90dc-42d8-b7af-a37dfe3e8640"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2438,11 +2424,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:38:49 GMT + - Wed, 20 May 2026 09:36:15 GMT Pragma: - no-cache RequestId: - - bc16fd0d-bc05-4775-9e53-b51382f2e534 + - 04753b54-7d23-41b7-8765-26af0662866a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2468,13 +2454,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/93eb3596-2c8f-4aa4-be02-d3420853704e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/folders?recursive=True response: body: - string: '{"value": [{"id": "1e9dc060-5f16-46c9-b7c5-81504b8d888c", "displayName": - "fabcli000003", "workspaceId": "93eb3596-2c8f-4aa4-be02-d3420853704e"}]}' + string: '{"value": [{"id": "2f96208a-7830-4db7-9575-1170bf953db5", "displayName": + "fabcli000003", "workspaceId": "5389187e-90dc-42d8-b7af-a37dfe3e8640"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2487,11 +2473,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:38:50 GMT + - Wed, 20 May 2026 09:36:15 GMT Pragma: - no-cache RequestId: - - b49c6eae-c75c-41af-9638-f8a3c49269e9 + - 1768ee22-b07f-41c3-b673-f262f313b054 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2517,16 +2503,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "93eb3596-2c8f-4aa4-be02-d3420853704e", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "5389187e-90dc-42d8-b7af-a37dfe3e8640", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2535,15 +2524,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2692' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:38:50 GMT + - Wed, 20 May 2026 09:36:16 GMT Pragma: - no-cache RequestId: - - 0121f926-a5b1-4253-8a91-5308fccb0add + - 699bc207-ea61-4b87-b431-c900cd4b9b42 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2569,13 +2558,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/93eb3596-2c8f-4aa4-be02-d3420853704e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/folders?recursive=True response: body: - string: '{"value": [{"id": "1e9dc060-5f16-46c9-b7c5-81504b8d888c", "displayName": - "fabcli000003", "workspaceId": "93eb3596-2c8f-4aa4-be02-d3420853704e"}]}' + string: '{"value": [{"id": "2f96208a-7830-4db7-9575-1170bf953db5", "displayName": + "fabcli000003", "workspaceId": "5389187e-90dc-42d8-b7af-a37dfe3e8640"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2588,11 +2577,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:38:51 GMT + - Wed, 20 May 2026 09:36:17 GMT Pragma: - no-cache RequestId: - - 3e574a9e-3060-40ff-a53c-8cd6f9606a54 + - 640e6750-f4cc-457c-a297-46e562bdf52a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2618,14 +2607,14 @@ 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/93eb3596-2c8f-4aa4-be02-d3420853704e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/items response: body: - string: '{"value": [{"id": "43474723-2eec-45e1-b0f6-e1664d472a07", "type": "UserDataFunction", - "displayName": "fabcli000004", "workspaceId": - "93eb3596-2c8f-4aa4-be02-d3420853704e", "folderId": "1e9dc060-5f16-46c9-b7c5-81504b8d888c"}]}' + string: '{"value": [{"id": "21faf9e4-5f52-4581-821d-875938815ace", "type": "UserDataFunction", + "displayName": "fabcli000004", "description": "", "workspaceId": "5389187e-90dc-42d8-b7af-a37dfe3e8640", + "folderId": "2f96208a-7830-4db7-9575-1170bf953db5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2634,15 +2623,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '215' + - '206' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:38:52 GMT + - Wed, 20 May 2026 09:36:19 GMT Pragma: - no-cache RequestId: - - d0b46e78-132e-4497-abe2-5f3142a104f9 + - 13f4458b-3cc0-4387-baea-913ee209a1fc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2668,13 +2657,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/93eb3596-2c8f-4aa4-be02-d3420853704e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/folders?recursive=True response: body: - string: '{"value": [{"id": "1e9dc060-5f16-46c9-b7c5-81504b8d888c", "displayName": - "fabcli000003", "workspaceId": "93eb3596-2c8f-4aa4-be02-d3420853704e"}]}' + string: '{"value": [{"id": "2f96208a-7830-4db7-9575-1170bf953db5", "displayName": + "fabcli000003", "workspaceId": "5389187e-90dc-42d8-b7af-a37dfe3e8640"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2687,11 +2676,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:38:53 GMT + - Wed, 20 May 2026 09:36:19 GMT Pragma: - no-cache RequestId: - - 41bdff14-5ba3-4cc8-a186-0739da6e38bf + - 2cc60212-78ae-4e81-aefd-cad5f89ee68b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2717,13 +2706,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/93eb3596-2c8f-4aa4-be02-d3420853704e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/folders?recursive=True response: body: - string: '{"value": [{"id": "1e9dc060-5f16-46c9-b7c5-81504b8d888c", "displayName": - "fabcli000003", "workspaceId": "93eb3596-2c8f-4aa4-be02-d3420853704e"}]}' + string: '{"value": [{"id": "2f96208a-7830-4db7-9575-1170bf953db5", "displayName": + "fabcli000003", "workspaceId": "5389187e-90dc-42d8-b7af-a37dfe3e8640"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2736,11 +2725,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:38:54 GMT + - Wed, 20 May 2026 09:36:20 GMT Pragma: - no-cache RequestId: - - f33f66a3-0d86-4a72-9fb0-5a9719136569 + - 57173688-743e-41ec-a84d-29354b438227 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2766,16 +2755,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "93eb3596-2c8f-4aa4-be02-d3420853704e", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "5389187e-90dc-42d8-b7af-a37dfe3e8640", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2784,15 +2776,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2692' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:38:55 GMT + - Wed, 20 May 2026 09:36:20 GMT Pragma: - no-cache RequestId: - - f9ca7307-3474-480a-b1d4-891aad2e487a + - 935616a8-36b8-4a41-8338-aaeed62c4302 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2818,13 +2810,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/93eb3596-2c8f-4aa4-be02-d3420853704e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/folders?recursive=True response: body: - string: '{"value": [{"id": "1e9dc060-5f16-46c9-b7c5-81504b8d888c", "displayName": - "fabcli000003", "workspaceId": "93eb3596-2c8f-4aa4-be02-d3420853704e"}]}' + string: '{"value": [{"id": "2f96208a-7830-4db7-9575-1170bf953db5", "displayName": + "fabcli000003", "workspaceId": "5389187e-90dc-42d8-b7af-a37dfe3e8640"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2837,11 +2829,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:38:55 GMT + - Wed, 20 May 2026 09:36:22 GMT Pragma: - no-cache RequestId: - - a67687f9-a404-41b1-a039-676b6a4184c5 + - babb4c39-1f2c-4302-b1de-e4b5e88d31de Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2867,14 +2859,14 @@ 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/93eb3596-2c8f-4aa4-be02-d3420853704e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/items response: body: - string: '{"value": [{"id": "43474723-2eec-45e1-b0f6-e1664d472a07", "type": "UserDataFunction", - "displayName": "fabcli000004", "workspaceId": - "93eb3596-2c8f-4aa4-be02-d3420853704e", "folderId": "1e9dc060-5f16-46c9-b7c5-81504b8d888c"}]}' + string: '{"value": [{"id": "21faf9e4-5f52-4581-821d-875938815ace", "type": "UserDataFunction", + "displayName": "fabcli000004", "description": "", "workspaceId": "5389187e-90dc-42d8-b7af-a37dfe3e8640", + "folderId": "2f96208a-7830-4db7-9575-1170bf953db5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2883,15 +2875,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '215' + - '206' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:38:56 GMT + - Wed, 20 May 2026 09:36:22 GMT Pragma: - no-cache RequestId: - - d3382c5b-092d-4c3c-ae16-fd73402aa6e8 + - 6c2c196c-f3f1-4656-bc36-e38b822d9197 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2917,13 +2909,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/93eb3596-2c8f-4aa4-be02-d3420853704e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/folders?recursive=True response: body: - string: '{"value": [{"id": "1e9dc060-5f16-46c9-b7c5-81504b8d888c", "displayName": - "fabcli000003", "workspaceId": "93eb3596-2c8f-4aa4-be02-d3420853704e"}]}' + string: '{"value": [{"id": "2f96208a-7830-4db7-9575-1170bf953db5", "displayName": + "fabcli000003", "workspaceId": "5389187e-90dc-42d8-b7af-a37dfe3e8640"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2936,11 +2928,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:38:58 GMT + - Wed, 20 May 2026 09:36:23 GMT Pragma: - no-cache RequestId: - - c9e95c92-ba99-4bdb-92fa-b7f8ac9422b3 + - af3feb39-60e9-402d-89d4-2a9779d99e4d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2968,9 +2960,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/93eb3596-2c8f-4aa4-be02-d3420853704e/items/43474723-2eec-45e1-b0f6-e1664d472a07 + uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/items/21faf9e4-5f52-4581-821d-875938815ace response: body: string: '' @@ -2986,11 +2978,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:38:59 GMT + - Wed, 20 May 2026 09:36:24 GMT Pragma: - no-cache RequestId: - - c2ce6381-cc7b-4dbc-9011-6327dd848b1b + - 660d0b66-511c-4fe5-a157-29c44acd6001 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3016,16 +3008,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "93eb3596-2c8f-4aa4-be02-d3420853704e", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "5389187e-90dc-42d8-b7af-a37dfe3e8640", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3034,15 +3029,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2692' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:38:59 GMT + - Wed, 20 May 2026 09:36:25 GMT Pragma: - no-cache RequestId: - - 738416ef-7851-4cce-9d38-e3e310308546 + - b0046c7c-382a-4cb9-b2c4-e66c55407d84 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3068,13 +3063,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/93eb3596-2c8f-4aa4-be02-d3420853704e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/folders?recursive=True response: body: - string: '{"value": [{"id": "1e9dc060-5f16-46c9-b7c5-81504b8d888c", "displayName": - "fabcli000003", "workspaceId": "93eb3596-2c8f-4aa4-be02-d3420853704e"}]}' + string: '{"value": [{"id": "2f96208a-7830-4db7-9575-1170bf953db5", "displayName": + "fabcli000003", "workspaceId": "5389187e-90dc-42d8-b7af-a37dfe3e8640"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3087,11 +3082,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:38:59 GMT + - Wed, 20 May 2026 09:36:26 GMT Pragma: - no-cache RequestId: - - a6ac7d65-5522-44b1-b0c5-bff9f8a9ac14 + - 585bbf63-d9f8-4f18-86be-b4cbc40614ee Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3119,9 +3114,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/93eb3596-2c8f-4aa4-be02-d3420853704e/folders/1e9dc060-5f16-46c9-b7c5-81504b8d888c + uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/folders/2f96208a-7830-4db7-9575-1170bf953db5 response: body: string: '' @@ -3137,11 +3132,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:39:01 GMT + - Wed, 20 May 2026 09:36:27 GMT Pragma: - no-cache RequestId: - - 359e63dd-4723-46ed-b45d-bdf51e43fe52 + - 97d9d680-a999-46b3-b2d2-f7b496408e33 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3167,16 +3162,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "93eb3596-2c8f-4aa4-be02-d3420853704e", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "5389187e-90dc-42d8-b7af-a37dfe3e8640", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3185,15 +3183,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2692' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:39:01 GMT + - Wed, 20 May 2026 09:36:27 GMT Pragma: - no-cache RequestId: - - 56c722d0-8a23-4c60-bc3d-dc87e88248e9 + - 72c7434d-8844-473f-bb5b-38f4d2a12bd1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3219,53 +3217,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/8a45ab65-004c-4701-8010-749472af28d8/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders?recursive=True response: body: - string: '{"requestId": "fdb8e242-134b-426c-aa3c-8f8fcdf4543d", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 8:39:47 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 08:39:02 GMT - RequestId: - - fdb8e242-134b-426c-aa3c-8f8fcdf4543d - Retry-After: - - '44' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/8a45ab65-004c-4701-8010-749472af28d8/folders?recursive=True - response: - body: - string: '{"value": [{"id": "7a343f3b-0a57-4adb-95fb-5723e265f971", "displayName": - "fabcli000003", "workspaceId": "8a45ab65-004c-4701-8010-749472af28d8"}]}' + string: '{"value": [{"id": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a", "displayName": + "fabcli000003", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3274,15 +3232,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:39:49 GMT + - Wed, 20 May 2026 09:36:28 GMT Pragma: - no-cache RequestId: - - 931a99a1-e241-4e17-ba17-9cb65b443a69 + - 3670a0d4-5c00-4628-afaf-cc756f0278a8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3308,14 +3266,14 @@ 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/8a45ab65-004c-4701-8010-749472af28d8/items + uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/items response: body: - string: '{"value": [{"id": "63c6dd9c-e3c1-4304-b2fe-1dd7f03b3208", "type": "UserDataFunction", - "displayName": "fabcli000004", "workspaceId": - "8a45ab65-004c-4701-8010-749472af28d8", "folderId": "7a343f3b-0a57-4adb-95fb-5723e265f971"}]}' + string: '{"value": [{"id": "cc71f28b-c903-4fee-a0e1-f47b2dcc51e2", "type": "UserDataFunction", + "displayName": "fabcli000004", "description": "", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf", + "folderId": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3324,15 +3282,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '215' + - '205' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:39:50 GMT + - Wed, 20 May 2026 09:36:29 GMT Pragma: - no-cache RequestId: - - f565a509-fdc8-4a5b-9126-d94a7db6ee44 + - 2a1ff1d7-8386-49e8-bd23-7ce910f7ace8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3358,13 +3316,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/8a45ab65-004c-4701-8010-749472af28d8/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders?recursive=True response: body: - string: '{"value": [{"id": "7a343f3b-0a57-4adb-95fb-5723e265f971", "displayName": - "fabcli000003", "workspaceId": "8a45ab65-004c-4701-8010-749472af28d8"}]}' + string: '{"value": [{"id": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a", "displayName": + "fabcli000003", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3373,15 +3331,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:39:51 GMT + - Wed, 20 May 2026 09:36:30 GMT Pragma: - no-cache RequestId: - - d1f25d1b-2004-4890-8679-2ab29e5cce45 + - d42a56b6-33cd-4dd7-be75-43b865044cb7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3409,9 +3367,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/8a45ab65-004c-4701-8010-749472af28d8/items/63c6dd9c-e3c1-4304-b2fe-1dd7f03b3208 + uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/items/cc71f28b-c903-4fee-a0e1-f47b2dcc51e2 response: body: string: '' @@ -3427,11 +3385,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:39:51 GMT + - Wed, 20 May 2026 09:36:31 GMT Pragma: - no-cache RequestId: - - c45033d9-679b-4ef4-8f45-f07f92abfb35 + - a4214b6a-2c1e-4126-a42f-4764c47d8e14 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3457,16 +3415,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "93eb3596-2c8f-4aa4-be02-d3420853704e", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "5389187e-90dc-42d8-b7af-a37dfe3e8640", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3475,15 +3436,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2692' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:39:53 GMT + - Wed, 20 May 2026 09:36:31 GMT Pragma: - no-cache RequestId: - - e44eb33d-bd5e-410d-accf-5b5df87e7308 + - 7c46c7c7-da0a-4213-a5af-ccdbda548b5e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3509,13 +3470,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/8a45ab65-004c-4701-8010-749472af28d8/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders?recursive=True response: body: - string: '{"value": [{"id": "7a343f3b-0a57-4adb-95fb-5723e265f971", "displayName": - "fabcli000003", "workspaceId": "8a45ab65-004c-4701-8010-749472af28d8"}]}' + string: '{"value": [{"id": "f3ad0c8e-b066-46f4-897a-2f9f7cafd71a", "displayName": + "fabcli000003", "workspaceId": "3de1955c-4351-4fd7-b13c-c3293865efdf"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3524,15 +3485,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '145' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:39:53 GMT + - Wed, 20 May 2026 09:36:32 GMT Pragma: - no-cache RequestId: - - f4cd3849-2b4b-4c79-86c7-fc4af25acab3 + - 605407bd-9865-4629-a33d-3db948de967e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3560,9 +3521,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/8a45ab65-004c-4701-8010-749472af28d8/folders/7a343f3b-0a57-4adb-95fb-5723e265f971 + uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/folders/f3ad0c8e-b066-46f4-897a-2f9f7cafd71a response: body: string: '' @@ -3578,11 +3539,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:39:53 GMT + - Wed, 20 May 2026 09:36:33 GMT Pragma: - no-cache RequestId: - - 90a84c74-1731-45d8-836d-c45e1a01633b + - e89f07a8-0823-4aea-95e3-69b058d41c83 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3608,16 +3569,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "8a45ab65-004c-4701-8010-749472af28d8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "93eb3596-2c8f-4aa4-be02-d3420853704e", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "3de1955c-4351-4fd7-b13c-c3293865efdf", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "5389187e-90dc-42d8-b7af-a37dfe3e8640", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3626,15 +3590,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2692' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:39:55 GMT + - Wed, 20 May 2026 09:36:34 GMT Pragma: - no-cache RequestId: - - 37251518-498f-4b16-aeb4-7cdb493abccf + - 4de1178b-50ec-4b5e-87cb-fd6aeeb0a4f4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3660,9 +3624,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/8a45ab65-004c-4701-8010-749472af28d8/items + uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf/items response: body: string: '{"value": []}' @@ -3678,11 +3642,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:39:56 GMT + - Wed, 20 May 2026 09:36:35 GMT Pragma: - no-cache RequestId: - - 0fa8a934-af0b-439c-bf2b-8804dfdf8be8 + - de1940bd-2d8c-4346-9995-0a7d9bed1568 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3710,9 +3674,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/8a45ab65-004c-4701-8010-749472af28d8 + uri: https://api.fabric.microsoft.com/v1/workspaces/3de1955c-4351-4fd7-b13c-c3293865efdf response: body: string: '' @@ -3728,11 +3692,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:39:56 GMT + - Wed, 20 May 2026 09:36:36 GMT Pragma: - no-cache RequestId: - - 9b1d2ca5-adb6-4e49-9233-1dd821febaf8 + - 56ef2ae8-f433-4bfb-aa0b-52340d66f1ba Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3758,15 +3722,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "93eb3596-2c8f-4aa4-be02-d3420853704e", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "5389187e-90dc-42d8-b7af-a37dfe3e8640", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3775,15 +3741,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2841' + - '2656' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:39:58 GMT + - Wed, 20 May 2026 09:36:37 GMT Pragma: - no-cache RequestId: - - 1bc48798-d3d6-4c74-80e2-67049030c903 + - 64adb217-a09c-41c5-b870-0857592fe554 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3809,9 +3775,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/93eb3596-2c8f-4aa4-be02-d3420853704e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640/items response: body: string: '{"value": []}' @@ -3827,11 +3793,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:39:58 GMT + - Wed, 20 May 2026 09:36:38 GMT Pragma: - no-cache RequestId: - - 60d29784-694b-4dcf-9fd1-8c7390197712 + - 22346094-1d89-43d0-a4cc-cd72b15d340d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3859,9 +3825,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/93eb3596-2c8f-4aa4-be02-d3420853704e + uri: https://api.fabric.microsoft.com/v1/workspaces/5389187e-90dc-42d8-b7af-a37dfe3e8640 response: body: string: '' @@ -3877,11 +3843,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:39:59 GMT + - Wed, 20 May 2026 09:36:38 GMT Pragma: - no-cache RequestId: - - afdb9ea4-7deb-4685-bcd5-32eda43d0dee + - 322491dc-f75e-4ff6-8bef-11859f1fb503 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_from_local_recursive_unsupported.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_from_local_recursive_unsupported.yaml index f6dd4b12f..09280c1ce 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_from_local_recursive_unsupported.yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_from_local_recursive_unsupported.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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:03 GMT + - Wed, 20 May 2026 09:01:39 GMT Pragma: - no-cache RequestId: - - de212870-98a8-4fd4-983b-5859d149bb7a + - ffd5af1e-06be-4737-8625-dae26d2e727e 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:04 GMT + - Wed, 20 May 2026 09:01:39 GMT Pragma: - no-cache RequestId: - - 830b6a15-41e6-414a-b050-4c785fe631b1 + - 825213cb-8978-4943-962e-b0ac171111fc 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:04 GMT + - Wed, 20 May 2026 09:01:39 GMT Pragma: - no-cache RequestId: - - 170473f4-5308-4141-951a-078786578782 + - 3a2f33b0-be07-4afc-b890-5df8c84ba5a9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -156,18 +157,16 @@ interactions: - keep-alive Content-Length: - '74' - 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/lakehouses response: body: - string: '{"id": "6d6316b7-9fc5-4982-b3be-bd88df335e52", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}' + string: '{"id": "6ed40638-3d41-43b8-b9ac-064e9885744f", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +175,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '157' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:07 GMT + - Wed, 20 May 2026 09:01:43 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 2e0ba51a-d84b-47a5-9415-f9d64916582c + - e9c05aab-69cb-4b70-b18b-d401a6fffddf 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:08 GMT + - Wed, 20 May 2026 09:01:43 GMT Pragma: - no-cache RequestId: - - 2ad1f27f-e193-4019-bcc7-65f57fc3cb76 + - 25388e77-48d1-4cde-96ed-626580d11d69 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "6d6316b7-9fc5-4982-b3be-bd88df335e52", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "6ed40638-3d41-43b8-b9ac-064e9885744f", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +277,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '179' + - '168' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:08 GMT + - Wed, 20 May 2026 09:01:44 GMT Pragma: - no-cache RequestId: - - 737b81de-c4d6-47c5-a32e-99c9d5ec45ae + - 78a23091-1142-4235-8fb9-154f807dadfc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -312,14 +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 response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:10 GMT + - Wed, 20 May 2026 09:01:45 GMT Pragma: - no-cache RequestId: - - e08a5fde-9b3d-4f23-a2b5-4e2858f20ffc + - 31d2630e-042f-4137-b56e-c86f799ab91e 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.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "6d6316b7-9fc5-4982-b3be-bd88df335e52", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "6ed40638-3d41-43b8-b9ac-064e9885744f", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -378,15 +377,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '179' + - '168' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:11 GMT + - Wed, 20 May 2026 09:01:46 GMT Pragma: - no-cache RequestId: - - c8ca4f03-1afd-4e14-ba8b-8ee9aeaf24da + - f4ebdf15-9cac-4ec9-bbd7-52a8b5970d30 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -414,9 +413,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items/6d6316b7-9fc5-4982-b3be-bd88df335e52 + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items/6ed40638-3d41-43b8-b9ac-064e9885744f response: body: string: '' @@ -432,11 +431,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:46:11 GMT + - Wed, 20 May 2026 09:01:47 GMT Pragma: - no-cache RequestId: - - c9780798-f2fa-4f1a-bd40-cdf02a4c1619 + - a6f78384-8a04-49a4-98e9-9eead3aeaf9b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_from_onelake_recursive_unsupported.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_from_onelake_recursive_unsupported.yaml index 4a75b924a..3f356d2cd 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_from_onelake_recursive_unsupported.yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_from_onelake_recursive_unsupported.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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:38 GMT + - Wed, 20 May 2026 09:00:05 GMT Pragma: - no-cache RequestId: - - a7234d27-b84e-4212-949c-24ad1267df06 + - 40b2f33b-64be-47cb-8053-c39194cee1f3 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:39 GMT + - Wed, 20 May 2026 09:00:06 GMT Pragma: - no-cache RequestId: - - 1f94a77c-7648-483c-9625-70c89b0c618f + - f2b44197-7bbe-40ea-ad05-bd28437931b2 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:40 GMT + - Wed, 20 May 2026 09:00:07 GMT Pragma: - no-cache RequestId: - - 8ed29525-5483-44d0-8574-f69478e2dfc0 + - b86c8c42-4400-4a3d-88ee-3458c2f1dd48 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -156,18 +157,16 @@ interactions: - keep-alive Content-Length: - '74' - 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/lakehouses response: body: - string: '{"id": "bfebde03-6387-45cc-b29e-1492d6f16508", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}' + string: '{"id": "94fdff66-2c62-434d-b776-8abc16bba8a0", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +175,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:43 GMT + - Wed, 20 May 2026 09:00:10 GMT ETag: - '""' Pragma: - no-cache RequestId: - - fa8196d0-1a63-430f-bd76-a75f4c529a5d + - 7e3b2b6d-32cf-4178-91fe-fea27d995bad 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:44 GMT + - Wed, 20 May 2026 09:00:11 GMT Pragma: - no-cache RequestId: - - 61576702-0773-47a2-a56b-e275aaaccc97 + - 3a8a88d7-1fd6-4d68-b2fc-aebafb5c5e93 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "bfebde03-6387-45cc-b29e-1492d6f16508", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "94fdff66-2c62-434d-b776-8abc16bba8a0", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +277,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '167' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:45 GMT + - Wed, 20 May 2026 09:00:12 GMT Pragma: - no-cache RequestId: - - be94c987-cffa-4a3e-83fa-b7828602c727 + - 5822fe73-f580-41bb-837d-016a7bbee922 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.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "bfebde03-6387-45cc-b29e-1492d6f16508", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "94fdff66-2c62-434d-b776-8abc16bba8a0", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -328,15 +326,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '167' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:46 GMT + - Wed, 20 May 2026 09:00:14 GMT Pragma: - no-cache RequestId: - - e1c92233-649f-4ccc-b6b8-878687777ffc + - 1eb8678c-d12e-4ab1-aa98-9d1067b46bf3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -361,18 +359,16 @@ interactions: - keep-alive Content-Length: - '74' - 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/lakehouses response: body: - string: '{"id": "d009bff7-2d71-43eb-b5bd-a2278f6bbece", "type": "Lakehouse", - "displayName": "fabcli000002", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}' + string: '{"id": "65c45d86-4167-4d89-a1d5-4eaa80f2412b", "type": "Lakehouse", + "displayName": "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -381,17 +377,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:48 GMT + - Wed, 20 May 2026 09:00:16 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 5833ccef-1d39-4833-8e07-b4c8d0c50477 + - 705fa441-9f35-441b-a1f2-1621b799408b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -417,14 +413,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -433,15 +430,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:49 GMT + - Wed, 20 May 2026 09:00:17 GMT Pragma: - no-cache RequestId: - - 72cb9aca-f4b7-411e-a41c-53d7db79d397 + - 7841f71b-ad6f-472b-b25c-9d66af58315a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -467,15 +464,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "bfebde03-6387-45cc-b29e-1492d6f16508", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, {"id": "d009bff7-2d71-43eb-b5bd-a2278f6bbece", - "type": "Lakehouse", "displayName": "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "94fdff66-2c62-434d-b776-8abc16bba8a0", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "65c45d86-4167-4d89-a1d5-4eaa80f2412b", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -484,15 +481,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '223' + - '212' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:49 GMT + - Wed, 20 May 2026 09:00:19 GMT Pragma: - no-cache RequestId: - - d01bed36-b056-41fb-8c54-39a213a8bea0 + - cc0984bd-175c-40fe-918c-0ac5e0c9d7d6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -518,14 +515,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -534,15 +532,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:50 GMT + - Wed, 20 May 2026 09:00:19 GMT Pragma: - no-cache RequestId: - - dc9e29e4-5550-42ec-91e9-acfb72965a91 + - da3a7a3c-bf2e-4a7a-b5e3-ddff1af8136c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -568,15 +566,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "bfebde03-6387-45cc-b29e-1492d6f16508", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, {"id": "d009bff7-2d71-43eb-b5bd-a2278f6bbece", - "type": "Lakehouse", "displayName": "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "94fdff66-2c62-434d-b776-8abc16bba8a0", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "65c45d86-4167-4d89-a1d5-4eaa80f2412b", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -585,15 +583,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '223' + - '212' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:51 GMT + - Wed, 20 May 2026 09:00:21 GMT Pragma: - no-cache RequestId: - - 8b785ce9-ac69-4bb8-b552-c8eeab119993 + - deb862be-59fc-4688-b297-32feea987007 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -619,14 +617,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -635,15 +634,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:51 GMT + - Wed, 20 May 2026 09:00:21 GMT Pragma: - no-cache RequestId: - - 826c9231-ac3c-4e75-82f5-c4c6d1e6ed28 + - 7796c2ea-7240-48c7-97ea-228428e8352f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -669,15 +668,17 @@ 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "bfebde03-6387-45cc-b29e-1492d6f16508", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, {"id": "d009bff7-2d71-43eb-b5bd-a2278f6bbece", - "type": "Lakehouse", "displayName": "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "75898bd5-e2a8-4e7a-bfd8-0e29f4f1970e", "type": "SQLEndpoint", + "displayName": "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "94fdff66-2c62-434d-b776-8abc16bba8a0", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "65c45d86-4167-4d89-a1d5-4eaa80f2412b", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -686,15 +687,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '223' + - '252' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:52 GMT + - Wed, 20 May 2026 09:00:22 GMT Pragma: - no-cache RequestId: - - a862d1fb-2c17-4c06-881b-53a22814a78a + - f578b155-510b-464e-8cda-f5e36803126b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -722,9 +723,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items/d009bff7-2d71-43eb-b5bd-a2278f6bbece + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items/65c45d86-4167-4d89-a1d5-4eaa80f2412b response: body: string: '' @@ -740,11 +741,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:44:53 GMT + - Wed, 20 May 2026 09:00:23 GMT Pragma: - no-cache RequestId: - - 4d0365e2-fd4a-4c41-af9a-094099b6a54a + - 1c10b98c-1feb-4cb1-b276-0fc211f09665 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -770,14 +771,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -786,15 +788,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:53 GMT + - Wed, 20 May 2026 09:00:24 GMT Pragma: - no-cache RequestId: - - c7eb1129-9128-46ac-8af4-2fae2db8e482 + - 55a388e9-0284-4be9-816d-e5e25cfa6fcc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -820,14 +822,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "bfebde03-6387-45cc-b29e-1492d6f16508", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "bdc5cae6-167f-42e6-afda-1cd8b59865ea", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "94fdff66-2c62-434d-b776-8abc16bba8a0", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -836,15 +839,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '214' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:54 GMT + - Wed, 20 May 2026 09:00:24 GMT Pragma: - no-cache RequestId: - - c909ebbe-8006-47a3-9994-e5284a349157 + - 3aa7ed73-d238-4e21-8cfb-9ea79dbf2906 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -872,9 +875,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items/bfebde03-6387-45cc-b29e-1492d6f16508 + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items/94fdff66-2c62-434d-b776-8abc16bba8a0 response: body: string: '' @@ -890,11 +893,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:44:56 GMT + - Wed, 20 May 2026 09:00:25 GMT Pragma: - no-cache RequestId: - - 2cb01745-6a20-403a-aa47-de697f80c033 + - 263e64d4-4649-4b07-a59d-876bf6f4fdeb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_existing_name_different_location_with_block_on_path_collision_failure.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_existing_name_different_location_with_block_on_path_collision_failure.yaml index 154d77905..e6bdf123f 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_existing_name_different_location_with_block_on_path_collision_failure.yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_existing_name_different_location_with_block_on_path_collision_failure.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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:12:39 GMT + - Wed, 20 May 2026 09:19:09 GMT Pragma: - no-cache RequestId: - - 3d646010-0312-470a-abfc-85c65f0b6d44 + - 047486dd-60ba-44a2-b569-34a5f7885402 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:12:40 GMT + - Wed, 20 May 2026 09:19:10 GMT Pragma: - no-cache RequestId: - - 8cd0fa65-b4d3-4641-8e77-9eaf50a6c921 + - 45e126db-0f35-42ac-a233-79afdba9e55a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,7 +113,7 @@ 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/capacities response: @@ -131,11 +133,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:12:44 GMT + - Wed, 20 May 2026 09:19:16 GMT Pragma: - no-cache RequestId: - - f49f56fd-edf6-4c65-a6e1-ec84bef7d2e2 + - f5b8f042-b7b5-4e67-885f-4f1bcd1ad56c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -160,16 +162,16 @@ interactions: - keep-alive Content-Length: - '89' - 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 response: body: - string: '{"id": "06eac17b-a935-4074-aaba-4984997c6704", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -178,17 +180,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '154' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:12:51 GMT + - Wed, 20 May 2026 09:19:23 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/06eac17b-a935-4074-aaba-4984997c6704 + - https://api.fabric.microsoft.com/v1/workspaces/83d27cc5-3f52-4f4e-8a3d-63555f5d780d Pragma: - no-cache RequestId: - - aa598f3f-efda-4d1c-9f9a-b9bec21a1af4 + - b65ebf1e-1b52-4cd2-a8cf-0940a129473d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,15 +216,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "06eac17b-a935-4074-aaba-4984997c6704", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -231,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2841' + - '2658' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:12:52 GMT + - Wed, 20 May 2026 09:19:23 GMT Pragma: - no-cache RequestId: - - ae747753-e81a-485c-ad1a-ff5a69a0c416 + - 0312946c-74c9-48ff-bd31-85a5447ee1b8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,15 +269,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "06eac17b-a935-4074-aaba-4984997c6704", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -282,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2841' + - '2658' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:12:52 GMT + - Wed, 20 May 2026 09:19:25 GMT Pragma: - no-cache RequestId: - - 2ae67d2f-bb62-412a-b5d9-bb85ac2e7277 + - 99f06632-7de0-43e1-87dc-176ef931073e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,7 +322,7 @@ 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/capacities response: @@ -332,15 +338,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '429' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:12:56 GMT + - Wed, 20 May 2026 09:19:30 GMT Pragma: - no-cache RequestId: - - 00831512-6713-4f28-8479-a1b4126fad57 + - e460b9c2-d728-4d3f-8ab2-d8d89033d749 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -365,16 +371,16 @@ interactions: - keep-alive Content-Length: - '89' - 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 response: body: - string: '{"id": "6558b0ea-37f3-46fc-8905-ab94f315b5da", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "541d978c-5d0a-4e26-a93b-2346895d4b49", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -383,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '153' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:13:03 GMT + - Wed, 20 May 2026 09:19:36 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/6558b0ea-37f3-46fc-8905-ab94f315b5da + - https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49 Pragma: - no-cache RequestId: - - a75ef8b8-b0ac-42e7-988c-e501cffc96b6 + - 97e7e303-e2b8-4f83-81dc-76d132f5389a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -419,16 +425,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "06eac17b-a935-4074-aaba-4984997c6704", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "6558b0ea-37f3-46fc-8905-ab94f315b5da", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "541d978c-5d0a-4e26-a93b-2346895d4b49", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -437,15 +446,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:13:04 GMT + - Wed, 20 May 2026 09:19:36 GMT Pragma: - no-cache RequestId: - - 2bd77aa7-1149-4b58-9bbe-4ea3840aa54b + - bd746cf0-a3ae-4d5f-bdf4-117c29cde413 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -471,9 +480,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/06eac17b-a935-4074-aaba-4984997c6704/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/83d27cc5-3f52-4f4e-8a3d-63555f5d780d/folders?recursive=True response: body: string: '{"value": []}' @@ -489,11 +498,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:13:05 GMT + - Wed, 20 May 2026 09:19:37 GMT Pragma: - no-cache RequestId: - - 0b31837e-2a42-4b32-9797-a5a9255579fc + - 6d611647-ed00-4cbc-94cd-153893dea09a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -519,9 +528,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/06eac17b-a935-4074-aaba-4984997c6704/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/83d27cc5-3f52-4f4e-8a3d-63555f5d780d/folders?recursive=True response: body: string: '{"value": []}' @@ -537,11 +546,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:13:05 GMT + - Wed, 20 May 2026 09:19:39 GMT Pragma: - no-cache RequestId: - - 00d20a14-f8c0-4181-abe0-49df242c50f3 + - 9c3791a7-232f-4f1c-824e-6c081637642a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -565,17 +574,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/06eac17b-a935-4074-aaba-4984997c6704/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/83d27cc5-3f52-4f4e-8a3d-63555f5d780d/folders response: body: - string: '{"id": "d381ab60-87eb-427c-9423-94bace295d79", "displayName": "fabcli000003", - "workspaceId": "06eac17b-a935-4074-aaba-4984997c6704"}' + string: '{"id": "6e6533ef-ba28-4853-ae3f-301d046c2954", "displayName": "fabcli000003", + "workspaceId": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -588,13 +597,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:13:06 GMT + - Wed, 20 May 2026 09:19:39 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/06eac17b-a935-4074-aaba-4984997c6704/folders/d381ab60-87eb-427c-9423-94bace295d79 + - https://api.fabric.microsoft.com/v1/workspaces/83d27cc5-3f52-4f4e-8a3d-63555f5d780d/folders/6e6533ef-ba28-4853-ae3f-301d046c2954 Pragma: - no-cache RequestId: - - db66c07c-0509-4592-baf0-0515541cfe99 + - b2bac6bc-19a4-46c5-a3cb-373299fbf87f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -620,16 +629,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "06eac17b-a935-4074-aaba-4984997c6704", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "6558b0ea-37f3-46fc-8905-ab94f315b5da", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "541d978c-5d0a-4e26-a93b-2346895d4b49", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -638,15 +650,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:13:07 GMT + - Wed, 20 May 2026 09:19:40 GMT Pragma: - no-cache RequestId: - - 3d563abb-74d6-4610-9b84-c0ea15921d14 + - a49a227b-66bb-4d7e-8517-615e987a8330 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -672,9 +684,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/6558b0ea-37f3-46fc-8905-ab94f315b5da/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/folders?recursive=True response: body: string: '{"value": []}' @@ -690,11 +702,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:13:08 GMT + - Wed, 20 May 2026 09:19:41 GMT Pragma: - no-cache RequestId: - - fe118e26-ac1e-4d54-b784-8a087d9c0aeb + - 00cb4d08-359d-4909-8e2a-71b5a0436bd6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -720,9 +732,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/6558b0ea-37f3-46fc-8905-ab94f315b5da/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/folders?recursive=True response: body: string: '{"value": []}' @@ -738,11 +750,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:13:09 GMT + - Wed, 20 May 2026 09:19:42 GMT Pragma: - no-cache RequestId: - - 6d014186-4625-47d0-a716-f340a61522bf + - 92385e90-01ad-4202-ba91-71f0848803f3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -766,17 +778,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/6558b0ea-37f3-46fc-8905-ab94f315b5da/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/folders response: body: - string: '{"id": "3f9e4b85-13e3-401d-909d-a091e08e6cdd", "displayName": "fabcli000004", - "workspaceId": "6558b0ea-37f3-46fc-8905-ab94f315b5da"}' + string: '{"id": "225fb834-e2ae-479b-b951-99b94e6f5e17", "displayName": "fabcli000004", + "workspaceId": "541d978c-5d0a-4e26-a93b-2346895d4b49"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -785,17 +797,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '133' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:13:09 GMT + - Wed, 20 May 2026 09:19:42 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/6558b0ea-37f3-46fc-8905-ab94f315b5da/folders/3f9e4b85-13e3-401d-909d-a091e08e6cdd + - https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/folders/225fb834-e2ae-479b-b951-99b94e6f5e17 Pragma: - no-cache RequestId: - - 752ad387-ea1a-4b98-93ad-ee13b06506d0 + - 4a55e691-3922-411d-8941-a7dcd75054e1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -821,16 +833,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "06eac17b-a935-4074-aaba-4984997c6704", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "6558b0ea-37f3-46fc-8905-ab94f315b5da", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "541d978c-5d0a-4e26-a93b-2346895d4b49", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -839,15 +854,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:13:10 GMT + - Wed, 20 May 2026 09:19:43 GMT Pragma: - no-cache RequestId: - - 7f29a307-f1c8-4ad7-8f5f-da654287eea7 + - fbdb0b34-bc40-4d24-a398-10582cce1a2d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -873,9 +888,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/06eac17b-a935-4074-aaba-4984997c6704/items + uri: https://api.fabric.microsoft.com/v1/workspaces/83d27cc5-3f52-4f4e-8a3d-63555f5d780d/items response: body: string: '{"value": []}' @@ -891,11 +906,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:13:10 GMT + - Wed, 20 May 2026 09:19:44 GMT Pragma: - no-cache RequestId: - - 777951d4-86ef-44f5-9ea9-b178231b3069 + - 8816e0f6-ebce-4f65-b3a3-ac2968387400 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -921,9 +936,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/06eac17b-a935-4074-aaba-4984997c6704/items + uri: https://api.fabric.microsoft.com/v1/workspaces/83d27cc5-3f52-4f4e-8a3d-63555f5d780d/items response: body: string: '{"value": []}' @@ -939,11 +954,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:13:11 GMT + - Wed, 20 May 2026 09:19:45 GMT Pragma: - no-cache RequestId: - - 82e5284f-b97c-4c6e-865c-b88a16240ea5 + - af104439-7dac-4bd2-92f0-8c2522d7ee89 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -958,7 +973,9 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000005", "type": "Notebook", "folderId": null, "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", "payloadType": "InlineBase64"}]}}' + body: '{"displayName": "fabcli000005", "type": "Notebook", "folderId": null, "definition": + {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", + "payloadType": "InlineBase64"}]}}' headers: Accept: - '*/*' @@ -968,13 +985,12 @@ interactions: - keep-alive Content-Length: - '731' - 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/06eac17b-a935-4074-aaba-4984997c6704/notebooks + uri: https://api.fabric.microsoft.com/v1/workspaces/83d27cc5-3f52-4f4e-8a3d-63555f5d780d/notebooks response: body: string: 'null' @@ -990,15 +1006,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:13:13 GMT + - Wed, 20 May 2026 09:19:47 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/75c4851f-7747-47ef-8cab-57b7fb0db383 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1538c261-ede7-4bb7-abb2-dddea8c03c58 Pragma: - no-cache RequestId: - - 37275b78-cb06-4c5d-b609-c9f82c66fda1 + - 03346537-e0f6-4186-b1ab-819021997900 Retry-After: - '20' Strict-Transport-Security: @@ -1012,7 +1028,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 75c4851f-7747-47ef-8cab-57b7fb0db383 + - 1538c261-ede7-4bb7-abb2-dddea8c03c58 status: code: 202 message: Accepted @@ -1028,13 +1044,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/75c4851f-7747-47ef-8cab-57b7fb0db383 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1538c261-ede7-4bb7-abb2-dddea8c03c58 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:13:12.7023819", - "lastUpdatedTimeUtc": "2026-02-06T08:13:14.3904671", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:19:46.5850539", + "lastUpdatedTimeUtc": "2026-05-20T09:19:50.2084901", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1048,13 +1064,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:13:34 GMT + - Wed, 20 May 2026 09:20:07 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/75c4851f-7747-47ef-8cab-57b7fb0db383/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1538c261-ede7-4bb7-abb2-dddea8c03c58/result Pragma: - no-cache RequestId: - - d2c363c5-0267-4b50-b045-e3bed7bbc181 + - 626ee7f9-5df9-4d66-9615-fae3b4f79a7b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1062,7 +1078,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 75c4851f-7747-47ef-8cab-57b7fb0db383 + - 1538c261-ede7-4bb7-abb2-dddea8c03c58 status: code: 200 message: OK @@ -1078,14 +1094,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/75c4851f-7747-47ef-8cab-57b7fb0db383/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1538c261-ede7-4bb7-abb2-dddea8c03c58/result response: body: - string: '{"id": "4a9f2d42-b08e-448f-afc1-183097f41abc", "type": "Notebook", - "displayName": "fabcli000005", "workspaceId": - "06eac17b-a935-4074-aaba-4984997c6704"}' + string: '{"id": "8085b4c7-24b4-464c-bc1d-0a4446b13841", "type": "Notebook", + "displayName": "fabcli000005", "description": "", "workspaceId": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d"}' headers: Access-Control-Expose-Headers: - RequestId @@ -1096,11 +1111,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 08:13:35 GMT + - Wed, 20 May 2026 09:20:09 GMT Pragma: - no-cache RequestId: - - 85654b13-d8a9-4122-b028-1c83ce311eb7 + - ba2c7c2a-2e93-4c93-864f-3e8fa001f769 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1124,16 +1139,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "06eac17b-a935-4074-aaba-4984997c6704", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "6558b0ea-37f3-46fc-8905-ab94f315b5da", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "541d978c-5d0a-4e26-a93b-2346895d4b49", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1142,15 +1160,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:13:37 GMT + - Wed, 20 May 2026 09:20:09 GMT Pragma: - no-cache RequestId: - - 478a3483-a624-4173-abc6-10b5babf8b8e + - 20c69248-71bd-43d4-b7e4-5ad53f248f4e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1176,13 +1194,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/6558b0ea-37f3-46fc-8905-ab94f315b5da/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/folders?recursive=True response: body: - string: '{"value": [{"id": "3f9e4b85-13e3-401d-909d-a091e08e6cdd", "displayName": - "fabcli000004", "workspaceId": "6558b0ea-37f3-46fc-8905-ab94f315b5da"}]}' + string: '{"value": [{"id": "225fb834-e2ae-479b-b951-99b94e6f5e17", "displayName": + "fabcli000004", "workspaceId": "541d978c-5d0a-4e26-a93b-2346895d4b49"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1191,15 +1209,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:13:38 GMT + - Wed, 20 May 2026 09:20:10 GMT Pragma: - no-cache RequestId: - - 7233bdde-2319-4b88-967f-3937e1a80196 + - e3206010-d1ae-4d7e-8027-43a23c958a68 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1225,9 +1243,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/6558b0ea-37f3-46fc-8905-ab94f315b5da/items + uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/items response: body: string: '{"value": []}' @@ -1243,11 +1261,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:13:39 GMT + - Wed, 20 May 2026 09:20:11 GMT Pragma: - no-cache RequestId: - - 579d5bbe-7f89-4855-ad87-43166857ab8b + - a9bbb853-80d4-4d25-b966-a15882300da9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1273,9 +1291,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/6558b0ea-37f3-46fc-8905-ab94f315b5da/items + uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/items response: body: string: '{"value": []}' @@ -1291,11 +1309,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:13:39 GMT + - Wed, 20 May 2026 09:20:12 GMT Pragma: - no-cache RequestId: - - f017a981-db69-4167-a303-6d211e5a78e7 + - 79ea6797-e625-43ab-956d-4c5c2f6d049e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1310,9 +1328,8 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000005", "type": - "Notebook", "folderId": "3f9e4b85-13e3-401d-909d-a091e08e6cdd", "definition": - {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", + body: '{"displayName": "fabcli000005", "type": "Notebook", "folderId": "225fb834-e2ae-479b-b951-99b94e6f5e17", + "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", "payloadType": "InlineBase64"}]}}' headers: Accept: @@ -1323,13 +1340,12 @@ interactions: - keep-alive Content-Length: - '765' - 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/6558b0ea-37f3-46fc-8905-ab94f315b5da/notebooks + uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/notebooks response: body: string: 'null' @@ -1345,15 +1361,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:13:41 GMT + - Wed, 20 May 2026 09:20:13 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/424ff7a0-8faa-4971-a799-6290792324b7 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a4219f21-4b6f-4d7c-9218-052e6dd310c9 Pragma: - no-cache RequestId: - - 3e23b419-af8e-4c5d-a5b1-424735c0a386 + - 35fb7353-ba33-4831-84b6-c090108e4449 Retry-After: - '20' Strict-Transport-Security: @@ -1367,7 +1383,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 424ff7a0-8faa-4971-a799-6290792324b7 + - a4219f21-4b6f-4d7c-9218-052e6dd310c9 status: code: 202 message: Accepted @@ -1383,13 +1399,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/424ff7a0-8faa-4971-a799-6290792324b7 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a4219f21-4b6f-4d7c-9218-052e6dd310c9 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:13:41.2406298", - "lastUpdatedTimeUtc": "2026-02-06T08:13:42.8343897", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:20:13.5883325", + "lastUpdatedTimeUtc": "2026-05-20T09:20:15.1365548", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1403,13 +1419,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:03 GMT + - Wed, 20 May 2026 09:20:34 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/424ff7a0-8faa-4971-a799-6290792324b7/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a4219f21-4b6f-4d7c-9218-052e6dd310c9/result Pragma: - no-cache RequestId: - - f3b74303-068b-4881-8a24-3d1ba94ddabe + - 5fa29054-c49e-4aaa-9438-2b48d0f9aff6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1417,7 +1433,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 424ff7a0-8faa-4971-a799-6290792324b7 + - a4219f21-4b6f-4d7c-9218-052e6dd310c9 status: code: 200 message: OK @@ -1433,14 +1449,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/424ff7a0-8faa-4971-a799-6290792324b7/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a4219f21-4b6f-4d7c-9218-052e6dd310c9/result response: body: - string: '{"id": "ffe7200b-1cb2-4931-98fa-7a39e082c364", "type": "Notebook", - "displayName": "fabcli000005", "workspaceId": - "6558b0ea-37f3-46fc-8905-ab94f315b5da", "folderId": "3f9e4b85-13e3-401d-909d-a091e08e6cdd"}' + string: '{"id": "f4a0d098-e6b4-470b-b73e-1c99689874d3", "type": "Notebook", + "displayName": "fabcli000005", "description": "", "workspaceId": "541d978c-5d0a-4e26-a93b-2346895d4b49", + "folderId": "225fb834-e2ae-479b-b951-99b94e6f5e17"}' headers: Access-Control-Expose-Headers: - RequestId @@ -1451,11 +1467,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 08:14:04 GMT + - Wed, 20 May 2026 09:20:35 GMT Pragma: - no-cache RequestId: - - 46ff083c-8457-4950-b56d-117d7ee50b9a + - aa2f6849-1ac1-4435-8273-edc59d999a52 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1479,16 +1495,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "06eac17b-a935-4074-aaba-4984997c6704", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "6558b0ea-37f3-46fc-8905-ab94f315b5da", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "541d978c-5d0a-4e26-a93b-2346895d4b49", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1497,15 +1516,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:05 GMT + - Wed, 20 May 2026 09:20:36 GMT Pragma: - no-cache RequestId: - - 0e9de9b3-1c1c-4208-bbc2-71077dccda66 + - f31ba0d3-6554-4125-860e-a0fb72fe8492 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1531,14 +1550,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/06eac17b-a935-4074-aaba-4984997c6704/items + uri: https://api.fabric.microsoft.com/v1/workspaces/83d27cc5-3f52-4f4e-8a3d-63555f5d780d/items response: body: - string: '{"value": [{"id": "4a9f2d42-b08e-448f-afc1-183097f41abc", "type": "Notebook", - "displayName": "fabcli000005", "workspaceId": - "06eac17b-a935-4074-aaba-4984997c6704"}]}' + string: '{"value": [{"id": "8085b4c7-24b4-464c-bc1d-0a4446b13841", "type": "Notebook", + "displayName": "fabcli000005", "description": "", "workspaceId": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1547,15 +1565,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:06 GMT + - Wed, 20 May 2026 09:20:37 GMT Pragma: - no-cache RequestId: - - d19ad972-7d1a-4abc-b91f-91ac4f16e657 + - 2577e407-e0eb-4ad7-8010-81f98af04dee Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1581,16 +1599,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "06eac17b-a935-4074-aaba-4984997c6704", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "6558b0ea-37f3-46fc-8905-ab94f315b5da", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "541d978c-5d0a-4e26-a93b-2346895d4b49", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1599,15 +1620,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:07 GMT + - Wed, 20 May 2026 09:20:38 GMT Pragma: - no-cache RequestId: - - d5f427b5-ddfe-499e-91d6-abbf57251227 + - e0d375a2-eb35-473d-9c61-dcd552246ba2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1633,14 +1654,14 @@ 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/6558b0ea-37f3-46fc-8905-ab94f315b5da/items + uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/items response: body: - string: '{"value": [{"id": "ffe7200b-1cb2-4931-98fa-7a39e082c364", "type": "Notebook", - "displayName": "fabcli000005", "workspaceId": - "6558b0ea-37f3-46fc-8905-ab94f315b5da", "folderId": "3f9e4b85-13e3-401d-909d-a091e08e6cdd"}]}' + string: '{"value": [{"id": "f4a0d098-e6b4-470b-b73e-1c99689874d3", "type": "Notebook", + "displayName": "fabcli000005", "description": "", "workspaceId": "541d978c-5d0a-4e26-a93b-2346895d4b49", + "folderId": "225fb834-e2ae-479b-b951-99b94e6f5e17"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1649,15 +1670,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '208' + - '198' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:07 GMT + - Wed, 20 May 2026 09:20:38 GMT Pragma: - no-cache RequestId: - - f2796d6c-e65f-42bd-be1e-77ac840175a6 + - 8638311d-940f-4e75-9ca2-3b3155e1cfd8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1683,13 +1704,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/6558b0ea-37f3-46fc-8905-ab94f315b5da/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/folders?recursive=True response: body: - string: '{"value": [{"id": "3f9e4b85-13e3-401d-909d-a091e08e6cdd", "displayName": - "fabcli000004", "workspaceId": "6558b0ea-37f3-46fc-8905-ab94f315b5da"}]}' + string: '{"value": [{"id": "225fb834-e2ae-479b-b951-99b94e6f5e17", "displayName": + "fabcli000004", "workspaceId": "541d978c-5d0a-4e26-a93b-2346895d4b49"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1698,15 +1719,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:09 GMT + - Wed, 20 May 2026 09:20:39 GMT Pragma: - no-cache RequestId: - - 3c697520-042f-4446-ac0b-545cd1939126 + - dcc528eb-16db-44f9-9c0d-c1aa24b194d5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1732,14 +1753,14 @@ 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/6558b0ea-37f3-46fc-8905-ab94f315b5da/items + uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/items response: body: - string: '{"value": [{"id": "ffe7200b-1cb2-4931-98fa-7a39e082c364", "type": "Notebook", - "displayName": "fabcli000005", "workspaceId": - "6558b0ea-37f3-46fc-8905-ab94f315b5da", "folderId": "3f9e4b85-13e3-401d-909d-a091e08e6cdd"}]}' + string: '{"value": [{"id": "f4a0d098-e6b4-470b-b73e-1c99689874d3", "type": "Notebook", + "displayName": "fabcli000005", "description": "", "workspaceId": "541d978c-5d0a-4e26-a93b-2346895d4b49", + "folderId": "225fb834-e2ae-479b-b951-99b94e6f5e17"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1748,15 +1769,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '208' + - '198' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:09 GMT + - Wed, 20 May 2026 09:20:41 GMT Pragma: - no-cache RequestId: - - cd1e1dd8-dd61-4242-b0e3-d6f3421e5f7f + - 29ae1c5b-0f4e-4c5c-8a08-d94c6c340da7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1782,13 +1803,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/6558b0ea-37f3-46fc-8905-ab94f315b5da/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/folders?recursive=True response: body: - string: '{"value": [{"id": "3f9e4b85-13e3-401d-909d-a091e08e6cdd", "displayName": - "fabcli000004", "workspaceId": "6558b0ea-37f3-46fc-8905-ab94f315b5da"}]}' + string: '{"value": [{"id": "225fb834-e2ae-479b-b951-99b94e6f5e17", "displayName": + "fabcli000004", "workspaceId": "541d978c-5d0a-4e26-a93b-2346895d4b49"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1797,15 +1818,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:10 GMT + - Wed, 20 May 2026 09:20:42 GMT Pragma: - no-cache RequestId: - - c3847df0-1afa-4021-8567-83e453336fdb + - 76c7666d-9ce8-43b3-a369-13c65c83e8d5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1831,16 +1852,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "06eac17b-a935-4074-aaba-4984997c6704", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "6558b0ea-37f3-46fc-8905-ab94f315b5da", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "541d978c-5d0a-4e26-a93b-2346895d4b49", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1849,15 +1873,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:11 GMT + - Wed, 20 May 2026 09:20:42 GMT Pragma: - no-cache RequestId: - - c1f184c7-1200-4335-88d8-98e6d245d5cd + - a90ec008-d52f-48c1-8837-6e0d29f072b2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1883,13 +1907,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/6558b0ea-37f3-46fc-8905-ab94f315b5da/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/folders?recursive=True response: body: - string: '{"value": [{"id": "3f9e4b85-13e3-401d-909d-a091e08e6cdd", "displayName": - "fabcli000004", "workspaceId": "6558b0ea-37f3-46fc-8905-ab94f315b5da"}]}' + string: '{"value": [{"id": "225fb834-e2ae-479b-b951-99b94e6f5e17", "displayName": + "fabcli000004", "workspaceId": "541d978c-5d0a-4e26-a93b-2346895d4b49"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1898,15 +1922,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:11 GMT + - Wed, 20 May 2026 09:20:43 GMT Pragma: - no-cache RequestId: - - 3ef7d485-a6a3-4124-ac27-8de9951cb138 + - 1cb0d40e-c970-43c6-a90d-51808a94e5af Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1932,14 +1956,14 @@ 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/6558b0ea-37f3-46fc-8905-ab94f315b5da/items + uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/items response: body: - string: '{"value": [{"id": "ffe7200b-1cb2-4931-98fa-7a39e082c364", "type": "Notebook", - "displayName": "fabcli000005", "workspaceId": - "6558b0ea-37f3-46fc-8905-ab94f315b5da", "folderId": "3f9e4b85-13e3-401d-909d-a091e08e6cdd"}]}' + string: '{"value": [{"id": "f4a0d098-e6b4-470b-b73e-1c99689874d3", "type": "Notebook", + "displayName": "fabcli000005", "description": "", "workspaceId": "541d978c-5d0a-4e26-a93b-2346895d4b49", + "folderId": "225fb834-e2ae-479b-b951-99b94e6f5e17"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1948,15 +1972,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '208' + - '198' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:12 GMT + - Wed, 20 May 2026 09:20:44 GMT Pragma: - no-cache RequestId: - - a6d6c5c3-d065-4859-931c-5ff90dbc2317 + - f4ba5bf7-ef47-4f67-870e-e94a0fe2c4b2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1982,13 +2006,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/6558b0ea-37f3-46fc-8905-ab94f315b5da/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/folders?recursive=True response: body: - string: '{"value": [{"id": "3f9e4b85-13e3-401d-909d-a091e08e6cdd", "displayName": - "fabcli000004", "workspaceId": "6558b0ea-37f3-46fc-8905-ab94f315b5da"}]}' + string: '{"value": [{"id": "225fb834-e2ae-479b-b951-99b94e6f5e17", "displayName": + "fabcli000004", "workspaceId": "541d978c-5d0a-4e26-a93b-2346895d4b49"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1997,15 +2021,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:13 GMT + - Wed, 20 May 2026 09:20:45 GMT Pragma: - no-cache RequestId: - - a33a53e5-2f5c-4284-894c-790a6db0e51c + - d2cd72f9-840b-4453-962f-b41b4c9e4d4d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2033,9 +2057,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/6558b0ea-37f3-46fc-8905-ab94f315b5da/items/ffe7200b-1cb2-4931-98fa-7a39e082c364 + uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/items/f4a0d098-e6b4-470b-b73e-1c99689874d3 response: body: string: '' @@ -2051,11 +2075,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:14:14 GMT + - Wed, 20 May 2026 09:20:46 GMT Pragma: - no-cache RequestId: - - 1e994137-94b8-42f9-90c4-0f9d25b423cc + - d0ebae60-9d3b-4e69-b500-a31e19ce668c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2081,16 +2105,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "06eac17b-a935-4074-aaba-4984997c6704", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "6558b0ea-37f3-46fc-8905-ab94f315b5da", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "541d978c-5d0a-4e26-a93b-2346895d4b49", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2099,15 +2126,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:14 GMT + - Wed, 20 May 2026 09:20:47 GMT Pragma: - no-cache RequestId: - - 3fae3972-103e-4686-b2ab-3da2e7bc5365 + - 653d79e6-908d-4ca6-92d0-b7f742cf9f3a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2133,14 +2160,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/06eac17b-a935-4074-aaba-4984997c6704/items + uri: https://api.fabric.microsoft.com/v1/workspaces/83d27cc5-3f52-4f4e-8a3d-63555f5d780d/items response: body: - string: '{"value": [{"id": "4a9f2d42-b08e-448f-afc1-183097f41abc", "type": "Notebook", - "displayName": "fabcli000005", "workspaceId": - "06eac17b-a935-4074-aaba-4984997c6704"}]}' + string: '{"value": [{"id": "8085b4c7-24b4-464c-bc1d-0a4446b13841", "type": "Notebook", + "displayName": "fabcli000005", "description": "", "workspaceId": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2149,15 +2175,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:15 GMT + - Wed, 20 May 2026 09:20:48 GMT Pragma: - no-cache RequestId: - - 6f8aeab2-5337-4bb8-98df-a85b9ff34083 + - f101e0ee-ab52-4fe7-b70b-d3be0cae91c4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2185,9 +2211,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/06eac17b-a935-4074-aaba-4984997c6704/items/4a9f2d42-b08e-448f-afc1-183097f41abc + uri: https://api.fabric.microsoft.com/v1/workspaces/83d27cc5-3f52-4f4e-8a3d-63555f5d780d/items/8085b4c7-24b4-464c-bc1d-0a4446b13841 response: body: string: '' @@ -2203,11 +2229,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:14:17 GMT + - Wed, 20 May 2026 09:20:48 GMT Pragma: - no-cache RequestId: - - 7c449c0f-0440-4218-b7cf-a1fcc0a47b3e + - ac3ea889-91df-4dcf-a60c-3284a42d9aa4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2233,16 +2259,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "06eac17b-a935-4074-aaba-4984997c6704", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "6558b0ea-37f3-46fc-8905-ab94f315b5da", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "541d978c-5d0a-4e26-a93b-2346895d4b49", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2251,15 +2280,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:17 GMT + - Wed, 20 May 2026 09:20:49 GMT Pragma: - no-cache RequestId: - - 7280145a-33b0-4d27-93d4-a11c4d49586c + - 1b052094-aa8b-4777-91eb-4b5335152a0f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2285,13 +2314,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/6558b0ea-37f3-46fc-8905-ab94f315b5da/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/folders?recursive=True response: body: - string: '{"value": [{"id": "3f9e4b85-13e3-401d-909d-a091e08e6cdd", "displayName": - "fabcli000004", "workspaceId": "6558b0ea-37f3-46fc-8905-ab94f315b5da"}]}' + string: '{"value": [{"id": "225fb834-e2ae-479b-b951-99b94e6f5e17", "displayName": + "fabcli000004", "workspaceId": "541d978c-5d0a-4e26-a93b-2346895d4b49"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2300,15 +2329,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '144' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:18 GMT + - Wed, 20 May 2026 09:20:51 GMT Pragma: - no-cache RequestId: - - ebcb5735-c4db-4c67-91b2-b4f89e9ed298 + - 4cac9670-63f1-477c-8b93-2522627d2dde Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2336,9 +2365,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/6558b0ea-37f3-46fc-8905-ab94f315b5da/folders/3f9e4b85-13e3-401d-909d-a091e08e6cdd + uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/folders/225fb834-e2ae-479b-b951-99b94e6f5e17 response: body: string: '' @@ -2354,11 +2383,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:14:18 GMT + - Wed, 20 May 2026 09:20:52 GMT Pragma: - no-cache RequestId: - - 4069f475-6b61-4187-9691-9603a22efa64 + - 0e1a346f-8514-4ac7-b430-60cb5107d271 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2384,16 +2413,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "06eac17b-a935-4074-aaba-4984997c6704", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "6558b0ea-37f3-46fc-8905-ab94f315b5da", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "541d978c-5d0a-4e26-a93b-2346895d4b49", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2402,15 +2434,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:20 GMT + - Wed, 20 May 2026 09:20:52 GMT Pragma: - no-cache RequestId: - - 14efc1b5-4797-4aec-b9c1-6d796cf85cdf + - ab3f364a-66ed-47eb-ad1c-94c2bf1e4abb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2436,13 +2468,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/06eac17b-a935-4074-aaba-4984997c6704/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/83d27cc5-3f52-4f4e-8a3d-63555f5d780d/folders?recursive=True response: body: - string: '{"value": [{"id": "d381ab60-87eb-427c-9423-94bace295d79", "displayName": - "fabcli000003", "workspaceId": "06eac17b-a935-4074-aaba-4984997c6704"}]}' + string: '{"value": [{"id": "6e6533ef-ba28-4853-ae3f-301d046c2954", "displayName": + "fabcli000003", "workspaceId": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2455,11 +2487,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:20 GMT + - Wed, 20 May 2026 09:20:53 GMT Pragma: - no-cache RequestId: - - 9c612845-914e-4f6a-92bc-4f2c2d69329b + - 866bdbcf-2d1f-434d-9100-ab1b839e4ddb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2487,9 +2519,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/06eac17b-a935-4074-aaba-4984997c6704/folders/d381ab60-87eb-427c-9423-94bace295d79 + uri: https://api.fabric.microsoft.com/v1/workspaces/83d27cc5-3f52-4f4e-8a3d-63555f5d780d/folders/6e6533ef-ba28-4853-ae3f-301d046c2954 response: body: string: '' @@ -2505,11 +2537,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:14:21 GMT + - Wed, 20 May 2026 09:20:54 GMT Pragma: - no-cache RequestId: - - f71d166a-2387-4eb8-ab4c-0e94231c7688 + - c829e76b-f433-4bdf-8a04-11060f3df407 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2535,16 +2567,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "06eac17b-a935-4074-aaba-4984997c6704", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "6558b0ea-37f3-46fc-8905-ab94f315b5da", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "83d27cc5-3f52-4f4e-8a3d-63555f5d780d", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "541d978c-5d0a-4e26-a93b-2346895d4b49", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2553,15 +2588,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:22 GMT + - Wed, 20 May 2026 09:20:55 GMT Pragma: - no-cache RequestId: - - 34764f28-bd94-4cd5-b31d-d8c8ee4dab21 + - 7f3f90a1-51f8-40f9-b935-dcba7ae4c157 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2587,9 +2622,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/06eac17b-a935-4074-aaba-4984997c6704/items + uri: https://api.fabric.microsoft.com/v1/workspaces/83d27cc5-3f52-4f4e-8a3d-63555f5d780d/items response: body: string: '{"value": []}' @@ -2605,11 +2640,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:23 GMT + - Wed, 20 May 2026 09:20:55 GMT Pragma: - no-cache RequestId: - - b75b9c30-ca97-44e3-859b-00adf71f7c5b + - ec831c05-f829-465d-bb43-7de17cef84ff Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2637,9 +2672,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/06eac17b-a935-4074-aaba-4984997c6704 + uri: https://api.fabric.microsoft.com/v1/workspaces/83d27cc5-3f52-4f4e-8a3d-63555f5d780d response: body: string: '' @@ -2655,11 +2690,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:14:24 GMT + - Wed, 20 May 2026 09:20:57 GMT Pragma: - no-cache RequestId: - - 174bce63-810d-403d-bb07-354f3d941174 + - 3a0e9673-15d2-4087-8eb0-2c88aba93d0b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2685,15 +2720,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "6558b0ea-37f3-46fc-8905-ab94f315b5da", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "541d978c-5d0a-4e26-a93b-2346895d4b49", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2702,15 +2739,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2842' + - '2657' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:24 GMT + - Wed, 20 May 2026 09:20:57 GMT Pragma: - no-cache RequestId: - - f0ad59c2-b8b4-4538-ab69-aa7e7b416b6d + - 885017df-9bf0-46d6-a7da-1aa6d6a26f64 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2736,9 +2773,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/6558b0ea-37f3-46fc-8905-ab94f315b5da/items + uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49/items response: body: string: '{"value": []}' @@ -2754,11 +2791,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:14:25 GMT + - Wed, 20 May 2026 09:20:58 GMT Pragma: - no-cache RequestId: - - aa472769-b523-42ea-9462-c1d6aca943d6 + - f423a6ac-b9be-4018-b0be-e11b8e5f9b92 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2786,9 +2823,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/6558b0ea-37f3-46fc-8905-ab94f315b5da + uri: https://api.fabric.microsoft.com/v1/workspaces/541d978c-5d0a-4e26-a93b-2346895d4b49 response: body: string: '' @@ -2804,11 +2841,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:14:26 GMT + - Wed, 20 May 2026 09:20:59 GMT Pragma: - no-cache RequestId: - - ac5f1c43-031f-4d4c-99ab-115d88bac089 + - cc92b19e-c526-4a16-bfd6-5fd6e0032523 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_existing_name_different_location_without_block_on_path_collision_success.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_existing_name_different_location_without_block_on_path_collision_success.yaml index 64a651d8c..fb96d9fcf 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_existing_name_different_location_without_block_on_path_collision_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_existing_name_different_location_without_block_on_path_collision_success.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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:10:02 GMT + - Wed, 20 May 2026 09:16:31 GMT Pragma: - no-cache RequestId: - - fe905ab0-eb2d-4530-82c3-5db3c9ca1a82 + - cf59ae8b-59f0-4665-98e0-ae9b81679b1f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:10:02 GMT + - Wed, 20 May 2026 09:16:33 GMT Pragma: - no-cache RequestId: - - 64581cfc-e2bd-4f78-a909-7f0dd371e7c8 + - 5ac55a06-87e8-47b7-8dba-dd8415b67d6f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,7 +113,7 @@ 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/capacities response: @@ -127,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '429' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:10:08 GMT + - Wed, 20 May 2026 09:16:37 GMT Pragma: - no-cache RequestId: - - 047c69a5-e874-4548-8b6c-133c21f4af8a + - d719c691-a32e-4f1b-9515-7f74f7276a88 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -160,16 +162,16 @@ interactions: - keep-alive Content-Length: - '89' - 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 response: body: - string: '{"id": "bccf3171-5cbc-49a2-9686-70c37f7ad943", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -178,17 +180,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '154' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:10:15 GMT + - Wed, 20 May 2026 09:16:46 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/bccf3171-5cbc-49a2-9686-70c37f7ad943 + - https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205 Pragma: - no-cache RequestId: - - 8ba13d68-41e9-4c08-8c75-9459e65d64c2 + - 1c663fd1-e462-4537-be9f-124052dfd862 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,15 +216,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "bccf3171-5cbc-49a2-9686-70c37f7ad943", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -231,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2843' + - '2658' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:10:16 GMT + - Wed, 20 May 2026 09:16:46 GMT Pragma: - no-cache RequestId: - - 3415d19e-84c7-440c-8959-4b985ceeb5a5 + - 98790c75-b374-4154-8c19-3a1da91adb75 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,15 +269,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "bccf3171-5cbc-49a2-9686-70c37f7ad943", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -282,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2843' + - '2658' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:10:16 GMT + - Wed, 20 May 2026 09:16:47 GMT Pragma: - no-cache RequestId: - - dd9391d1-1e8c-4acb-84e1-0bc64fab6d25 + - f9c4a80f-9b01-4bf0-b80d-d91b53881a79 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,7 +322,7 @@ 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/capacities response: @@ -336,11 +342,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:10:20 GMT + - Wed, 20 May 2026 09:16:51 GMT Pragma: - no-cache RequestId: - - 55d7a4d0-1c95-43e7-8343-d426bc3038c2 + - 5acabe18-2cba-47cf-944c-828760379f54 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -365,16 +371,16 @@ interactions: - keep-alive Content-Length: - '89' - 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 response: body: - string: '{"id": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -383,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '154' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:10:27 GMT + - Wed, 20 May 2026 09:16:58 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb + - https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46 Pragma: - no-cache RequestId: - - fe52ef0b-73b8-41c0-8038-4657e4ccf282 + - 834f9c78-0d2c-4996-80d4-613e50e93b47 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -419,16 +425,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "bccf3171-5cbc-49a2-9686-70c37f7ad943", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -437,15 +446,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2695' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:10:28 GMT + - Wed, 20 May 2026 09:16:58 GMT Pragma: - no-cache RequestId: - - 3d577320-6e11-43e4-a8bd-eacf8e57a0d0 + - 275ad4b0-8978-40cb-b82f-71a6d8c18f29 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -471,9 +480,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/bccf3171-5cbc-49a2-9686-70c37f7ad943/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205/folders?recursive=True response: body: string: '{"value": []}' @@ -489,11 +498,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:10:28 GMT + - Wed, 20 May 2026 09:16:59 GMT Pragma: - no-cache RequestId: - - 6516978d-37e8-48ed-9104-3fea2ba0cc5b + - ce7d1fe5-8350-41e1-9c4b-a6057059fa25 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -519,9 +528,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/bccf3171-5cbc-49a2-9686-70c37f7ad943/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205/folders?recursive=True response: body: string: '{"value": []}' @@ -537,11 +546,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:10:29 GMT + - Wed, 20 May 2026 09:17:00 GMT Pragma: - no-cache RequestId: - - 41c73f82-051e-44c0-88d0-c62c7d5a1dc0 + - dfc66b7f-3029-469a-86a9-10598ed9287c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -565,17 +574,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/bccf3171-5cbc-49a2-9686-70c37f7ad943/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205/folders response: body: - string: '{"id": "30f875b4-90d5-4616-ace6-587508a6ee5e", "displayName": "fabcli000003", - "workspaceId": "bccf3171-5cbc-49a2-9686-70c37f7ad943"}' + string: '{"id": "13be0a46-6e7a-425b-a31a-e2170d4525e8", "displayName": "fabcli000003", + "workspaceId": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -588,13 +597,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:10:30 GMT + - Wed, 20 May 2026 09:17:01 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/bccf3171-5cbc-49a2-9686-70c37f7ad943/folders/30f875b4-90d5-4616-ace6-587508a6ee5e + - https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205/folders/13be0a46-6e7a-425b-a31a-e2170d4525e8 Pragma: - no-cache RequestId: - - 9b83083a-58d4-4184-892d-32d0fd731b5f + - a99b1e1a-b8e7-4087-a93a-facf69449549 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -620,16 +629,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "bccf3171-5cbc-49a2-9686-70c37f7ad943", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -638,15 +650,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2695' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:10:31 GMT + - Wed, 20 May 2026 09:17:01 GMT Pragma: - no-cache RequestId: - - 6278dcae-8f65-46b9-bf67-8cc9a1de1a46 + - 4d191566-ba74-4188-b9ea-7ce965c6333f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -672,9 +684,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/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/folders?recursive=True response: body: string: '{"value": []}' @@ -690,11 +702,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:10:32 GMT + - Wed, 20 May 2026 09:17:03 GMT Pragma: - no-cache RequestId: - - 2e77c53b-9a37-479d-9b74-72803106ef6e + - e125327a-3d3d-4f6b-bcc6-16e8e8a4225a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -720,9 +732,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/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/folders?recursive=True response: body: string: '{"value": []}' @@ -738,11 +750,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:10:32 GMT + - Wed, 20 May 2026 09:17:03 GMT Pragma: - no-cache RequestId: - - 3016b896-141a-42e5-80bb-341162760601 + - f0cf24bd-cb6d-4d93-8fc6-587caf194aa6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -766,17 +778,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/folders response: body: - string: '{"id": "3de4c823-bd95-4344-8b80-730d299687e6", "displayName": "fabcli000004", - "workspaceId": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb"}' + string: '{"id": "dbf46a01-e5c9-41b4-acf7-a1ca4c10aa26", "displayName": "fabcli000004", + "workspaceId": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -785,17 +797,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '133' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:10:33 GMT + - Wed, 20 May 2026 09:17:04 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/folders/3de4c823-bd95-4344-8b80-730d299687e6 + - https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/folders/dbf46a01-e5c9-41b4-acf7-a1ca4c10aa26 Pragma: - no-cache RequestId: - - 7ec19272-565a-413a-8c8d-1f7cc20a9782 + - 96d7f66e-3974-4711-b4a5-46858c5f6fb2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -821,16 +833,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "bccf3171-5cbc-49a2-9686-70c37f7ad943", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -839,15 +854,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2695' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:10:34 GMT + - Wed, 20 May 2026 09:17:05 GMT Pragma: - no-cache RequestId: - - d1bf7bc5-2f39-43cb-b526-7db16253cc2f + - 79200187-5881-4fda-a72f-9329ae88a719 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -873,9 +888,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/bccf3171-5cbc-49a2-9686-70c37f7ad943/items + uri: https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205/items response: body: string: '{"value": []}' @@ -891,11 +906,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:10:35 GMT + - Wed, 20 May 2026 09:17:06 GMT Pragma: - no-cache RequestId: - - 8b34be73-e2d2-4226-98f4-bf30809b6ce3 + - a3708e5f-3246-4db2-b55f-ab88ef2b57ec Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -921,9 +936,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/bccf3171-5cbc-49a2-9686-70c37f7ad943/items + uri: https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205/items response: body: string: '{"value": []}' @@ -939,11 +954,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:10:35 GMT + - Wed, 20 May 2026 09:17:06 GMT Pragma: - no-cache RequestId: - - c5d785f1-5faa-4570-be11-486fe5a4e027 + - ff0ba580-1a59-4e84-b921-7b7244d4d414 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -958,7 +973,9 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000005", "type": "Notebook", "folderId": null, "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", "payloadType": "InlineBase64"}]}}' + body: '{"displayName": "fabcli000005", "type": "Notebook", "folderId": null, "definition": + {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", + "payloadType": "InlineBase64"}]}}' headers: Accept: - '*/*' @@ -968,13 +985,12 @@ interactions: - keep-alive Content-Length: - '731' - 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/bccf3171-5cbc-49a2-9686-70c37f7ad943/notebooks + uri: https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205/notebooks response: body: string: 'null' @@ -990,15 +1006,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:10:38 GMT + - Wed, 20 May 2026 09:17:09 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/df2b883c-3455-438c-8361-26cbb5c9a23b + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e852db84-d6f4-4b98-9a0a-3e9fe9340719 Pragma: - no-cache RequestId: - - a86ffaf7-3dbe-43eb-a5ce-0c210cc6073d + - 80f3ae48-d2a9-4240-9e9b-536525290f33 Retry-After: - '20' Strict-Transport-Security: @@ -1012,7 +1028,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - df2b883c-3455-438c-8361-26cbb5c9a23b + - e852db84-d6f4-4b98-9a0a-3e9fe9340719 status: code: 202 message: Accepted @@ -1028,13 +1044,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/df2b883c-3455-438c-8361-26cbb5c9a23b + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e852db84-d6f4-4b98-9a0a-3e9fe9340719 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:10:37.5963365", - "lastUpdatedTimeUtc": "2026-02-06T08:10:39.2057509", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:17:08.5646349", + "lastUpdatedTimeUtc": "2026-05-20T09:17:10.0497991", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1044,17 +1060,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '130' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:10:59 GMT + - Wed, 20 May 2026 09:17:29 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/df2b883c-3455-438c-8361-26cbb5c9a23b/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e852db84-d6f4-4b98-9a0a-3e9fe9340719/result Pragma: - no-cache RequestId: - - 5a0a8479-4291-4483-985d-6d1990b4b32d + - e21a380a-a451-46d5-aca4-1a1aded343af Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1062,7 +1078,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - df2b883c-3455-438c-8361-26cbb5c9a23b + - e852db84-d6f4-4b98-9a0a-3e9fe9340719 status: code: 200 message: OK @@ -1078,14 +1094,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/df2b883c-3455-438c-8361-26cbb5c9a23b/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e852db84-d6f4-4b98-9a0a-3e9fe9340719/result response: body: - string: '{"id": "90581caf-4d27-4ee8-bed7-d9bc0bc9e41c", "type": "Notebook", - "displayName": "fabcli000005", "workspaceId": - "bccf3171-5cbc-49a2-9686-70c37f7ad943"}' + string: '{"id": "3d051b19-871c-488f-99ec-8cf19063fbac", "type": "Notebook", + "displayName": "fabcli000005", "description": "", "workspaceId": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205"}' headers: Access-Control-Expose-Headers: - RequestId @@ -1096,11 +1111,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 08:11:00 GMT + - Wed, 20 May 2026 09:17:30 GMT Pragma: - no-cache RequestId: - - 1db49416-21a4-4f04-8260-d079e9c49819 + - a8d8fdd7-074b-437f-a7f4-afa27cbfcaaa Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1124,16 +1139,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "bccf3171-5cbc-49a2-9686-70c37f7ad943", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1142,15 +1160,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2695' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:11:01 GMT + - Wed, 20 May 2026 09:17:31 GMT Pragma: - no-cache RequestId: - - d0379b0e-ec93-437d-bfc8-2df70469afa7 + - d4706e44-717e-4036-bfe3-cb7924ec8370 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1176,13 +1194,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/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/folders?recursive=True response: body: - string: '{"value": [{"id": "3de4c823-bd95-4344-8b80-730d299687e6", "displayName": - "fabcli000004", "workspaceId": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb"}]}' + string: '{"value": [{"id": "dbf46a01-e5c9-41b4-acf7-a1ca4c10aa26", "displayName": + "fabcli000004", "workspaceId": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1191,15 +1209,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:11:02 GMT + - Wed, 20 May 2026 09:17:32 GMT Pragma: - no-cache RequestId: - - 5626f5a0-7bf4-47da-b69c-a460d8dc6a47 + - 9d6ef1b7-5d05-42ff-b0d7-e6d5b05db56d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1225,9 +1243,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/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/items response: body: string: '{"value": []}' @@ -1243,11 +1261,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:11:03 GMT + - Wed, 20 May 2026 09:17:33 GMT Pragma: - no-cache RequestId: - - 61bbca38-444f-486d-9ae7-f8452c0ff8e3 + - 206d6e20-87b0-477b-b220-83fd24cd1e79 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1273,9 +1291,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/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/items response: body: string: '{"value": []}' @@ -1291,11 +1309,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:11:03 GMT + - Wed, 20 May 2026 09:17:33 GMT Pragma: - no-cache RequestId: - - e149a08f-cf95-42e4-bcb0-6e8159ca4ae9 + - bfc1f0a8-2dad-4e2f-b38a-934945e3eae7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1310,9 +1328,8 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000005", "type": - "Notebook", "folderId": "3de4c823-bd95-4344-8b80-730d299687e6", "definition": - {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", + body: '{"displayName": "fabcli000005", "type": "Notebook", "folderId": "dbf46a01-e5c9-41b4-acf7-a1ca4c10aa26", + "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", "payloadType": "InlineBase64"}]}}' headers: Accept: @@ -1323,13 +1340,12 @@ interactions: - keep-alive Content-Length: - '765' - 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/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/notebooks + uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/notebooks response: body: string: 'null' @@ -1345,15 +1361,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:11:06 GMT + - Wed, 20 May 2026 09:17:36 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/22b1d809-74aa-4251-9985-c871476eded7 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ec1dcb05-e686-41e9-b9cc-fe5a2f2b88b6 Pragma: - no-cache RequestId: - - fd44f83e-427e-45de-a740-209c54ad0a97 + - ec83cdc7-6ff2-4381-841e-f1dd15a3e35c Retry-After: - '20' Strict-Transport-Security: @@ -1367,7 +1383,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 22b1d809-74aa-4251-9985-c871476eded7 + - ec1dcb05-e686-41e9-b9cc-fe5a2f2b88b6 status: code: 202 message: Accepted @@ -1383,13 +1399,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/22b1d809-74aa-4251-9985-c871476eded7 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ec1dcb05-e686-41e9-b9cc-fe5a2f2b88b6 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:11:05.3846322", - "lastUpdatedTimeUtc": "2026-02-06T08:11:06.9948043", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:17:35.3949045", + "lastUpdatedTimeUtc": "2026-05-20T09:17:37.2362168", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1403,13 +1419,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:11:27 GMT + - Wed, 20 May 2026 09:17:56 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/22b1d809-74aa-4251-9985-c871476eded7/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ec1dcb05-e686-41e9-b9cc-fe5a2f2b88b6/result Pragma: - no-cache RequestId: - - f6a69940-294e-4ee5-9c2d-73b973c377dd + - fc6ced75-a5c7-4ced-b780-79dd5566dfcb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1417,7 +1433,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 22b1d809-74aa-4251-9985-c871476eded7 + - ec1dcb05-e686-41e9-b9cc-fe5a2f2b88b6 status: code: 200 message: OK @@ -1433,14 +1449,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/22b1d809-74aa-4251-9985-c871476eded7/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ec1dcb05-e686-41e9-b9cc-fe5a2f2b88b6/result response: body: - string: '{"id": "f5f9567f-dab5-48ac-b7b3-4d23e55469ac", "type": "Notebook", - "displayName": "fabcli000005", "workspaceId": - "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "folderId": "3de4c823-bd95-4344-8b80-730d299687e6"}' + string: '{"id": "6f78aa8d-ec9b-4ac1-a163-6b805f64be63", "type": "Notebook", + "displayName": "fabcli000005", "description": "", "workspaceId": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46", + "folderId": "dbf46a01-e5c9-41b4-acf7-a1ca4c10aa26"}' headers: Access-Control-Expose-Headers: - RequestId @@ -1451,11 +1467,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 08:11:28 GMT + - Wed, 20 May 2026 09:17:57 GMT Pragma: - no-cache RequestId: - - fd41c2c8-5ea0-4500-99dd-c42f7757e7e5 + - 8a397fcf-d926-4542-9f29-d38b1e9a0764 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1479,16 +1495,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "bccf3171-5cbc-49a2-9686-70c37f7ad943", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1497,15 +1516,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2695' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:11:29 GMT + - Wed, 20 May 2026 09:17:58 GMT Pragma: - no-cache RequestId: - - 34ac06d3-9df6-4970-a718-7f0691a73623 + - e873bb41-491e-4e44-a1d8-989162b5fa25 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1531,14 +1550,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/bccf3171-5cbc-49a2-9686-70c37f7ad943/items + uri: https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205/items response: body: - string: '{"value": [{"id": "90581caf-4d27-4ee8-bed7-d9bc0bc9e41c", "type": "Notebook", - "displayName": "fabcli000005", "workspaceId": - "bccf3171-5cbc-49a2-9686-70c37f7ad943"}]}' + string: '{"value": [{"id": "3d051b19-871c-488f-99ec-8cf19063fbac", "type": "Notebook", + "displayName": "fabcli000005", "description": "", "workspaceId": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1547,15 +1565,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '177' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:11:29 GMT + - Wed, 20 May 2026 09:17:59 GMT Pragma: - no-cache RequestId: - - eee8f83f-6fa4-42d7-85da-42d8fa1ea9eb + - d76c7985-fbc1-4892-ac1f-66c47855bfdc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1581,16 +1599,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "bccf3171-5cbc-49a2-9686-70c37f7ad943", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1599,15 +1620,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2695' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:11:31 GMT + - Wed, 20 May 2026 09:18:00 GMT Pragma: - no-cache RequestId: - - 5731627b-3d74-4e7d-944e-187cec8af0c2 + - d0c8d0b4-336a-4bc7-8316-2e5c8d551741 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1633,14 +1654,14 @@ 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/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/items response: body: - string: '{"value": [{"id": "f5f9567f-dab5-48ac-b7b3-4d23e55469ac", "type": "Notebook", - "displayName": "fabcli000005", "workspaceId": - "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "folderId": "3de4c823-bd95-4344-8b80-730d299687e6"}]}' + string: '{"value": [{"id": "6f78aa8d-ec9b-4ac1-a163-6b805f64be63", "type": "Notebook", + "displayName": "fabcli000005", "description": "", "workspaceId": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46", + "folderId": "dbf46a01-e5c9-41b4-acf7-a1ca4c10aa26"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1649,15 +1670,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '207' + - '196' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:11:32 GMT + - Wed, 20 May 2026 09:18:01 GMT Pragma: - no-cache RequestId: - - 6265ae77-6934-41cf-8c30-22c4fec96b16 + - 4b859a0c-d5a3-48b8-b6d5-3c0da1737812 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1683,13 +1704,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/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/folders?recursive=True response: body: - string: '{"value": [{"id": "3de4c823-bd95-4344-8b80-730d299687e6", "displayName": - "fabcli000004", "workspaceId": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb"}]}' + string: '{"value": [{"id": "dbf46a01-e5c9-41b4-acf7-a1ca4c10aa26", "displayName": + "fabcli000004", "workspaceId": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1698,15 +1719,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:11:32 GMT + - Wed, 20 May 2026 09:18:01 GMT Pragma: - no-cache RequestId: - - c05cc47a-e502-4c70-8f0e-1505fa110f4e + - 8043e372-5ab0-4f3c-a2eb-c3f3d10783fd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1732,14 +1753,14 @@ 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/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/items response: body: - string: '{"value": [{"id": "f5f9567f-dab5-48ac-b7b3-4d23e55469ac", "type": "Notebook", - "displayName": "fabcli000005", "workspaceId": - "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "folderId": "3de4c823-bd95-4344-8b80-730d299687e6"}]}' + string: '{"value": [{"id": "6f78aa8d-ec9b-4ac1-a163-6b805f64be63", "type": "Notebook", + "displayName": "fabcli000005", "description": "", "workspaceId": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46", + "folderId": "dbf46a01-e5c9-41b4-acf7-a1ca4c10aa26"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1748,15 +1769,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '207' + - '196' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:11:33 GMT + - Wed, 20 May 2026 09:18:03 GMT Pragma: - no-cache RequestId: - - bda79e4c-6d29-41ce-aaa6-4506c03e1fc9 + - 069c7642-c496-4cd6-9b3b-8f0295d409f6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1782,13 +1803,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/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/folders?recursive=True response: body: - string: '{"value": [{"id": "3de4c823-bd95-4344-8b80-730d299687e6", "displayName": - "fabcli000004", "workspaceId": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb"}]}' + string: '{"value": [{"id": "dbf46a01-e5c9-41b4-acf7-a1ca4c10aa26", "displayName": + "fabcli000004", "workspaceId": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1797,15 +1818,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:11:34 GMT + - Wed, 20 May 2026 09:18:04 GMT Pragma: - no-cache RequestId: - - 15b3ca0e-f505-4e96-b6f1-0468098c1bd3 + - d59610c6-a630-4f6a-9486-46337c232f8d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1831,14 +1852,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/bccf3171-5cbc-49a2-9686-70c37f7ad943/items/90581caf-4d27-4ee8-bed7-d9bc0bc9e41c + uri: https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205/items/3d051b19-871c-488f-99ec-8cf19063fbac response: body: - string: '{"id": "90581caf-4d27-4ee8-bed7-d9bc0bc9e41c", "type": "Notebook", - "displayName": "fabcli000005", "workspaceId": - "bccf3171-5cbc-49a2-9686-70c37f7ad943"}' + string: '{"id": "3d051b19-871c-488f-99ec-8cf19063fbac", "type": "Notebook", + "displayName": "fabcli000005", "description": "", "workspaceId": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1847,17 +1867,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:11:34 GMT + - Wed, 20 May 2026 09:18:04 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 887d8680-9a68-4fa8-85e6-1f20a9ecfea3 + - d971c56a-7815-4902-a914-87a11ecd4eb6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1885,9 +1905,9 @@ interactions: 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/bccf3171-5cbc-49a2-9686-70c37f7ad943/items/90581caf-4d27-4ee8-bed7-d9bc0bc9e41c/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205/items/3d051b19-871c-488f-99ec-8cf19063fbac/getDefinition response: body: string: 'null' @@ -1903,13 +1923,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:11:35 GMT + - Wed, 20 May 2026 09:18:06 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1e9b8d3b-2c37-44da-b3e9-93c7da487503 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d31ddf62-18b1-4433-9be4-d4c139b3ab6b Pragma: - no-cache RequestId: - - b3a65789-85b6-424f-87bf-f33b6ffb260f + - 05c04955-8c83-414b-8a47-b622c3ff1401 Retry-After: - '20' Strict-Transport-Security: @@ -1923,7 +1943,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 1e9b8d3b-2c37-44da-b3e9-93c7da487503 + - d31ddf62-18b1-4433-9be4-d4c139b3ab6b status: code: 202 message: Accepted @@ -1939,13 +1959,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1e9b8d3b-2c37-44da-b3e9-93c7da487503 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d31ddf62-18b1-4433-9be4-d4c139b3ab6b response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:11:35.800617", - "lastUpdatedTimeUtc": "2026-02-06T08:11:36.1756195", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:18:06.2717607", + "lastUpdatedTimeUtc": "2026-05-20T09:18:07.0159561", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1959,13 +1979,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:11:56 GMT + - Wed, 20 May 2026 09:18:26 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1e9b8d3b-2c37-44da-b3e9-93c7da487503/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d31ddf62-18b1-4433-9be4-d4c139b3ab6b/result Pragma: - no-cache RequestId: - - 0fb13184-c3ad-48a2-b49a-fb6444a3ce1a + - 2ac439a8-b8b5-4653-8cb4-d1c168a1d064 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1973,7 +1993,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 1e9b8d3b-2c37-44da-b3e9-93c7da487503 + - d31ddf62-18b1-4433-9be4-d4c139b3ab6b status: code: 200 message: OK @@ -1989,14 +2009,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1e9b8d3b-2c37-44da-b3e9-93c7da487503/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d31ddf62-18b1-4433-9be4-d4c139b3ab6b/result response: body: string: '{"definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDUiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDUiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -2008,11 +2028,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 08:11:57 GMT + - Wed, 20 May 2026 09:18:27 GMT Pragma: - no-cache RequestId: - - 06c7d5d9-5e94-465f-9c83-37c3a98c3b45 + - f37af244-aa64-45ae-beb2-24e8616102c9 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -2025,7 +2045,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "Notebook", "displayName": "fabcli000005", "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDUiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}, "folderId": null}' + body: '{"type": "Notebook", "displayName": "fabcli000005", "definition": {"parts": + [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDUiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}]}, "folderId": null}' headers: Accept: - '*/*' @@ -2034,14 +2057,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1252' - + - '1204' 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/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/items/f5f9567f-dab5-48ac-b7b3-4d23e55469ac/updateDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/items/6f78aa8d-ec9b-4ac1-a163-6b805f64be63/updateDefinition response: body: string: 'null' @@ -2057,13 +2079,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:11:59 GMT + - Wed, 20 May 2026 09:18:28 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/55a7a0de-bc76-4e80-a259-061d4d88f4c6 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/765a81d1-ebad-4e91-b7b7-824f664f6795 Pragma: - no-cache RequestId: - - dce29f5c-9812-42c5-985d-6c31f4a7409a + - 4c2ba32c-1702-40a9-a692-02cfe07d21bc Retry-After: - '20' Strict-Transport-Security: @@ -2077,7 +2099,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 55a7a0de-bc76-4e80-a259-061d4d88f4c6 + - 765a81d1-ebad-4e91-b7b7-824f664f6795 status: code: 202 message: Accepted @@ -2093,13 +2115,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/55a7a0de-bc76-4e80-a259-061d4d88f4c6 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/765a81d1-ebad-4e91-b7b7-824f664f6795 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T08:11:59.8068946", - "lastUpdatedTimeUtc": "2026-02-06T08:12:00.0888426", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T09:18:29.0857109", + "lastUpdatedTimeUtc": "2026-05-20T09:18:29.2170245", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -2109,17 +2131,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '129' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:12:21 GMT + - Wed, 20 May 2026 09:18:49 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/55a7a0de-bc76-4e80-a259-061d4d88f4c6/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/765a81d1-ebad-4e91-b7b7-824f664f6795/result Pragma: - no-cache RequestId: - - 7f498a8b-5e11-4ce7-84e2-98de92ad21db + - 50d7201c-5b36-4ff5-950f-d2daac65369a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2127,7 +2149,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 55a7a0de-bc76-4e80-a259-061d4d88f4c6 + - 765a81d1-ebad-4e91-b7b7-824f664f6795 status: code: 200 message: OK @@ -2143,14 +2165,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/55a7a0de-bc76-4e80-a259-061d4d88f4c6/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/765a81d1-ebad-4e91-b7b7-824f664f6795/result response: body: - string: '{"id": "f5f9567f-dab5-48ac-b7b3-4d23e55469ac", "type": "Notebook", - "displayName": "fabcli000005", "workspaceId": - "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "folderId": "3de4c823-bd95-4344-8b80-730d299687e6"}' + string: '{"id": "6f78aa8d-ec9b-4ac1-a163-6b805f64be63", "type": "Notebook", + "displayName": "fabcli000005", "description": "", "workspaceId": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46", + "folderId": "dbf46a01-e5c9-41b4-acf7-a1ca4c10aa26"}' headers: Access-Control-Expose-Headers: - RequestId @@ -2161,11 +2183,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 08:12:21 GMT + - Wed, 20 May 2026 09:18:51 GMT Pragma: - no-cache RequestId: - - 3976a845-ec9e-470d-867c-d07a371dc4fd + - 76599129-27b4-4498-9977-fa580af304c1 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -2189,16 +2211,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "bccf3171-5cbc-49a2-9686-70c37f7ad943", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2207,15 +2232,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2695' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:12:23 GMT + - Wed, 20 May 2026 09:18:51 GMT Pragma: - no-cache RequestId: - - 0d75e4d5-7dde-4115-9dfc-7c195da4b058 + - 87500f1b-5d32-4577-9a9f-9cba9691f78b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2241,13 +2266,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/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/folders?recursive=True response: body: - string: '{"value": [{"id": "3de4c823-bd95-4344-8b80-730d299687e6", "displayName": - "fabcli000004", "workspaceId": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb"}]}' + string: '{"value": [{"id": "dbf46a01-e5c9-41b4-acf7-a1ca4c10aa26", "displayName": + "fabcli000004", "workspaceId": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2256,15 +2281,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:12:23 GMT + - Wed, 20 May 2026 09:18:52 GMT Pragma: - no-cache RequestId: - - 059b7d6e-128f-47aa-ab9c-8656cb3e19b4 + - 553c9614-b705-4a2b-a264-23dc14498c07 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2290,14 +2315,14 @@ 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/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/items response: body: - string: '{"value": [{"id": "f5f9567f-dab5-48ac-b7b3-4d23e55469ac", "type": "Notebook", - "displayName": "fabcli000005", "workspaceId": - "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "folderId": "3de4c823-bd95-4344-8b80-730d299687e6"}]}' + string: '{"value": [{"id": "6f78aa8d-ec9b-4ac1-a163-6b805f64be63", "type": "Notebook", + "displayName": "fabcli000005", "description": "", "workspaceId": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46", + "folderId": "dbf46a01-e5c9-41b4-acf7-a1ca4c10aa26"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2306,15 +2331,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '207' + - '196' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:12:25 GMT + - Wed, 20 May 2026 09:18:52 GMT Pragma: - no-cache RequestId: - - e1afe1af-22d1-4583-acd2-4fefcec03505 + - 44f7dbf8-3e6c-4af6-b98b-ef7bb0306b09 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2340,13 +2365,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/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/folders?recursive=True response: body: - string: '{"value": [{"id": "3de4c823-bd95-4344-8b80-730d299687e6", "displayName": - "fabcli000004", "workspaceId": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb"}]}' + string: '{"value": [{"id": "dbf46a01-e5c9-41b4-acf7-a1ca4c10aa26", "displayName": + "fabcli000004", "workspaceId": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2355,15 +2380,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:12:25 GMT + - Wed, 20 May 2026 09:18:54 GMT Pragma: - no-cache RequestId: - - 7dca6909-5f4b-4947-a149-3a943e3f7022 + - 287e9989-0642-4e3d-ad2f-f161c93d26b4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2391,9 +2416,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/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/items/f5f9567f-dab5-48ac-b7b3-4d23e55469ac + uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/items/6f78aa8d-ec9b-4ac1-a163-6b805f64be63 response: body: string: '' @@ -2409,11 +2434,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:12:26 GMT + - Wed, 20 May 2026 09:18:54 GMT Pragma: - no-cache RequestId: - - 1659cca0-a250-417b-8069-7b74cf243e5b + - ff3c5e8f-73c6-4d31-bd1d-48d58a058d94 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2439,16 +2464,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "bccf3171-5cbc-49a2-9686-70c37f7ad943", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2457,15 +2485,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2695' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:12:27 GMT + - Wed, 20 May 2026 09:18:56 GMT Pragma: - no-cache RequestId: - - af0f2f37-88db-4fc7-acf7-f2e6d1983937 + - 1cb979b3-ca97-4257-a221-646767a6049d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2491,14 +2519,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/bccf3171-5cbc-49a2-9686-70c37f7ad943/items + uri: https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205/items response: body: - string: '{"value": [{"id": "90581caf-4d27-4ee8-bed7-d9bc0bc9e41c", "type": "Notebook", - "displayName": "fabcli000005", "workspaceId": - "bccf3171-5cbc-49a2-9686-70c37f7ad943"}]}' + string: '{"value": [{"id": "3d051b19-871c-488f-99ec-8cf19063fbac", "type": "Notebook", + "displayName": "fabcli000005", "description": "", "workspaceId": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2507,15 +2534,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '177' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:12:27 GMT + - Wed, 20 May 2026 09:18:56 GMT Pragma: - no-cache RequestId: - - 3e75d1b0-6fd0-4eaf-bd64-44d403eef9ef + - 2c74c40d-feb5-4f17-9b39-f116ff8f05ae Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2543,9 +2570,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/bccf3171-5cbc-49a2-9686-70c37f7ad943/items/90581caf-4d27-4ee8-bed7-d9bc0bc9e41c + uri: https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205/items/3d051b19-871c-488f-99ec-8cf19063fbac response: body: string: '' @@ -2561,11 +2588,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:12:29 GMT + - Wed, 20 May 2026 09:18:57 GMT Pragma: - no-cache RequestId: - - ac7d2e0a-bad6-4e8c-9ed9-6db808df06c2 + - a46b3451-85c7-4dd1-a094-7bd4bcdf56d5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2591,16 +2618,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "bccf3171-5cbc-49a2-9686-70c37f7ad943", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2609,15 +2639,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2695' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:12:29 GMT + - Wed, 20 May 2026 09:18:58 GMT Pragma: - no-cache RequestId: - - 34a8e149-893e-4d18-aae2-1de6cc6cf64d + - 626b7447-55a8-465b-a108-4b7b0a21fa96 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2643,13 +2673,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/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/folders?recursive=True response: body: - string: '{"value": [{"id": "3de4c823-bd95-4344-8b80-730d299687e6", "displayName": - "fabcli000004", "workspaceId": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb"}]}' + string: '{"value": [{"id": "dbf46a01-e5c9-41b4-acf7-a1ca4c10aa26", "displayName": + "fabcli000004", "workspaceId": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2658,15 +2688,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '145' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:12:30 GMT + - Wed, 20 May 2026 09:18:59 GMT Pragma: - no-cache RequestId: - - d510283d-c630-4b44-957a-41ed7faeb199 + - 9e3558f0-2ae7-4d57-8d85-82dd58d17a1d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2694,9 +2724,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/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/folders/3de4c823-bd95-4344-8b80-730d299687e6 + uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/folders/dbf46a01-e5c9-41b4-acf7-a1ca4c10aa26 response: body: string: '' @@ -2712,11 +2742,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:12:31 GMT + - Wed, 20 May 2026 09:19:00 GMT Pragma: - no-cache RequestId: - - 5a0266b4-8d7b-4d1c-b0a3-7af54dbe3f9c + - ca220b51-58f6-4364-bdcd-f49318a3d680 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2742,16 +2772,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "bccf3171-5cbc-49a2-9686-70c37f7ad943", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2760,15 +2793,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2695' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:12:31 GMT + - Wed, 20 May 2026 09:19:01 GMT Pragma: - no-cache RequestId: - - 20cee8df-7534-48a2-a8a4-56e1b44620fb + - 5439a43f-c6e3-466b-b609-3388fb282ced Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2794,13 +2827,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/bccf3171-5cbc-49a2-9686-70c37f7ad943/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205/folders?recursive=True response: body: - string: '{"value": [{"id": "30f875b4-90d5-4616-ace6-587508a6ee5e", "displayName": - "fabcli000003", "workspaceId": "bccf3171-5cbc-49a2-9686-70c37f7ad943"}]}' + string: '{"value": [{"id": "13be0a46-6e7a-425b-a31a-e2170d4525e8", "displayName": + "fabcli000003", "workspaceId": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2813,11 +2846,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:12:33 GMT + - Wed, 20 May 2026 09:19:02 GMT Pragma: - no-cache RequestId: - - 8f542a02-7d33-448b-9d0a-a6baf45d021a + - 287c4751-5246-4c13-b1d2-67550af0b819 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2845,9 +2878,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/bccf3171-5cbc-49a2-9686-70c37f7ad943/folders/30f875b4-90d5-4616-ace6-587508a6ee5e + uri: https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205/folders/13be0a46-6e7a-425b-a31a-e2170d4525e8 response: body: string: '' @@ -2863,11 +2896,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:12:34 GMT + - Wed, 20 May 2026 09:19:03 GMT Pragma: - no-cache RequestId: - - 2c5c5d90-e005-4643-9240-c125db8756aa + - b05cd35f-4390-4fd3-9b78-f50e2d22c761 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2893,16 +2926,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "bccf3171-5cbc-49a2-9686-70c37f7ad943", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fce439a7-40a6-4cb3-b0d4-cdf7bf591205", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2911,15 +2947,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2880' + - '2695' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:12:34 GMT + - Wed, 20 May 2026 09:19:04 GMT Pragma: - no-cache RequestId: - - 3b13df5d-78c8-4c64-b46a-45fb335d1d4d + - 7d98cfa2-312f-4e5b-8b6d-4e4c96bef4b3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2945,9 +2981,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/bccf3171-5cbc-49a2-9686-70c37f7ad943/items + uri: https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205/items response: body: string: '{"value": []}' @@ -2963,11 +2999,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:12:34 GMT + - Wed, 20 May 2026 09:19:05 GMT Pragma: - no-cache RequestId: - - bea3a341-52c7-4728-a21e-4574fe356bf1 + - 66dd1a6a-84ff-436c-8fe0-3a9978637386 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2995,9 +3031,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/bccf3171-5cbc-49a2-9686-70c37f7ad943 + uri: https://api.fabric.microsoft.com/v1/workspaces/fce439a7-40a6-4cb3-b0d4-cdf7bf591205 response: body: string: '' @@ -3013,11 +3049,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:12:36 GMT + - Wed, 20 May 2026 09:19:06 GMT Pragma: - no-cache RequestId: - - 107cdbf5-6372-4eb1-beae-7b3fc1ff5111 + - 25418b53-ce18-4290-a8fa-eaee7dec6dfa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3043,15 +3079,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2555c7fe-e6c4-4dfe-8f01-43f7948a7e46", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3060,15 +3098,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2841' + - '2659' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:12:36 GMT + - Wed, 20 May 2026 09:19:07 GMT Pragma: - no-cache RequestId: - - 61997f27-1fb2-4c1e-a83c-ee0c66614348 + - 4052a4e2-6f04-4325-b516-aac684e23f47 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3094,9 +3132,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/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46/items response: body: string: '{"value": []}' @@ -3112,11 +3150,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 08:12:38 GMT + - Wed, 20 May 2026 09:19:07 GMT Pragma: - no-cache RequestId: - - fce3594e-931f-4321-93e8-9979e0adcf4e + - 459f9b93-5915-454e-8fb2-f510fee1e93a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3144,9 +3182,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/a35fac2b-91dc-4dd2-bdd3-6a5c6ae390bb + uri: https://api.fabric.microsoft.com/v1/workspaces/2555c7fe-e6c4-4dfe-8f01-43f7948a7e46 response: body: string: '' @@ -3162,11 +3200,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 08:12:38 GMT + - Wed, 20 May 2026 09:19:09 GMT Pragma: - no-cache RequestId: - - 94234a9e-07ad-497b-b5e5-6349f54851a4 + - f98d2c0c-af8c-4345-8ccf-39a3a573caa0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[CosmosDBDatabase].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[CosmosDBDatabase].yaml index d3cb68eeb..0c758f5dd 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[CosmosDBDatabase].yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[CosmosDBDatabase].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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:36:17 GMT + - Wed, 20 May 2026 08:53:17 GMT Pragma: - no-cache RequestId: - - d43576a7-7491-4cfc-a0a7-7a86b2daac52 + - 2533d844-5123-4240-a9d5-ab4ce310dd87 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:36:18 GMT + - Wed, 20 May 2026 08:53:18 GMT Pragma: - no-cache RequestId: - - e7abf7c3-653d-4d93-96ca-e74a26b61644 + - a955865a-1732-496c-bad0-2d276a268625 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,7 +113,7 @@ 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/capacities response: @@ -127,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:36:23 GMT + - Wed, 20 May 2026 08:53:23 GMT Pragma: - no-cache RequestId: - - 7d8d0768-0f3a-4939-ba4c-72c5963231fb + - 2d44f51f-e922-4a75-a4dd-2a4d1ade079f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -150,8 +152,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -160,16 +161,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "c906be27-0926-4ebf-a9e0-346d45059210", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "58983045-71a8-45e6-929c-0e2f5f5ea7f4", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -178,17 +180,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:36:31 GMT + - Wed, 20 May 2026 08:53:31 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/c906be27-0926-4ebf-a9e0-346d45059210 + - https://api.fabric.microsoft.com/v1/workspaces/58983045-71a8-45e6-929c-0e2f5f5ea7f4 Pragma: - no-cache RequestId: - - 89b135ee-6746-4dc8-9ada-67b3ae8f3509 + - b287de44-ac1b-4777-b9c0-7a7aec6f117f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,15 +216,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "c906be27-0926-4ebf-a9e0-346d45059210", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "58983045-71a8-45e6-929c-0e2f5f5ea7f4", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -231,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2844' + - '2662' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:36:31 GMT + - Wed, 20 May 2026 08:53:32 GMT Pragma: - no-cache RequestId: - - db7751f6-2482-417e-99b0-e00965dfdd79 + - 3ea2c983-3084-4e0e-b2e6-44ffd9136fa8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,15 +269,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "c906be27-0926-4ebf-a9e0-346d45059210", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "58983045-71a8-45e6-929c-0e2f5f5ea7f4", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -282,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2844' + - '2662' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:36:32 GMT + - Wed, 20 May 2026 08:53:33 GMT Pragma: - no-cache RequestId: - - c5f7da5c-a6c6-4216-97a6-30f667779104 + - 2440b0a7-87e2-4522-97e4-1afc6e0718ee Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,7 +322,7 @@ 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/capacities response: @@ -332,15 +338,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '425' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:36:38 GMT + - Wed, 20 May 2026 08:53:37 GMT Pragma: - no-cache RequestId: - - 8b4175f3-a3c8-4905-84c5-217651b248b5 + - c9dcd5e3-63e3-405b-8140-13f6ed610356 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -355,8 +361,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000002", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -365,16 +370,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "448844d6-a052-48e4-bb64-867c67fa2cd0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "559f9834-34bf-4077-a22e-45e4577bef15", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -383,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '154' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:36:46 GMT + - Wed, 20 May 2026 08:53:46 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/448844d6-a052-48e4-bb64-867c67fa2cd0 + - https://api.fabric.microsoft.com/v1/workspaces/559f9834-34bf-4077-a22e-45e4577bef15 Pragma: - no-cache RequestId: - - d7e1576c-44d2-4818-a9c5-fde5e8e47cb0 + - c2ac10ab-2dff-431b-90d0-c00cf12b5a9e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -419,16 +425,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "c906be27-0926-4ebf-a9e0-346d45059210", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "448844d6-a052-48e4-bb64-867c67fa2cd0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "58983045-71a8-45e6-929c-0e2f5f5ea7f4", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "559f9834-34bf-4077-a22e-45e4577bef15", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -437,15 +446,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:36:47 GMT + - Wed, 20 May 2026 08:53:46 GMT Pragma: - no-cache RequestId: - - 9c38dd89-16ed-4ff1-8e6a-28f82ccfde96 + - c935e44f-14e6-4385-a82c-1dc11e15344a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -471,9 +480,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/c906be27-0926-4ebf-a9e0-346d45059210/items + uri: https://api.fabric.microsoft.com/v1/workspaces/58983045-71a8-45e6-929c-0e2f5f5ea7f4/items response: body: string: '{"value": []}' @@ -489,11 +498,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:36:48 GMT + - Wed, 20 May 2026 08:53:48 GMT Pragma: - no-cache RequestId: - - db84bf9b-e1b9-40b4-a2b2-84b5ea8f80e5 + - d6b4cb8d-6d5c-44dc-ac6f-e656c199734f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -519,9 +528,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/c906be27-0926-4ebf-a9e0-346d45059210/items + uri: https://api.fabric.microsoft.com/v1/workspaces/58983045-71a8-45e6-929c-0e2f5f5ea7f4/items response: body: string: '{"value": []}' @@ -537,11 +546,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:36:49 GMT + - Wed, 20 May 2026 08:53:48 GMT Pragma: - no-cache RequestId: - - eb0302c5-4f9f-4388-bf74-e9f279fb6953 + - a186528a-f1b9-4047-945a-ff51e0a2362f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -556,8 +565,8 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000003", "type": - "CosmosDBDatabase", "folderId": null}' + body: '{"displayName": "fabcli000003", "type": "CosmosDBDatabase", "folderId": + null}' headers: Accept: - '*/*' @@ -566,13 +575,13 @@ interactions: Connection: - keep-alive Content-Length: - - '114' + - '81' 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/c906be27-0926-4ebf-a9e0-346d45059210/cosmosDbDatabases + uri: https://api.fabric.microsoft.com/v1/workspaces/58983045-71a8-45e6-929c-0e2f5f5ea7f4/cosmosDbDatabases response: body: string: 'null' @@ -588,15 +597,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:36:50 GMT + - Wed, 20 May 2026 08:53:50 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e5e4a434-24ae-43d0-838f-e2047e478d6f + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/45d5f6d0-46cd-47aa-b36e-2e9a9a0e9cea Pragma: - no-cache RequestId: - - 3e8b902c-edbe-43b3-b7ba-eebb0a273f55 + - a3f37221-eef4-4f6c-8bc2-6fee0a7325b7 Retry-After: - '20' Strict-Transport-Security: @@ -610,7 +619,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - e5e4a434-24ae-43d0-838f-e2047e478d6f + - 45d5f6d0-46cd-47aa-b36e-2e9a9a0e9cea status: code: 202 message: Accepted @@ -626,13 +635,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e5e4a434-24ae-43d0-838f-e2047e478d6f + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/45d5f6d0-46cd-47aa-b36e-2e9a9a0e9cea response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:36:50.7827022", - "lastUpdatedTimeUtc": "2026-02-06T07:36:59.9414087", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:53:50.1104192", + "lastUpdatedTimeUtc": "2026-05-20T08:53:59.6859878", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -646,13 +655,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:37:13 GMT + - Wed, 20 May 2026 08:54:11 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e5e4a434-24ae-43d0-838f-e2047e478d6f/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/45d5f6d0-46cd-47aa-b36e-2e9a9a0e9cea/result Pragma: - no-cache RequestId: - - 72081716-d7da-4ed9-9d8e-e7a6fd236324 + - 65251bb8-531c-4974-9c2e-d11a7bee1e3b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -660,7 +669,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - e5e4a434-24ae-43d0-838f-e2047e478d6f + - 45d5f6d0-46cd-47aa-b36e-2e9a9a0e9cea status: code: 200 message: OK @@ -676,14 +685,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e5e4a434-24ae-43d0-838f-e2047e478d6f/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/45d5f6d0-46cd-47aa-b36e-2e9a9a0e9cea/result response: body: - string: '{"id": "51b6c549-4251-4b7a-a518-1a7c30fd800a", "type": "CosmosDBDatabase", - "displayName": "fabcli000003", "workspaceId": - "c906be27-0926-4ebf-a9e0-346d45059210"}' + string: '{"id": "77832fda-96d9-4af8-956d-dcb9b8fea912", "type": "CosmosDBDatabase", + "displayName": "fabcli000003", "description": "", "workspaceId": "58983045-71a8-45e6-929c-0e2f5f5ea7f4"}' headers: Access-Control-Expose-Headers: - RequestId @@ -694,11 +702,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 07:37:14 GMT + - Wed, 20 May 2026 08:54:12 GMT Pragma: - no-cache RequestId: - - a507e9f2-15f7-4b09-933e-33ada7b275ea + - 827ecf0e-6d88-4c2a-8c4d-d5aa7bd17130 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -722,16 +730,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "c906be27-0926-4ebf-a9e0-346d45059210", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "448844d6-a052-48e4-bb64-867c67fa2cd0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "58983045-71a8-45e6-929c-0e2f5f5ea7f4", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "559f9834-34bf-4077-a22e-45e4577bef15", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -740,15 +751,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:37:15 GMT + - Wed, 20 May 2026 08:54:12 GMT Pragma: - no-cache RequestId: - - c3644bd4-28bb-47e9-8ffe-86e6583258d8 + - 080b6a86-a679-400e-bd43-29f8b5b07228 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -774,14 +785,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/c906be27-0926-4ebf-a9e0-346d45059210/items + uri: https://api.fabric.microsoft.com/v1/workspaces/58983045-71a8-45e6-929c-0e2f5f5ea7f4/items response: body: - string: '{"value": [{"id": "51b6c549-4251-4b7a-a518-1a7c30fd800a", "type": "CosmosDBDatabase", - "displayName": "fabcli000003", "workspaceId": - "c906be27-0926-4ebf-a9e0-346d45059210"}]}' + string: '{"value": [{"id": "77832fda-96d9-4af8-956d-dcb9b8fea912", "type": "CosmosDBDatabase", + "displayName": "fabcli000003", "description": "", "workspaceId": "58983045-71a8-45e6-929c-0e2f5f5ea7f4"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -790,15 +800,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '183' + - '173' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:37:16 GMT + - Wed, 20 May 2026 08:54:14 GMT Pragma: - no-cache RequestId: - - 149de387-f831-4089-bf85-7b801bf04b5e + - 0ee1c1d8-7d19-4619-9669-fca26a903c1d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -824,16 +834,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "c906be27-0926-4ebf-a9e0-346d45059210", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "448844d6-a052-48e4-bb64-867c67fa2cd0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "58983045-71a8-45e6-929c-0e2f5f5ea7f4", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "559f9834-34bf-4077-a22e-45e4577bef15", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -842,15 +855,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:37:16 GMT + - Wed, 20 May 2026 08:54:15 GMT Pragma: - no-cache RequestId: - - d5c60d2d-2393-483e-b813-64005694bd77 + - 9e190c6f-e6ed-45f7-a699-dfa206827fb0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -876,9 +889,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/448844d6-a052-48e4-bb64-867c67fa2cd0/items + uri: https://api.fabric.microsoft.com/v1/workspaces/559f9834-34bf-4077-a22e-45e4577bef15/items response: body: string: '{"value": []}' @@ -894,11 +907,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:37:17 GMT + - Wed, 20 May 2026 08:54:15 GMT Pragma: - no-cache RequestId: - - 07008301-ece5-4b9f-a905-68acd60cd443 + - 56138fa0-c840-428e-b8d0-2fe0f2af34de Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -924,9 +937,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/448844d6-a052-48e4-bb64-867c67fa2cd0/items + uri: https://api.fabric.microsoft.com/v1/workspaces/559f9834-34bf-4077-a22e-45e4577bef15/items response: body: string: '{"value": []}' @@ -942,11 +955,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:37:18 GMT + - Wed, 20 May 2026 08:54:16 GMT Pragma: - no-cache RequestId: - - 0e26b9e7-da1a-46c6-aa29-b29b318cb946 + - 868070d8-e01b-4766-be03-8201f7810ce0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -972,9 +985,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/448844d6-a052-48e4-bb64-867c67fa2cd0/items + uri: https://api.fabric.microsoft.com/v1/workspaces/559f9834-34bf-4077-a22e-45e4577bef15/items response: body: string: '{"value": []}' @@ -990,11 +1003,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:37:18 GMT + - Wed, 20 May 2026 08:54:16 GMT Pragma: - no-cache RequestId: - - 584ae2c1-5797-47c7-99a5-4aa006f64878 + - a2a79cfe-31ac-40fb-b977-28162d07f191 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1020,14 +1033,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/c906be27-0926-4ebf-a9e0-346d45059210/items/51b6c549-4251-4b7a-a518-1a7c30fd800a + uri: https://api.fabric.microsoft.com/v1/workspaces/58983045-71a8-45e6-929c-0e2f5f5ea7f4/items/77832fda-96d9-4af8-956d-dcb9b8fea912 response: body: - string: '{"id": "51b6c549-4251-4b7a-a518-1a7c30fd800a", "type": "CosmosDBDatabase", - "displayName": "fabcli000003", "workspaceId": - "c906be27-0926-4ebf-a9e0-346d45059210"}' + string: '{"id": "77832fda-96d9-4af8-956d-dcb9b8fea912", "type": "CosmosDBDatabase", + "displayName": "fabcli000003", "description": "", "workspaceId": "58983045-71a8-45e6-929c-0e2f5f5ea7f4"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1036,17 +1048,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '171' + - '162' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:37:19 GMT + - Wed, 20 May 2026 08:54:17 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 785f039f-40e0-4d48-be44-5154dedb974b + - 8d72de3e-09ea-4d52-99af-a77c2f448ad1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1074,9 +1086,9 @@ interactions: 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/c906be27-0926-4ebf-a9e0-346d45059210/items/51b6c549-4251-4b7a-a518-1a7c30fd800a/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/58983045-71a8-45e6-929c-0e2f5f5ea7f4/items/77832fda-96d9-4af8-956d-dcb9b8fea912/getDefinition response: body: string: 'null' @@ -1092,13 +1104,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:37:20 GMT + - Wed, 20 May 2026 08:54:19 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b8cc69c5-945a-411b-aaae-b8533a34c352 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f5f7d386-5750-4452-9fed-0920172b0290 Pragma: - no-cache RequestId: - - 7e4c917c-cef9-4811-8e17-0df51acc5d43 + - 40785a43-df10-4b36-bdc6-fd1e40052f7a Retry-After: - '20' Strict-Transport-Security: @@ -1112,7 +1124,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - b8cc69c5-945a-411b-aaae-b8533a34c352 + - f5f7d386-5750-4452-9fed-0920172b0290 status: code: 202 message: Accepted @@ -1128,13 +1140,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b8cc69c5-945a-411b-aaae-b8533a34c352 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f5f7d386-5750-4452-9fed-0920172b0290 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:37:21.0750742", - "lastUpdatedTimeUtc": "2026-02-06T07:37:21.7938337", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:54:19.6966854", + "lastUpdatedTimeUtc": "2026-05-20T08:54:20.652388", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1144,17 +1156,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '130' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:37:42 GMT + - Wed, 20 May 2026 08:54:39 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b8cc69c5-945a-411b-aaae-b8533a34c352/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f5f7d386-5750-4452-9fed-0920172b0290/result Pragma: - no-cache RequestId: - - 32c19385-29db-4592-9306-f8f0988a802a + - 5165eceb-fbab-43c9-8b36-7f5de8cd38f1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1162,7 +1174,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - b8cc69c5-945a-411b-aaae-b8533a34c352 + - f5f7d386-5750-4452-9fed-0920172b0290 status: code: 200 message: OK @@ -1178,13 +1190,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b8cc69c5-945a-411b-aaae-b8533a34c352/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f5f7d386-5750-4452-9fed-0920172b0290/result response: body: string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL0Nvc21vc0RCL2RlZmluaXRpb24vQ29zbW9zREIvMi4wLjAvc2NoZW1hLmpzb24iLAogICJjb250YWluZXJzIjogW10KfQ==", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkNvc21vc0RCRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMyIsCiAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkNvc21vc0RCRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMyIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -1196,11 +1208,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 07:37:43 GMT + - Wed, 20 May 2026 08:54:41 GMT Pragma: - no-cache RequestId: - - af254726-ae87-4aae-a6ff-60f7a5513854 + - 04be8e3d-3951-42eb-a92c-1ccce212eb1b Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1213,10 +1225,9 @@ interactions: code: 200 message: OK - request: - body: '{"type": "CosmosDBDatabase", "displayName": - "fabcli000003", "definition": {"parts": [{"path": "definition.json", "payload": - "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL0Nvc21vc0RCL2RlZmluaXRpb24vQ29zbW9zREIvMi4wLjAvc2NoZW1hLmpzb24iLAogICJjb250YWluZXJzIjogW10KfQ==", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkNvc21vc0RCRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMyIsCiAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + body: '{"type": "CosmosDBDatabase", "displayName": "fabcli000003", "definition": + {"parts": [{"path": "definition.json", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL0Nvc21vc0RCL2RlZmluaXRpb24vQ29zbW9zREIvMi4wLjAvc2NoZW1hLmpzb24iLAogICJjb250YWluZXJzIjogW10KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkNvc21vc0RCRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMyIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", "payloadType": "InlineBase64"}]}, "folderId": null}' headers: Accept: @@ -1226,13 +1237,13 @@ interactions: Connection: - keep-alive Content-Length: - - '941' + - '860' 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/448844d6-a052-48e4-bb64-867c67fa2cd0/items + uri: https://api.fabric.microsoft.com/v1/workspaces/559f9834-34bf-4077-a22e-45e4577bef15/items response: body: string: 'null' @@ -1248,15 +1259,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:37:45 GMT + - Wed, 20 May 2026 08:54:44 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/088b2165-752d-4b35-80d4-31848f28bda5 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f211be95-48b6-408b-adfc-47942926ae55 Pragma: - no-cache RequestId: - - 2103ce00-d2c9-4553-8967-7224846d421a + - c24491f5-736a-4950-88b1-6d5731e9445b Retry-After: - '20' Strict-Transport-Security: @@ -1270,7 +1281,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 088b2165-752d-4b35-80d4-31848f28bda5 + - f211be95-48b6-408b-adfc-47942926ae55 status: code: 202 message: Accepted @@ -1286,13 +1297,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/088b2165-752d-4b35-80d4-31848f28bda5 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f211be95-48b6-408b-adfc-47942926ae55 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:37:45.0335495", - "lastUpdatedTimeUtc": "2026-02-06T07:38:04.9271723", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:54:42.9541652", + "lastUpdatedTimeUtc": "2026-05-20T08:55:03.3531451", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1306,13 +1317,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:38:07 GMT + - Wed, 20 May 2026 08:55:05 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/088b2165-752d-4b35-80d4-31848f28bda5/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f211be95-48b6-408b-adfc-47942926ae55/result Pragma: - no-cache RequestId: - - 736701aa-18a8-406a-a07b-4cb6f37f84f6 + - 6b02e4b7-2530-478a-a3b8-a0545ca2299a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1320,7 +1331,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 088b2165-752d-4b35-80d4-31848f28bda5 + - f211be95-48b6-408b-adfc-47942926ae55 status: code: 200 message: OK @@ -1336,14 +1347,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/088b2165-752d-4b35-80d4-31848f28bda5/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f211be95-48b6-408b-adfc-47942926ae55/result response: body: - string: '{"id": "bd7b7b87-b5e2-41d3-a9f7-a977f2247978", "type": "CosmosDBDatabase", - "displayName": "fabcli000003", "workspaceId": - "448844d6-a052-48e4-bb64-867c67fa2cd0"}' + string: '{"id": "5e042659-6b28-46d9-9b9d-9a45e2b3c427", "type": "CosmosDBDatabase", + "displayName": "fabcli000003", "description": "", "workspaceId": "559f9834-34bf-4077-a22e-45e4577bef15"}' headers: Access-Control-Expose-Headers: - RequestId @@ -1354,11 +1364,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 07:38:08 GMT + - Wed, 20 May 2026 08:55:05 GMT Pragma: - no-cache RequestId: - - b1db9e2d-f96e-40f4-800a-aba096196c96 + - cc65db3a-b7db-46b1-a750-870306a575bb Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1382,16 +1392,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "c906be27-0926-4ebf-a9e0-346d45059210", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "448844d6-a052-48e4-bb64-867c67fa2cd0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "58983045-71a8-45e6-929c-0e2f5f5ea7f4", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "559f9834-34bf-4077-a22e-45e4577bef15", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1400,15 +1413,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:38:09 GMT + - Wed, 20 May 2026 08:55:06 GMT Pragma: - no-cache RequestId: - - 9e083812-3024-4fb7-b8a8-7777103d6580 + - e1a968e7-502d-4f76-905b-f8a7233f00f8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1434,16 +1447,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/c906be27-0926-4ebf-a9e0-346d45059210/items + uri: https://api.fabric.microsoft.com/v1/workspaces/58983045-71a8-45e6-929c-0e2f5f5ea7f4/items response: body: - string: '{"value": [{"id": "b246ac32-5133-45cf-8360-c3eaf0aa7b5c", "type": "SQLEndpoint", - "displayName": "fabcli000003", "description": "", "workspaceId": "c906be27-0926-4ebf-a9e0-346d45059210"}, - {"id": "51b6c549-4251-4b7a-a518-1a7c30fd800a", "type": "CosmosDBDatabase", - "displayName": "fabcli000003", "workspaceId": - "c906be27-0926-4ebf-a9e0-346d45059210"}]}' + string: '{"value": [{"id": "42801e61-c092-4ec6-8add-660427108a10", "type": "SQLEndpoint", + "displayName": "fabcli000003", "description": "", "workspaceId": "58983045-71a8-45e6-929c-0e2f5f5ea7f4"}, + {"id": "77832fda-96d9-4af8-956d-dcb9b8fea912", "type": "CosmosDBDatabase", + "displayName": "fabcli000003", "description": "", "workspaceId": "58983045-71a8-45e6-929c-0e2f5f5ea7f4"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1452,63 +1464,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '232' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:38:10 GMT - Pragma: - - no-cache - RequestId: - - d591e5a6-7732-476e-ab22-a7311c9be269 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/c906be27-0926-4ebf-a9e0-346d45059210/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' + - '220' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:38:10 GMT + - Wed, 20 May 2026 08:55:07 GMT Pragma: - no-cache RequestId: - - db07b778-a3f2-45a2-aaa1-59d2c16eaeeb + - 0a0a3faa-48c1-4c8a-80f2-27714a99a73b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1534,16 +1498,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "c906be27-0926-4ebf-a9e0-346d45059210", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "448844d6-a052-48e4-bb64-867c67fa2cd0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "58983045-71a8-45e6-929c-0e2f5f5ea7f4", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "559f9834-34bf-4077-a22e-45e4577bef15", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1552,15 +1519,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:38:11 GMT + - Wed, 20 May 2026 08:55:08 GMT Pragma: - no-cache RequestId: - - da175b1a-e0ed-43a1-873a-7830b1f9ff02 + - 5e8a79db-b63d-4a71-a535-881b946cea32 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1586,14 +1553,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/448844d6-a052-48e4-bb64-867c67fa2cd0/items + uri: https://api.fabric.microsoft.com/v1/workspaces/559f9834-34bf-4077-a22e-45e4577bef15/items response: body: - string: '{"value": [{"id": "bd7b7b87-b5e2-41d3-a9f7-a977f2247978", "type": "CosmosDBDatabase", - "displayName": "fabcli000003", "workspaceId": - "448844d6-a052-48e4-bb64-867c67fa2cd0"}]}' + string: '{"value": [{"id": "5e042659-6b28-46d9-9b9d-9a45e2b3c427", "type": "CosmosDBDatabase", + "displayName": "fabcli000003", "description": "", "workspaceId": "559f9834-34bf-4077-a22e-45e4577bef15"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1602,63 +1568,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '183' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:38:13 GMT - Pragma: - - no-cache - RequestId: - - 0f316779-11b8-487e-ad33-ca6c2d1f7f66 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/448844d6-a052-48e4-bb64-867c67fa2cd0/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' + - '174' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:38:14 GMT + - Wed, 20 May 2026 08:55:09 GMT Pragma: - no-cache RequestId: - - 7c884753-ffe4-42d4-b2ad-740bfdcabd28 + - e45043fa-cb3d-4aa1-9eb9-753466bf35c9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1684,16 +1602,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "c906be27-0926-4ebf-a9e0-346d45059210", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "448844d6-a052-48e4-bb64-867c67fa2cd0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "58983045-71a8-45e6-929c-0e2f5f5ea7f4", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "559f9834-34bf-4077-a22e-45e4577bef15", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1702,15 +1623,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:38:14 GMT + - Wed, 20 May 2026 08:55:09 GMT Pragma: - no-cache RequestId: - - 6a2a19be-7e03-434c-8618-2988e683efd4 + - 83fe70cc-bc77-4cd1-8278-d9da38527045 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1736,16 +1657,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/c906be27-0926-4ebf-a9e0-346d45059210/items + uri: https://api.fabric.microsoft.com/v1/workspaces/58983045-71a8-45e6-929c-0e2f5f5ea7f4/items response: body: - string: '{"value": [{"id": "b246ac32-5133-45cf-8360-c3eaf0aa7b5c", "type": "SQLEndpoint", - "displayName": "fabcli000003", "description": "", "workspaceId": "c906be27-0926-4ebf-a9e0-346d45059210"}, - {"id": "51b6c549-4251-4b7a-a518-1a7c30fd800a", "type": "CosmosDBDatabase", - "displayName": "fabcli000003", "workspaceId": - "c906be27-0926-4ebf-a9e0-346d45059210"}]}' + string: '{"value": [{"id": "42801e61-c092-4ec6-8add-660427108a10", "type": "SQLEndpoint", + "displayName": "fabcli000003", "description": "", "workspaceId": "58983045-71a8-45e6-929c-0e2f5f5ea7f4"}, + {"id": "77832fda-96d9-4af8-956d-dcb9b8fea912", "type": "CosmosDBDatabase", + "displayName": "fabcli000003", "description": "", "workspaceId": "58983045-71a8-45e6-929c-0e2f5f5ea7f4"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1754,15 +1674,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '232' + - '220' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:38:15 GMT + - Wed, 20 May 2026 08:55:10 GMT Pragma: - no-cache RequestId: - - 6f83c375-c8b9-413a-b37b-b26a1fd00283 + - 594ca7f6-8220-4a03-b9a3-b7229bbc77be Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1790,9 +1710,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/c906be27-0926-4ebf-a9e0-346d45059210/items/51b6c549-4251-4b7a-a518-1a7c30fd800a + uri: https://api.fabric.microsoft.com/v1/workspaces/58983045-71a8-45e6-929c-0e2f5f5ea7f4/items/77832fda-96d9-4af8-956d-dcb9b8fea912 response: body: string: '' @@ -1808,11 +1728,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:38:15 GMT + - Wed, 20 May 2026 08:55:12 GMT Pragma: - no-cache RequestId: - - e7cc3cdf-c55d-46bc-87fc-cbd009b4f617 + - 86e33096-a54a-4251-8a1f-a334b9b554b8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1838,16 +1758,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "c906be27-0926-4ebf-a9e0-346d45059210", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "448844d6-a052-48e4-bb64-867c67fa2cd0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "58983045-71a8-45e6-929c-0e2f5f5ea7f4", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "559f9834-34bf-4077-a22e-45e4577bef15", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1856,15 +1779,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:38:17 GMT + - Wed, 20 May 2026 08:55:12 GMT Pragma: - no-cache RequestId: - - 38f06b31-d3bb-4432-ac31-33ef6ffe6b66 + - d8470eab-6be2-40b0-bc0c-13357b1d58a7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1890,9 +1813,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/c906be27-0926-4ebf-a9e0-346d45059210/items + uri: https://api.fabric.microsoft.com/v1/workspaces/58983045-71a8-45e6-929c-0e2f5f5ea7f4/items response: body: string: '{"value": []}' @@ -1908,11 +1831,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:38:18 GMT + - Wed, 20 May 2026 08:55:14 GMT Pragma: - no-cache RequestId: - - b619a721-c87f-47d0-86a2-f18083518686 + - fbb846e7-9553-4d50-8ed1-b38fcfe812f9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1940,9 +1863,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/c906be27-0926-4ebf-a9e0-346d45059210 + uri: https://api.fabric.microsoft.com/v1/workspaces/58983045-71a8-45e6-929c-0e2f5f5ea7f4 response: body: string: '' @@ -1958,11 +1881,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:38:18 GMT + - Wed, 20 May 2026 08:55:14 GMT Pragma: - no-cache RequestId: - - 600900e1-24d6-4201-8abc-15fba74aa9e4 + - 10026bd3-b266-4b54-a947-95b647e5cc79 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1988,15 +1911,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "448844d6-a052-48e4-bb64-867c67fa2cd0", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "559f9834-34bf-4077-a22e-45e4577bef15", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2005,15 +1930,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2842' + - '2659' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:38:19 GMT + - Wed, 20 May 2026 08:55:16 GMT Pragma: - no-cache RequestId: - - a7a61ca0-7bf1-4579-85c2-c1f71709f962 + - 908802c5-11b2-49cf-b852-85bc43cb1167 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2039,16 +1964,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/448844d6-a052-48e4-bb64-867c67fa2cd0/items + uri: https://api.fabric.microsoft.com/v1/workspaces/559f9834-34bf-4077-a22e-45e4577bef15/items response: body: - string: '{"value": [{"id": "3f4959e1-e778-45a5-89e5-26c1c50eb631", "type": "SQLEndpoint", - "displayName": "fabcli000003", "description": "", "workspaceId": "448844d6-a052-48e4-bb64-867c67fa2cd0"}, - {"id": "bd7b7b87-b5e2-41d3-a9f7-a977f2247978", "type": "CosmosDBDatabase", - "displayName": "fabcli000003", "workspaceId": - "448844d6-a052-48e4-bb64-867c67fa2cd0"}]}' + string: '{"value": [{"id": "9c344f5b-4790-4d0f-a95c-de4aee03780f", "type": "SQLEndpoint", + "displayName": "fabcli000003", "description": "", "workspaceId": "559f9834-34bf-4077-a22e-45e4577bef15"}, + {"id": "5e042659-6b28-46d9-9b9d-9a45e2b3c427", "type": "CosmosDBDatabase", + "displayName": "fabcli000003", "description": "", "workspaceId": "559f9834-34bf-4077-a22e-45e4577bef15"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2057,15 +1981,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '234' + - '219' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:38:20 GMT + - Wed, 20 May 2026 08:55:17 GMT Pragma: - no-cache RequestId: - - 611dc7eb-2be1-45c2-b57e-09b9a605e213 + - 92baecb7-c88b-41c5-8846-3c3c355f20fe Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2093,9 +2017,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/448844d6-a052-48e4-bb64-867c67fa2cd0 + uri: https://api.fabric.microsoft.com/v1/workspaces/559f9834-34bf-4077-a22e-45e4577bef15 response: body: string: '' @@ -2111,11 +2035,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:38:21 GMT + - Wed, 20 May 2026 08:55:17 GMT Pragma: - no-cache RequestId: - - 09a64a1d-1f95-4bb5-a796-86a57579d01a + - 22033bff-eb56-41aa-8b56-273f95857f29 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[DataPipeline].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[DataPipeline].yaml index 107c6133e..1cabcf27b 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[DataPipeline].yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[DataPipeline].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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:28:38 GMT + - Wed, 20 May 2026 08:45:44 GMT Pragma: - no-cache RequestId: - - dc96f787-4ba6-4337-be0c-2e7717e97992 + - 4cc26c1d-fdab-4aea-afc8-0b33bb3fdb54 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:28:38 GMT + - Wed, 20 May 2026 08:45:44 GMT Pragma: - no-cache RequestId: - - 129300f5-6102-4f22-9ae4-4cd396a4d837 + - 51c05600-74e5-49e6-8627-603c34d2c903 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,7 +113,7 @@ 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/capacities response: @@ -127,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '425' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:28:44 GMT + - Wed, 20 May 2026 08:45:52 GMT Pragma: - no-cache RequestId: - - 032328f1-4237-4ac7-bcfe-2ea4ba87b390 + - 84a6d9fd-5752-4fb3-b02d-3534b7e6ad67 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -150,8 +152,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -160,16 +161,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "e3da2f0d-4eac-4b83-8491-b595f9ab3695", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "59668c5f-5395-491e-b9ec-ddd5aa77837c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -178,17 +180,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '154' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:28:51 GMT + - Wed, 20 May 2026 08:45:58 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/e3da2f0d-4eac-4b83-8491-b595f9ab3695 + - https://api.fabric.microsoft.com/v1/workspaces/59668c5f-5395-491e-b9ec-ddd5aa77837c Pragma: - no-cache RequestId: - - 334798d7-bfe4-4b54-9aaf-cfa98854eb68 + - c298fe3e-f430-4e09-a48f-c16efef418b4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,15 +216,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e3da2f0d-4eac-4b83-8491-b595f9ab3695", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "59668c5f-5395-491e-b9ec-ddd5aa77837c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -231,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2840' + - '2658' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:28:52 GMT + - Wed, 20 May 2026 08:46:00 GMT Pragma: - no-cache RequestId: - - 8c94a809-3e4b-45e4-97cf-e509bcf2e845 + - b6cce42e-ad0a-40d2-be65-609fc08dabb7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,15 +269,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e3da2f0d-4eac-4b83-8491-b595f9ab3695", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "59668c5f-5395-491e-b9ec-ddd5aa77837c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -282,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2840' + - '2658' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:28:53 GMT + - Wed, 20 May 2026 08:46:00 GMT Pragma: - no-cache RequestId: - - 91831c8f-4b07-4a6d-80c4-c736ac5bdee2 + - 509fc127-f7f9-4d3b-8bd3-9d9d48a172c7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,7 +322,7 @@ 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/capacities response: @@ -332,15 +338,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:28:58 GMT + - Wed, 20 May 2026 08:46:03 GMT Pragma: - no-cache RequestId: - - 273eda3c-5f7b-4d79-990c-16e3e258eeda + - 4365c9ee-a5fa-4a5c-a27e-1e6bf90dfa63 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -355,8 +361,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000002", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -365,16 +370,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "b250880c-1c62-442c-9480-8f836a8d2bc2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "6c925fdc-4687-4664-b9de-4e8f40be195a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -383,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '154' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:29:05 GMT + - Wed, 20 May 2026 08:46:09 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/b250880c-1c62-442c-9480-8f836a8d2bc2 + - https://api.fabric.microsoft.com/v1/workspaces/6c925fdc-4687-4664-b9de-4e8f40be195a Pragma: - no-cache RequestId: - - 89777ff2-80e5-4b47-a339-7cefa1a41a33 + - c7fd2c67-131b-4973-a603-ab2fb9167014 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -419,16 +425,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e3da2f0d-4eac-4b83-8491-b595f9ab3695", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b250880c-1c62-442c-9480-8f836a8d2bc2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "59668c5f-5395-491e-b9ec-ddd5aa77837c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6c925fdc-4687-4664-b9de-4e8f40be195a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -437,15 +446,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:29:06 GMT + - Wed, 20 May 2026 08:46:10 GMT Pragma: - no-cache RequestId: - - df3f0ce6-134d-43b9-813d-629f563899a7 + - 01edb522-fbae-4310-9fb5-c0a6eaf2720f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -471,9 +480,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/e3da2f0d-4eac-4b83-8491-b595f9ab3695/items + uri: https://api.fabric.microsoft.com/v1/workspaces/59668c5f-5395-491e-b9ec-ddd5aa77837c/items response: body: string: '{"value": []}' @@ -489,11 +498,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:29:07 GMT + - Wed, 20 May 2026 08:46:12 GMT Pragma: - no-cache RequestId: - - 8732ef86-2921-43ab-9c72-d8c559b9427f + - de993058-fc88-4b17-a9f0-bf5e6d023600 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -519,9 +528,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/e3da2f0d-4eac-4b83-8491-b595f9ab3695/items + uri: https://api.fabric.microsoft.com/v1/workspaces/59668c5f-5395-491e-b9ec-ddd5aa77837c/items response: body: string: '{"value": []}' @@ -537,11 +546,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:29:08 GMT + - Wed, 20 May 2026 08:46:12 GMT Pragma: - no-cache RequestId: - - 95f1a818-b3e7-48b4-b249-e219f7650d97 + - 6b605495-112f-4d8e-9163-63628305c3a1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -556,8 +565,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000003", "type": - "DataPipeline", "folderId": null}' + body: '{"displayName": "fabcli000003", "type": "DataPipeline", "folderId": null}' headers: Accept: - '*/*' @@ -566,18 +574,17 @@ interactions: Connection: - keep-alive Content-Length: - - '110' + - '77' 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/e3da2f0d-4eac-4b83-8491-b595f9ab3695/dataPipelines + uri: https://api.fabric.microsoft.com/v1/workspaces/59668c5f-5395-491e-b9ec-ddd5aa77837c/dataPipelines response: body: - string: '{"id": "6a80e97c-e5a2-42f8-8c4d-6bd54f22cbf3", "type": "DataPipeline", - "displayName": "fabcli000003", "workspaceId": - "e3da2f0d-4eac-4b83-8491-b595f9ab3695"}' + string: '{"id": "351637d2-66b0-4e7c-8b18-24bfc1f72197", "type": "DataPipeline", + "displayName": "fabcli000003", "description": "", "workspaceId": "59668c5f-5395-491e-b9ec-ddd5aa77837c"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -586,17 +593,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '170' + - '160' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:29:14 GMT + - Wed, 20 May 2026 08:46:17 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 4b5e3d2b-68f3-42a6-8b0e-60b95a5629c2 + - e8f1afc5-a543-4d9b-a639-a3cd84522688 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -622,16 +629,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e3da2f0d-4eac-4b83-8491-b595f9ab3695", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b250880c-1c62-442c-9480-8f836a8d2bc2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "59668c5f-5395-491e-b9ec-ddd5aa77837c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6c925fdc-4687-4664-b9de-4e8f40be195a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -640,15 +650,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:29:15 GMT + - Wed, 20 May 2026 08:46:18 GMT Pragma: - no-cache RequestId: - - ddc5f1ef-643d-40ff-83f2-95b873f42d90 + - 92b5879d-4c15-4a99-9e14-0a65b4456904 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -674,14 +684,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/e3da2f0d-4eac-4b83-8491-b595f9ab3695/items + uri: https://api.fabric.microsoft.com/v1/workspaces/59668c5f-5395-491e-b9ec-ddd5aa77837c/items response: body: - string: '{"value": [{"id": "6a80e97c-e5a2-42f8-8c4d-6bd54f22cbf3", "type": "DataPipeline", - "displayName": "fabcli000003", "workspaceId": - "e3da2f0d-4eac-4b83-8491-b595f9ab3695"}]}' + string: '{"value": [{"id": "351637d2-66b0-4e7c-8b18-24bfc1f72197", "type": "DataPipeline", + "displayName": "fabcli000003", "description": "", "workspaceId": "59668c5f-5395-491e-b9ec-ddd5aa77837c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -690,15 +699,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '169' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:29:15 GMT + - Wed, 20 May 2026 08:46:19 GMT Pragma: - no-cache RequestId: - - 7a33079c-d93c-4195-b075-fed77ca580ad + - c07e55b1-59a6-48ab-b4e6-23a43d6523d3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -724,16 +733,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e3da2f0d-4eac-4b83-8491-b595f9ab3695", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b250880c-1c62-442c-9480-8f836a8d2bc2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "59668c5f-5395-491e-b9ec-ddd5aa77837c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6c925fdc-4687-4664-b9de-4e8f40be195a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -742,15 +754,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:29:16 GMT + - Wed, 20 May 2026 08:46:20 GMT Pragma: - no-cache RequestId: - - 5f00351c-267d-4ae7-b794-8e71696dc4ed + - 337670ad-f2cf-43b9-a5d0-2545249e293f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -776,9 +788,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/b250880c-1c62-442c-9480-8f836a8d2bc2/items + uri: https://api.fabric.microsoft.com/v1/workspaces/6c925fdc-4687-4664-b9de-4e8f40be195a/items response: body: string: '{"value": []}' @@ -794,11 +806,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:29:17 GMT + - Wed, 20 May 2026 08:46:21 GMT Pragma: - no-cache RequestId: - - 53cc469a-6d2e-49d0-bf3e-ab5e870f8ff3 + - b1d5b268-8266-4f51-a9ff-f0cd2bf3b952 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -824,9 +836,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/b250880c-1c62-442c-9480-8f836a8d2bc2/items + uri: https://api.fabric.microsoft.com/v1/workspaces/6c925fdc-4687-4664-b9de-4e8f40be195a/items response: body: string: '{"value": []}' @@ -842,11 +854,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:29:17 GMT + - Wed, 20 May 2026 08:46:22 GMT Pragma: - no-cache RequestId: - - 2fc2cfa4-d4b2-4337-b342-c50ca14383a2 + - 44d3805f-a770-409a-80f9-af3b4be71b35 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -872,9 +884,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/b250880c-1c62-442c-9480-8f836a8d2bc2/items + uri: https://api.fabric.microsoft.com/v1/workspaces/6c925fdc-4687-4664-b9de-4e8f40be195a/items response: body: string: '{"value": []}' @@ -890,11 +902,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:29:18 GMT + - Wed, 20 May 2026 08:46:23 GMT Pragma: - no-cache RequestId: - - 8c4073ce-2050-4db7-ba74-384a91ca164b + - 18945b2b-24aa-4d30-b1e9-13244e417540 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -920,14 +932,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/e3da2f0d-4eac-4b83-8491-b595f9ab3695/items/6a80e97c-e5a2-42f8-8c4d-6bd54f22cbf3 + uri: https://api.fabric.microsoft.com/v1/workspaces/59668c5f-5395-491e-b9ec-ddd5aa77837c/items/351637d2-66b0-4e7c-8b18-24bfc1f72197 response: body: - string: '{"id": "6a80e97c-e5a2-42f8-8c4d-6bd54f22cbf3", "type": "DataPipeline", - "displayName": "fabcli000003", "workspaceId": - "e3da2f0d-4eac-4b83-8491-b595f9ab3695"}' + string: '{"id": "351637d2-66b0-4e7c-8b18-24bfc1f72197", "type": "DataPipeline", + "displayName": "fabcli000003", "description": "", "workspaceId": "59668c5f-5395-491e-b9ec-ddd5aa77837c"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -936,17 +947,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '170' + - '160' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:29:19 GMT + - Wed, 20 May 2026 08:46:24 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 980bc57d-1057-4e0b-8ecf-da6f428fbbe5 + - 8d2e812b-bf34-4d14-96be-f71aca6b38a0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -974,14 +985,14 @@ interactions: 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/e3da2f0d-4eac-4b83-8491-b595f9ab3695/items/6a80e97c-e5a2-42f8-8c4d-6bd54f22cbf3/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/59668c5f-5395-491e-b9ec-ddd5aa77837c/items/351637d2-66b0-4e7c-8b18-24bfc1f72197/getDefinition response: body: string: '{"definition": {"parts": [{"path": "pipeline-content.json", "payload": "ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==", "payloadType": - "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -991,15 +1002,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '457' + - '441' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:29:19 GMT + - Wed, 20 May 2026 08:46:25 GMT Pragma: - no-cache RequestId: - - f760ae55-e1a9-4c1c-a2c9-1a56a300ec87 + - 53182ab0-70ec-4245-85c3-bd3c1392234f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1014,10 +1025,9 @@ interactions: code: 200 message: OK - request: - body: '{"type": "DataPipeline", "displayName": - "fabcli000003", "definition": {"parts": [{"path": "pipeline-content.json", "payload": - "ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==", "payloadType": - "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + body: '{"type": "DataPipeline", "displayName": "fabcli000003", "definition": {"parts": + [{"path": "pipeline-content.json", "payload": "ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}, "folderId": null}' headers: Accept: @@ -1027,18 +1037,17 @@ interactions: Connection: - keep-alive Content-Length: - - '811' + - '726' 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/b250880c-1c62-442c-9480-8f836a8d2bc2/items + uri: https://api.fabric.microsoft.com/v1/workspaces/6c925fdc-4687-4664-b9de-4e8f40be195a/items response: body: - string: '{"id": "b0b3a956-23c9-4117-8a94-ed73934bd098", "type": "DataPipeline", - "displayName": "fabcli000003", "workspaceId": - "b250880c-1c62-442c-9480-8f836a8d2bc2"}' + string: '{"id": "b50c58ed-2826-4fbf-872a-75edde32d2e4", "type": "DataPipeline", + "displayName": "fabcli000003", "description": "", "workspaceId": "6c925fdc-4687-4664-b9de-4e8f40be195a"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1047,17 +1056,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '170' + - '159' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:29:25 GMT + - Wed, 20 May 2026 08:46:32 GMT ETag: - '""' Pragma: - no-cache RequestId: - - d539f675-e406-4282-a48b-7e1b95949389 + - bb4562fa-56db-4d2c-8d97-d22a6d3cf178 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1083,16 +1092,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e3da2f0d-4eac-4b83-8491-b595f9ab3695", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b250880c-1c62-442c-9480-8f836a8d2bc2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "59668c5f-5395-491e-b9ec-ddd5aa77837c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6c925fdc-4687-4664-b9de-4e8f40be195a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1101,15 +1113,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:29:25 GMT + - Wed, 20 May 2026 08:46:33 GMT Pragma: - no-cache RequestId: - - a2296e80-abc5-4755-b0aa-8ca0bb322506 + - 6dbba4a1-c21e-4284-becd-1717a94b2ed7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1135,14 +1147,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/e3da2f0d-4eac-4b83-8491-b595f9ab3695/items + uri: https://api.fabric.microsoft.com/v1/workspaces/59668c5f-5395-491e-b9ec-ddd5aa77837c/items response: body: - string: '{"value": [{"id": "6a80e97c-e5a2-42f8-8c4d-6bd54f22cbf3", "type": "DataPipeline", - "displayName": "fabcli000003", "workspaceId": - "e3da2f0d-4eac-4b83-8491-b595f9ab3695"}]}' + string: '{"value": [{"id": "351637d2-66b0-4e7c-8b18-24bfc1f72197", "type": "DataPipeline", + "displayName": "fabcli000003", "description": "", "workspaceId": "59668c5f-5395-491e-b9ec-ddd5aa77837c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1151,63 +1162,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:29:26 GMT - Pragma: - - no-cache - RequestId: - - 559a7772-cc90-44f6-a960-e4b3a4d7dee1 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e3da2f0d-4eac-4b83-8491-b595f9ab3695/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' + - '169' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:29:27 GMT + - Wed, 20 May 2026 08:46:33 GMT Pragma: - no-cache RequestId: - - 02ecaa3a-fb46-4bf6-85ba-cc7e59940766 + - 26fd7acc-6bcc-46ba-8b30-9de99ab3c57e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1233,16 +1196,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e3da2f0d-4eac-4b83-8491-b595f9ab3695", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b250880c-1c62-442c-9480-8f836a8d2bc2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "59668c5f-5395-491e-b9ec-ddd5aa77837c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6c925fdc-4687-4664-b9de-4e8f40be195a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1251,15 +1217,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:29:28 GMT + - Wed, 20 May 2026 08:46:34 GMT Pragma: - no-cache RequestId: - - 9f988a7d-edbe-48db-9db3-7882e99e7de6 + - 5aa568b6-67bc-4970-9e6a-6590047f216b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1285,14 +1251,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/b250880c-1c62-442c-9480-8f836a8d2bc2/items + uri: https://api.fabric.microsoft.com/v1/workspaces/6c925fdc-4687-4664-b9de-4e8f40be195a/items response: body: - string: '{"value": [{"id": "b0b3a956-23c9-4117-8a94-ed73934bd098", "type": "DataPipeline", - "displayName": "fabcli000003", "workspaceId": - "b250880c-1c62-442c-9480-8f836a8d2bc2"}]}' + string: '{"value": [{"id": "b50c58ed-2826-4fbf-872a-75edde32d2e4", "type": "DataPipeline", + "displayName": "fabcli000003", "description": "", "workspaceId": "6c925fdc-4687-4664-b9de-4e8f40be195a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1301,63 +1266,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '181' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:29:29 GMT - Pragma: - - no-cache - RequestId: - - 8a40973a-61d1-4954-ae7c-8ccf9865a884 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/b250880c-1c62-442c-9480-8f836a8d2bc2/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' + - '170' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:29:29 GMT + - Wed, 20 May 2026 08:46:34 GMT Pragma: - no-cache RequestId: - - e64a43a9-0380-48f1-84d9-be6f34da4f74 + - 55ae0ffc-8462-474c-b4f8-dead29bdb5ad Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1383,16 +1300,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e3da2f0d-4eac-4b83-8491-b595f9ab3695", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b250880c-1c62-442c-9480-8f836a8d2bc2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "59668c5f-5395-491e-b9ec-ddd5aa77837c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6c925fdc-4687-4664-b9de-4e8f40be195a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1401,15 +1321,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:29:30 GMT + - Wed, 20 May 2026 08:46:36 GMT Pragma: - no-cache RequestId: - - c40f91ae-eee2-4e6c-bb42-ec215a226abd + - 5818f417-6fc9-4ad1-a7bc-92e373015d0d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1435,14 +1355,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/e3da2f0d-4eac-4b83-8491-b595f9ab3695/items + uri: https://api.fabric.microsoft.com/v1/workspaces/59668c5f-5395-491e-b9ec-ddd5aa77837c/items response: body: - string: '{"value": [{"id": "6a80e97c-e5a2-42f8-8c4d-6bd54f22cbf3", "type": "DataPipeline", - "displayName": "fabcli000003", "workspaceId": - "e3da2f0d-4eac-4b83-8491-b595f9ab3695"}]}' + string: '{"value": [{"id": "351637d2-66b0-4e7c-8b18-24bfc1f72197", "type": "DataPipeline", + "displayName": "fabcli000003", "description": "", "workspaceId": "59668c5f-5395-491e-b9ec-ddd5aa77837c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1451,15 +1370,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '169' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:29:30 GMT + - Wed, 20 May 2026 08:46:37 GMT Pragma: - no-cache RequestId: - - f0f86246-40d9-4300-9723-f2b9f30d6676 + - 8d36e261-ad84-4961-8c1c-13f4f3bb097b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1487,9 +1406,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/e3da2f0d-4eac-4b83-8491-b595f9ab3695/items/6a80e97c-e5a2-42f8-8c4d-6bd54f22cbf3 + uri: https://api.fabric.microsoft.com/v1/workspaces/59668c5f-5395-491e-b9ec-ddd5aa77837c/items/351637d2-66b0-4e7c-8b18-24bfc1f72197 response: body: string: '' @@ -1505,11 +1424,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:29:31 GMT + - Wed, 20 May 2026 08:46:37 GMT Pragma: - no-cache RequestId: - - 58d34d69-cf66-450b-be5f-9abdd08ea3e4 + - 240a973c-77cc-4095-857f-c235c0564130 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1535,16 +1454,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e3da2f0d-4eac-4b83-8491-b595f9ab3695", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b250880c-1c62-442c-9480-8f836a8d2bc2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "59668c5f-5395-491e-b9ec-ddd5aa77837c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6c925fdc-4687-4664-b9de-4e8f40be195a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1553,15 +1475,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:29:32 GMT + - Wed, 20 May 2026 08:46:38 GMT Pragma: - no-cache RequestId: - - 272ac43a-157a-4f45-9f03-406a3c3a8089 + - c8d93906-6dc1-4797-b188-4a076a5c590c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1587,9 +1509,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/e3da2f0d-4eac-4b83-8491-b595f9ab3695/items + uri: https://api.fabric.microsoft.com/v1/workspaces/59668c5f-5395-491e-b9ec-ddd5aa77837c/items response: body: string: '{"value": []}' @@ -1605,11 +1527,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:29:33 GMT + - Wed, 20 May 2026 08:46:40 GMT Pragma: - no-cache RequestId: - - 58d0e492-d44a-43d3-827c-b5191c719468 + - 18c113ac-9afc-41f6-8f1f-cad1329ce34f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1637,9 +1559,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/e3da2f0d-4eac-4b83-8491-b595f9ab3695 + uri: https://api.fabric.microsoft.com/v1/workspaces/59668c5f-5395-491e-b9ec-ddd5aa77837c response: body: string: '' @@ -1655,11 +1577,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:29:34 GMT + - Wed, 20 May 2026 08:46:40 GMT Pragma: - no-cache RequestId: - - e78cabc2-6cab-47da-89dc-9dad384e4269 + - 75fc2b91-3972-4983-a6b7-44cdc168ebad Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1685,15 +1607,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b250880c-1c62-442c-9480-8f836a8d2bc2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6c925fdc-4687-4664-b9de-4e8f40be195a", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1702,15 +1626,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2842' + - '2659' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:29:34 GMT + - Wed, 20 May 2026 08:46:41 GMT Pragma: - no-cache RequestId: - - 76dbfb2d-d7d4-40a2-9b78-836e32df61b0 + - 76a46249-0572-4759-adb8-d03374828fae Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1736,14 +1660,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/b250880c-1c62-442c-9480-8f836a8d2bc2/items + uri: https://api.fabric.microsoft.com/v1/workspaces/6c925fdc-4687-4664-b9de-4e8f40be195a/items response: body: - string: '{"value": [{"id": "b0b3a956-23c9-4117-8a94-ed73934bd098", "type": "DataPipeline", - "displayName": "fabcli000003", "workspaceId": - "b250880c-1c62-442c-9480-8f836a8d2bc2"}]}' + string: '{"value": [{"id": "b50c58ed-2826-4fbf-872a-75edde32d2e4", "type": "DataPipeline", + "displayName": "fabcli000003", "description": "", "workspaceId": "6c925fdc-4687-4664-b9de-4e8f40be195a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1752,15 +1675,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '181' + - '170' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:29:35 GMT + - Wed, 20 May 2026 08:46:42 GMT Pragma: - no-cache RequestId: - - f16b98f8-0916-4abf-8334-05077a23b6bc + - 4701a535-c2cc-41cb-a6ef-be8f43298680 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1788,9 +1711,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/b250880c-1c62-442c-9480-8f836a8d2bc2 + uri: https://api.fabric.microsoft.com/v1/workspaces/6c925fdc-4687-4664-b9de-4e8f40be195a response: body: string: '' @@ -1806,11 +1729,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:29:36 GMT + - Wed, 20 May 2026 08:46:43 GMT Pragma: - no-cache RequestId: - - d263c1fb-c1bc-4a36-8819-2604011eaa73 + - caa73ad3-a3cf-4d05-bb8d-73891ee4c288 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[KQLDashboard].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[KQLDashboard].yaml index ece037666..fd9913e73 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[KQLDashboard].yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[KQLDashboard].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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:29:37 GMT + - Wed, 20 May 2026 08:46:44 GMT Pragma: - no-cache RequestId: - - 74b9a8dc-113a-459c-9615-cedcc7f0bdab + - 1f66b157-ee57-486f-aef0-93674364dc71 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:29:38 GMT + - Wed, 20 May 2026 08:46:44 GMT Pragma: - no-cache RequestId: - - 7f0e3138-2f31-41a4-aeaa-da3d17172feb + - 4a30b882-942c-474b-a791-170d472b428e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,7 +113,7 @@ 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/capacities response: @@ -127,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '429' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:29:42 GMT + - Wed, 20 May 2026 08:46:50 GMT Pragma: - no-cache RequestId: - - 2b6551e6-b291-4f6d-ba36-7a75db658d44 + - 9ccd3c18-b2d7-4a09-904a-826e6982246b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -150,8 +152,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -160,16 +161,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "a444ec59-56d9-4889-a393-8cc9e8d01603", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "fe6ae79a-a620-4a4c-836c-8daae24c2cc9", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -178,17 +180,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '154' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:29:50 GMT + - Wed, 20 May 2026 08:46:56 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/a444ec59-56d9-4889-a393-8cc9e8d01603 + - https://api.fabric.microsoft.com/v1/workspaces/fe6ae79a-a620-4a4c-836c-8daae24c2cc9 Pragma: - no-cache RequestId: - - 1488c156-a741-4633-a644-e9e603604b0d + - 1442a9c6-e496-41e7-8a29-a91c102107cc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,15 +216,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a444ec59-56d9-4889-a393-8cc9e8d01603", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fe6ae79a-a620-4a4c-836c-8daae24c2cc9", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -231,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2839' + - '2658' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:29:50 GMT + - Wed, 20 May 2026 08:46:57 GMT Pragma: - no-cache RequestId: - - 7228262a-0315-4779-b879-b815c65d98a9 + - 5fc56b3b-9135-48d6-9f36-cf7e4e968662 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,15 +269,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a444ec59-56d9-4889-a393-8cc9e8d01603", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fe6ae79a-a620-4a4c-836c-8daae24c2cc9", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -282,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2839' + - '2658' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:29:51 GMT + - Wed, 20 May 2026 08:46:58 GMT Pragma: - no-cache RequestId: - - 1f506663-e049-4b3d-95c7-5a9254ec0ead + - c5034d88-51bf-40e3-a845-f22621fe7eae Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,7 +322,7 @@ 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/capacities response: @@ -332,15 +338,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:29:56 GMT + - Wed, 20 May 2026 08:47:04 GMT Pragma: - no-cache RequestId: - - 37a95123-ba69-4e08-a3fd-f97c27442097 + - 78ef6b02-009f-4314-8748-4a891558b5fb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -355,8 +361,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000002", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -365,16 +370,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "885e20b2-d644-41eb-9b19-4e29b295af77", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "2b2bac57-a0f6-404c-965e-2b7e115e7d64", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -383,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '154' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:06 GMT + - Wed, 20 May 2026 08:47:11 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/885e20b2-d644-41eb-9b19-4e29b295af77 + - https://api.fabric.microsoft.com/v1/workspaces/2b2bac57-a0f6-404c-965e-2b7e115e7d64 Pragma: - no-cache RequestId: - - 20edd67d-9c0e-49b3-9ddd-14e6e9e6b160 + - ab1d72c1-f4d6-41d1-8fd4-783cce870496 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -419,16 +425,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a444ec59-56d9-4889-a393-8cc9e8d01603", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "885e20b2-d644-41eb-9b19-4e29b295af77", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fe6ae79a-a620-4a4c-836c-8daae24c2cc9", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b2bac57-a0f6-404c-965e-2b7e115e7d64", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -437,15 +446,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:07 GMT + - Wed, 20 May 2026 08:47:11 GMT Pragma: - no-cache RequestId: - - ae46cbc3-4fef-4a22-a12d-ea05536a5c25 + - 9c273f29-e191-400d-abb5-4bc2e6dff17a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -471,9 +480,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/a444ec59-56d9-4889-a393-8cc9e8d01603/items + uri: https://api.fabric.microsoft.com/v1/workspaces/fe6ae79a-a620-4a4c-836c-8daae24c2cc9/items response: body: string: '{"value": []}' @@ -489,11 +498,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:07 GMT + - Wed, 20 May 2026 08:47:12 GMT Pragma: - no-cache RequestId: - - 567523ad-7f80-4320-afe5-52126e61e4c3 + - 6e9cd22a-94a4-4d21-8cdd-d4fb70de9599 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -519,9 +528,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/a444ec59-56d9-4889-a393-8cc9e8d01603/items + uri: https://api.fabric.microsoft.com/v1/workspaces/fe6ae79a-a620-4a4c-836c-8daae24c2cc9/items response: body: string: '{"value": []}' @@ -537,11 +546,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:07 GMT + - Wed, 20 May 2026 08:47:13 GMT Pragma: - no-cache RequestId: - - f359fc0c-5761-45cc-855f-760ce68e3460 + - 9a9ea37c-edf1-47c7-9880-0835afa04394 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -556,8 +565,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000003", "type": - "KQLDashboard", "folderId": null}' + body: '{"displayName": "fabcli000003", "type": "KQLDashboard", "folderId": null}' headers: Accept: - '*/*' @@ -566,18 +574,17 @@ interactions: Connection: - keep-alive Content-Length: - - '110' + - '77' 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/a444ec59-56d9-4889-a393-8cc9e8d01603/kqlDashboards + uri: https://api.fabric.microsoft.com/v1/workspaces/fe6ae79a-a620-4a4c-836c-8daae24c2cc9/kqlDashboards response: body: - string: '{"id": "7aeedad2-70f0-4204-b51b-345f7259d466", "type": "KQLDashboard", - "displayName": "fabcli000003", "workspaceId": - "a444ec59-56d9-4889-a393-8cc9e8d01603"}' + string: '{"id": "b403f050-ff03-4226-8a90-0c762cd94cec", "type": "KQLDashboard", + "displayName": "fabcli000003", "description": "", "workspaceId": "fe6ae79a-a620-4a4c-836c-8daae24c2cc9"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -586,17 +593,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '171' + - '160' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:10 GMT + - Wed, 20 May 2026 08:47:16 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 2b044575-2886-4d98-a4c3-3b077e00d5d2 + - 35a33525-3681-4c42-9243-4508808e3ff2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -622,16 +629,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a444ec59-56d9-4889-a393-8cc9e8d01603", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "885e20b2-d644-41eb-9b19-4e29b295af77", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fe6ae79a-a620-4a4c-836c-8daae24c2cc9", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b2bac57-a0f6-404c-965e-2b7e115e7d64", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -640,15 +650,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:10 GMT + - Wed, 20 May 2026 08:47:17 GMT Pragma: - no-cache RequestId: - - ae0b5c8c-df5d-49a2-b51b-4fa2cfc36de5 + - 978bc5c2-3026-419e-8ac8-ec86050cbfc7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -674,14 +684,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/a444ec59-56d9-4889-a393-8cc9e8d01603/items + uri: https://api.fabric.microsoft.com/v1/workspaces/fe6ae79a-a620-4a4c-836c-8daae24c2cc9/items response: body: - string: '{"value": [{"id": "7aeedad2-70f0-4204-b51b-345f7259d466", "type": "KQLDashboard", - "displayName": "fabcli000003", "workspaceId": - "a444ec59-56d9-4889-a393-8cc9e8d01603"}]}' + string: '{"value": [{"id": "b403f050-ff03-4226-8a90-0c762cd94cec", "type": "KQLDashboard", + "displayName": "fabcli000003", "description": "", "workspaceId": "fe6ae79a-a620-4a4c-836c-8daae24c2cc9"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -690,15 +699,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '182' + - '171' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:11 GMT + - Wed, 20 May 2026 08:47:17 GMT Pragma: - no-cache RequestId: - - aa134bd7-878d-4c50-81df-0bc54d35faa2 + - 6cf1803b-f0f4-4ffb-ad83-d17b7ea6da7b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -724,16 +733,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a444ec59-56d9-4889-a393-8cc9e8d01603", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "885e20b2-d644-41eb-9b19-4e29b295af77", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fe6ae79a-a620-4a4c-836c-8daae24c2cc9", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b2bac57-a0f6-404c-965e-2b7e115e7d64", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -742,15 +754,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:11 GMT + - Wed, 20 May 2026 08:47:18 GMT Pragma: - no-cache RequestId: - - c47727bc-a258-4c90-bfe0-ce5756d741bb + - 486c92b0-abaa-4784-8096-18a5b188e705 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -776,9 +788,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/885e20b2-d644-41eb-9b19-4e29b295af77/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2b2bac57-a0f6-404c-965e-2b7e115e7d64/items response: body: string: '{"value": []}' @@ -794,11 +806,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:11 GMT + - Wed, 20 May 2026 08:47:19 GMT Pragma: - no-cache RequestId: - - 384f9550-c68f-4c1a-9311-60e69da4a10e + - 4764384a-2453-4fd9-a42c-bb98b4a35577 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -824,9 +836,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/885e20b2-d644-41eb-9b19-4e29b295af77/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2b2bac57-a0f6-404c-965e-2b7e115e7d64/items response: body: string: '{"value": []}' @@ -842,11 +854,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:12 GMT + - Wed, 20 May 2026 08:47:20 GMT Pragma: - no-cache RequestId: - - f3f31b48-a22f-472a-b722-7cd21a168788 + - 9b02fa2c-ff25-4a72-acbf-cf2ec2bdcae5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -872,9 +884,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/885e20b2-d644-41eb-9b19-4e29b295af77/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2b2bac57-a0f6-404c-965e-2b7e115e7d64/items response: body: string: '{"value": []}' @@ -890,11 +902,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:13 GMT + - Wed, 20 May 2026 08:47:21 GMT Pragma: - no-cache RequestId: - - 04be0065-e73f-4546-87e2-a5d2a8c95f75 + - b434aa8f-9ccb-4743-944a-c6eb97c4240a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -920,14 +932,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/a444ec59-56d9-4889-a393-8cc9e8d01603/items/7aeedad2-70f0-4204-b51b-345f7259d466 + uri: https://api.fabric.microsoft.com/v1/workspaces/fe6ae79a-a620-4a4c-836c-8daae24c2cc9/items/b403f050-ff03-4226-8a90-0c762cd94cec response: body: - string: '{"id": "7aeedad2-70f0-4204-b51b-345f7259d466", "type": "KQLDashboard", - "displayName": "fabcli000003", "workspaceId": - "a444ec59-56d9-4889-a393-8cc9e8d01603"}' + string: '{"id": "b403f050-ff03-4226-8a90-0c762cd94cec", "type": "KQLDashboard", + "displayName": "fabcli000003", "description": "", "workspaceId": "fe6ae79a-a620-4a4c-836c-8daae24c2cc9"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -936,17 +947,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '171' + - '160' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:14 GMT + - Wed, 20 May 2026 08:47:21 GMT ETag: - '""' Pragma: - no-cache RequestId: - - c6a6b82b-61f3-4089-9b6c-d8f6e499fb3d + - 7c1f35ba-a14e-4c94-b4bc-07828611eff4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -974,13 +985,13 @@ interactions: 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/a444ec59-56d9-4889-a393-8cc9e8d01603/items/7aeedad2-70f0-4204-b51b-345f7259d466/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/fe6ae79a-a620-4a4c-836c-8daae24c2cc9/items/b403f050-ff03-4226-8a90-0c762cd94cec/getDefinition response: body: string: '{"definition": {"parts": [{"path": "RealTimeDashboard.json", "payload": - "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTERhc2hib2FyZCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTERhc2hib2FyZCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -990,15 +1001,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '434' + - '407' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:16 GMT + - Wed, 20 May 2026 08:47:23 GMT Pragma: - no-cache RequestId: - - 135d204f-96f9-488f-867b-bbdbb9a797ad + - 90ea319f-7ee1-4c71-83be-4ec58afa3351 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1013,10 +1024,9 @@ interactions: code: 200 message: OK - request: - body: '{"type": "KQLDashboard", "displayName": - "fabcli000003", "definition": {"parts": [{"path": "RealTimeDashboard.json", - "payload": "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": - "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTERhc2hib2FyZCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + body: '{"type": "KQLDashboard", "displayName": "fabcli000003", "definition": {"parts": + [{"path": "RealTimeDashboard.json", "payload": "e30=", "payloadType": "InlineBase64"}, + {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTERhc2hib2FyZCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}, "folderId": null}' headers: Accept: @@ -1026,18 +1036,17 @@ interactions: Connection: - keep-alive Content-Length: - - '752' + - '667' 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/885e20b2-d644-41eb-9b19-4e29b295af77/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2b2bac57-a0f6-404c-965e-2b7e115e7d64/items response: body: - string: '{"id": "de8acd21-08d9-4373-b299-824ba9477a07", "type": "KQLDashboard", - "displayName": "fabcli000003", "workspaceId": - "885e20b2-d644-41eb-9b19-4e29b295af77"}' + string: '{"id": "bab64295-0150-403f-a5e7-b727c30e23a6", "type": "KQLDashboard", + "displayName": "fabcli000003", "description": "", "workspaceId": "2b2bac57-a0f6-404c-965e-2b7e115e7d64"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1046,17 +1055,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '170' + - '161' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:20 GMT + - Wed, 20 May 2026 08:47:26 GMT ETag: - '""' Pragma: - no-cache RequestId: - - daf53855-4341-49ec-9322-7c5ad3a802a4 + - 57d81c87-3c98-46de-8ba2-6d17948e19f8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1082,16 +1091,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a444ec59-56d9-4889-a393-8cc9e8d01603", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "885e20b2-d644-41eb-9b19-4e29b295af77", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fe6ae79a-a620-4a4c-836c-8daae24c2cc9", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b2bac57-a0f6-404c-965e-2b7e115e7d64", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1100,15 +1112,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:20 GMT + - Wed, 20 May 2026 08:47:27 GMT Pragma: - no-cache RequestId: - - f08f0bd6-a7be-47e6-b588-88157054003f + - f7903307-0748-4961-a8b5-6f702c0384d9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1134,14 +1146,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/a444ec59-56d9-4889-a393-8cc9e8d01603/items + uri: https://api.fabric.microsoft.com/v1/workspaces/fe6ae79a-a620-4a4c-836c-8daae24c2cc9/items response: body: - string: '{"value": [{"id": "7aeedad2-70f0-4204-b51b-345f7259d466", "type": "KQLDashboard", - "displayName": "fabcli000003", "workspaceId": - "a444ec59-56d9-4889-a393-8cc9e8d01603"}]}' + string: '{"value": [{"id": "b403f050-ff03-4226-8a90-0c762cd94cec", "type": "KQLDashboard", + "displayName": "fabcli000003", "description": "", "workspaceId": "fe6ae79a-a620-4a4c-836c-8daae24c2cc9"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1150,63 +1161,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '182' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:30:20 GMT - Pragma: - - no-cache - RequestId: - - 49216c7e-47c1-4795-a9bf-e8d81afa9ba8 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a444ec59-56d9-4889-a393-8cc9e8d01603/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' + - '171' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:21 GMT + - Wed, 20 May 2026 08:47:27 GMT Pragma: - no-cache RequestId: - - 2cc940e3-4b0a-4c51-89d3-bb87557a9bb8 + - c9a13e81-bfc6-4afe-bdcb-ce387f50e373 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1232,66 +1195,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a444ec59-56d9-4889-a393-8cc9e8d01603", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "885e20b2-d644-41eb-9b19-4e29b295af77", "displayName": "fabcli000002", "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: - - '2879' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:30:22 GMT - Pragma: - - no-cache - RequestId: - - 862aa8b1-66b3-44f2-852f-f841b5dea669 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/885e20b2-d644-41eb-9b19-4e29b295af77/items - response: - body: - string: '{"value": [{"id": "de8acd21-08d9-4373-b299-824ba9477a07", "type": "KQLDashboard", - "displayName": "fabcli000003", "workspaceId": - "885e20b2-d644-41eb-9b19-4e29b295af77"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fe6ae79a-a620-4a4c-836c-8daae24c2cc9", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b2bac57-a0f6-404c-965e-2b7e115e7d64", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1300,15 +1216,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '181' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:22 GMT + - Wed, 20 May 2026 08:47:29 GMT Pragma: - no-cache RequestId: - - fdf89657-47bf-4fbe-91a0-3550cebe9492 + - bd27c70b-2d54-41c7-91e7-013025e5376e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1334,12 +1250,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/885e20b2-d644-41eb-9b19-4e29b295af77/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b2bac57-a0f6-404c-965e-2b7e115e7d64/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "bab64295-0150-403f-a5e7-b727c30e23a6", "type": "KQLDashboard", + "displayName": "fabcli000003", "description": "", "workspaceId": "2b2bac57-a0f6-404c-965e-2b7e115e7d64"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1348,15 +1265,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '172' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:24 GMT + - Wed, 20 May 2026 08:47:30 GMT Pragma: - no-cache RequestId: - - 416c16a5-e333-4e3f-a550-64905f4dfcd9 + - 0d5c6c51-8445-422c-b729-242ee271eba8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1382,16 +1299,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a444ec59-56d9-4889-a393-8cc9e8d01603", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "885e20b2-d644-41eb-9b19-4e29b295af77", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fe6ae79a-a620-4a4c-836c-8daae24c2cc9", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b2bac57-a0f6-404c-965e-2b7e115e7d64", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1400,15 +1320,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:25 GMT + - Wed, 20 May 2026 08:47:30 GMT Pragma: - no-cache RequestId: - - 127a4ea0-1399-46e9-bfdc-f3211d56ed6d + - f9db685e-1029-4c06-b59b-794e443284a7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1434,14 +1354,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/a444ec59-56d9-4889-a393-8cc9e8d01603/items + uri: https://api.fabric.microsoft.com/v1/workspaces/fe6ae79a-a620-4a4c-836c-8daae24c2cc9/items response: body: - string: '{"value": [{"id": "7aeedad2-70f0-4204-b51b-345f7259d466", "type": "KQLDashboard", - "displayName": "fabcli000003", "workspaceId": - "a444ec59-56d9-4889-a393-8cc9e8d01603"}]}' + string: '{"value": [{"id": "b403f050-ff03-4226-8a90-0c762cd94cec", "type": "KQLDashboard", + "displayName": "fabcli000003", "description": "", "workspaceId": "fe6ae79a-a620-4a4c-836c-8daae24c2cc9"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1450,15 +1369,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '182' + - '171' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:25 GMT + - Wed, 20 May 2026 08:47:32 GMT Pragma: - no-cache RequestId: - - d48acf03-c37d-4af4-8e5c-b894f328d4e6 + - 9f22137f-4bfe-436e-ac5e-8774ae777f34 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1486,9 +1405,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/a444ec59-56d9-4889-a393-8cc9e8d01603/items/7aeedad2-70f0-4204-b51b-345f7259d466 + uri: https://api.fabric.microsoft.com/v1/workspaces/fe6ae79a-a620-4a4c-836c-8daae24c2cc9/items/b403f050-ff03-4226-8a90-0c762cd94cec response: body: string: '' @@ -1504,11 +1423,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:30:26 GMT + - Wed, 20 May 2026 08:47:33 GMT Pragma: - no-cache RequestId: - - 7db54e5e-6940-4455-8c30-5cc4697d1672 + - b8be0e68-0fc8-447e-be34-e471637375fd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1534,16 +1453,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "a444ec59-56d9-4889-a393-8cc9e8d01603", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "885e20b2-d644-41eb-9b19-4e29b295af77", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "fe6ae79a-a620-4a4c-836c-8daae24c2cc9", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b2bac57-a0f6-404c-965e-2b7e115e7d64", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1552,15 +1474,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2696' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:27 GMT + - Wed, 20 May 2026 08:47:33 GMT Pragma: - no-cache RequestId: - - 7ea6938c-be66-4ece-a874-84f600cc6d52 + - b01ce8a8-a2ce-4488-be75-f2cf9a26df19 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1586,9 +1508,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/a444ec59-56d9-4889-a393-8cc9e8d01603/items + uri: https://api.fabric.microsoft.com/v1/workspaces/fe6ae79a-a620-4a4c-836c-8daae24c2cc9/items response: body: string: '{"value": []}' @@ -1604,11 +1526,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:28 GMT + - Wed, 20 May 2026 08:47:33 GMT Pragma: - no-cache RequestId: - - 41490030-2823-444d-973a-e83fcc0624f0 + - 45c8a54a-5820-494b-9fd6-24e95f68e3d1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1636,9 +1558,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/a444ec59-56d9-4889-a393-8cc9e8d01603 + uri: https://api.fabric.microsoft.com/v1/workspaces/fe6ae79a-a620-4a4c-836c-8daae24c2cc9 response: body: string: '' @@ -1654,11 +1576,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:30:28 GMT + - Wed, 20 May 2026 08:47:35 GMT Pragma: - no-cache RequestId: - - 4ad70984-a502-4947-892c-d92353c7c0e1 + - 90132df8-bcea-4a0c-9c6e-e923ef282951 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1684,15 +1606,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "885e20b2-d644-41eb-9b19-4e29b295af77", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b2bac57-a0f6-404c-965e-2b7e115e7d64", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1701,15 +1625,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2844' + - '2657' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:29 GMT + - Wed, 20 May 2026 08:47:35 GMT Pragma: - no-cache RequestId: - - 0dc32983-404d-461c-a242-1ba734fc798d + - 34625967-b558-468a-a788-abc2eed14491 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1735,14 +1659,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/885e20b2-d644-41eb-9b19-4e29b295af77/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2b2bac57-a0f6-404c-965e-2b7e115e7d64/items response: body: - string: '{"value": [{"id": "de8acd21-08d9-4373-b299-824ba9477a07", "type": "KQLDashboard", - "displayName": "fabcli000003", "workspaceId": - "885e20b2-d644-41eb-9b19-4e29b295af77"}]}' + string: '{"value": [{"id": "bab64295-0150-403f-a5e7-b727c30e23a6", "type": "KQLDashboard", + "displayName": "fabcli000003", "description": "", "workspaceId": "2b2bac57-a0f6-404c-965e-2b7e115e7d64"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1751,15 +1674,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '181' + - '172' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:30 GMT + - Wed, 20 May 2026 08:47:37 GMT Pragma: - no-cache RequestId: - - ba0afacc-4071-4a26-864e-bdd7d2b28ef2 + - e2283de9-4ea5-4ad9-9386-217e2c71fc1f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1787,9 +1710,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/885e20b2-d644-41eb-9b19-4e29b295af77 + uri: https://api.fabric.microsoft.com/v1/workspaces/2b2bac57-a0f6-404c-965e-2b7e115e7d64 response: body: string: '' @@ -1805,11 +1728,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:30:31 GMT + - Wed, 20 May 2026 08:47:37 GMT Pragma: - no-cache RequestId: - - 0aaed6d8-4428-42ee-b9ba-af57c038f767 + - 1966baff-aea0-4f24-ba31-b42761988cc6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[KQLQueryset].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[KQLQueryset].yaml index a8a4e5ae8..fa48a06ed 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[KQLQueryset].yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[KQLQueryset].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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:32 GMT + - Wed, 20 May 2026 08:47:38 GMT Pragma: - no-cache RequestId: - - a058ce16-55ba-4845-b4f7-d376841be27e + - 7122b62d-3e19-42d2-92b9-576235b4b7be Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:33 GMT + - Wed, 20 May 2026 08:47:38 GMT Pragma: - no-cache RequestId: - - 1c04c988-1bfd-403e-b387-bdd67d851a54 + - a23007ca-f8c0-4184-85c5-c0018f3b3560 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,7 +113,7 @@ 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/capacities response: @@ -127,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '427' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:37 GMT + - Wed, 20 May 2026 08:47:44 GMT Pragma: - no-cache RequestId: - - e83eed7e-893a-4faf-978c-93d867ed5c82 + - a822dab9-cc87-436f-a2cb-4fa60899e09d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -150,8 +152,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -160,16 +161,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "6a90f204-0fcf-4787-99a9-3ea6f45cb231", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "188c6a33-d09e-4e1d-b5a9-9695b7cf42ab", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -178,17 +180,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:45 GMT + - Wed, 20 May 2026 08:47:52 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/6a90f204-0fcf-4787-99a9-3ea6f45cb231 + - https://api.fabric.microsoft.com/v1/workspaces/188c6a33-d09e-4e1d-b5a9-9695b7cf42ab Pragma: - no-cache RequestId: - - ab6e8100-7d31-4da0-b476-8140e090d0bd + - f9f11ba5-a747-4df4-9dd0-aa8b1fe30d75 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,15 +216,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "6a90f204-0fcf-4787-99a9-3ea6f45cb231", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "188c6a33-d09e-4e1d-b5a9-9695b7cf42ab", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -231,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2841' + - '2660' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:46 GMT + - Wed, 20 May 2026 08:47:53 GMT Pragma: - no-cache RequestId: - - 1921fe78-07db-46bd-b159-28cfeacbbd64 + - b5d52c0a-aa0e-4ac6-b38c-b68d98531298 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,15 +269,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "6a90f204-0fcf-4787-99a9-3ea6f45cb231", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "188c6a33-d09e-4e1d-b5a9-9695b7cf42ab", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -282,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2841' + - '2660' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:47 GMT + - Wed, 20 May 2026 08:47:53 GMT Pragma: - no-cache RequestId: - - 4f4650f5-e141-43bf-9aad-5294d0df6e41 + - b2abe26b-7459-404d-8926-ee3bfae75fd6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,7 +322,7 @@ 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/capacities response: @@ -332,15 +338,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:52 GMT + - Wed, 20 May 2026 08:47:59 GMT Pragma: - no-cache RequestId: - - df0b6e7b-324d-4f2c-bca8-806090674b88 + - 8aaa2962-7583-4fa9-a51c-a9d2b8fec615 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -355,8 +361,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000002", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -365,16 +370,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "01f086a0-8cd0-42d7-91d6-385eb9905303", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -383,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:59 GMT + - Wed, 20 May 2026 08:48:06 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a + - https://api.fabric.microsoft.com/v1/workspaces/01f086a0-8cd0-42d7-91d6-385eb9905303 Pragma: - no-cache RequestId: - - 115a41e5-0b29-4f73-a4ef-9fcd4ef08bb7 + - f5384351-a424-4655-ac65-10ee8df628cb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -419,16 +425,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "6a90f204-0fcf-4787-99a9-3ea6f45cb231", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "188c6a33-d09e-4e1d-b5a9-9695b7cf42ab", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "01f086a0-8cd0-42d7-91d6-385eb9905303", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -437,15 +446,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:30:59 GMT + - Wed, 20 May 2026 08:48:07 GMT Pragma: - no-cache RequestId: - - dc3000ad-d164-4117-94e3-7473f4812570 + - fecca30e-27e9-4cdf-8c21-13671465f6f8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -471,9 +480,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/6a90f204-0fcf-4787-99a9-3ea6f45cb231/items + uri: https://api.fabric.microsoft.com/v1/workspaces/188c6a33-d09e-4e1d-b5a9-9695b7cf42ab/items response: body: string: '{"value": []}' @@ -489,11 +498,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:00 GMT + - Wed, 20 May 2026 08:48:09 GMT Pragma: - no-cache RequestId: - - f1839baf-3837-488a-b455-57980e267edd + - e505fa4b-09b9-4fe1-afe6-89acb3abb5fb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -519,9 +528,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/6a90f204-0fcf-4787-99a9-3ea6f45cb231/items + uri: https://api.fabric.microsoft.com/v1/workspaces/188c6a33-d09e-4e1d-b5a9-9695b7cf42ab/items response: body: string: '{"value": []}' @@ -537,11 +546,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:02 GMT + - Wed, 20 May 2026 08:48:09 GMT Pragma: - no-cache RequestId: - - 99a99046-420c-447e-bc8a-4ad8bf1bbe0b + - 42adc4e7-06c9-4812-a6df-6febdeffbb2c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -556,8 +565,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000003", "type": - "KQLQueryset", "folderId": null}' + body: '{"displayName": "fabcli000003", "type": "KQLQueryset", "folderId": null}' headers: Accept: - '*/*' @@ -566,18 +574,17 @@ interactions: Connection: - keep-alive Content-Length: - - '109' + - '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/6a90f204-0fcf-4787-99a9-3ea6f45cb231/kqlQuerysets + uri: https://api.fabric.microsoft.com/v1/workspaces/188c6a33-d09e-4e1d-b5a9-9695b7cf42ab/kqlQuerysets response: body: - string: '{"id": "e49e5678-3843-444e-9226-2b3b626041be", "type": "KQLQueryset", - "displayName": "fabcli000003", "workspaceId": - "6a90f204-0fcf-4787-99a9-3ea6f45cb231"}' + string: '{"id": "cc612094-586a-4e70-b237-efb9c30a9355", "type": "KQLQueryset", + "displayName": "fabcli000003", "description": "", "workspaceId": "188c6a33-d09e-4e1d-b5a9-9695b7cf42ab"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -586,17 +593,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '171' + - '158' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:04 GMT + - Wed, 20 May 2026 08:48:12 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 4edbc10f-686b-433c-bdbd-8804d0c4646c + - 7002f098-091e-48a1-9529-04e69e8e59d1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -622,16 +629,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "6a90f204-0fcf-4787-99a9-3ea6f45cb231", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "188c6a33-d09e-4e1d-b5a9-9695b7cf42ab", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "01f086a0-8cd0-42d7-91d6-385eb9905303", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -640,15 +650,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:04 GMT + - Wed, 20 May 2026 08:48:13 GMT Pragma: - no-cache RequestId: - - 6599cf14-6b59-4eaf-b241-0ca10d6b7fe5 + - e21859ec-a745-4bdf-94a1-0e155b414dcf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -674,14 +684,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/6a90f204-0fcf-4787-99a9-3ea6f45cb231/items + uri: https://api.fabric.microsoft.com/v1/workspaces/188c6a33-d09e-4e1d-b5a9-9695b7cf42ab/items response: body: - string: '{"value": [{"id": "e49e5678-3843-444e-9226-2b3b626041be", "type": "KQLQueryset", - "displayName": "fabcli000003", "workspaceId": - "6a90f204-0fcf-4787-99a9-3ea6f45cb231"}]}' + string: '{"value": [{"id": "cc612094-586a-4e70-b237-efb9c30a9355", "type": "KQLQueryset", + "displayName": "fabcli000003", "description": "", "workspaceId": "188c6a33-d09e-4e1d-b5a9-9695b7cf42ab"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -690,15 +699,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '182' + - '170' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:05 GMT + - Wed, 20 May 2026 08:48:14 GMT Pragma: - no-cache RequestId: - - 56f27c70-7f99-4c69-9c08-18686f2bdb08 + - 9ab9d14d-4654-495c-8b57-76fe2d187698 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -724,16 +733,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "6a90f204-0fcf-4787-99a9-3ea6f45cb231", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "188c6a33-d09e-4e1d-b5a9-9695b7cf42ab", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "01f086a0-8cd0-42d7-91d6-385eb9905303", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -742,15 +754,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:06 GMT + - Wed, 20 May 2026 08:48:14 GMT Pragma: - no-cache RequestId: - - 494a9533-d2ae-4717-bc9f-63563e0d61e9 + - 68ec189c-3abb-4133-b6a8-5307325a1076 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -776,9 +788,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/3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/01f086a0-8cd0-42d7-91d6-385eb9905303/items response: body: string: '{"value": []}' @@ -794,11 +806,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:07 GMT + - Wed, 20 May 2026 08:48:15 GMT Pragma: - no-cache RequestId: - - 8011f190-779b-4952-9fe6-d1b8410f2537 + - 4c4e6f2d-b25d-4b03-9ba3-1372ee144f5b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -824,9 +836,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/3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/01f086a0-8cd0-42d7-91d6-385eb9905303/items response: body: string: '{"value": []}' @@ -842,11 +854,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:08 GMT + - Wed, 20 May 2026 08:48:16 GMT Pragma: - no-cache RequestId: - - be4a90c8-d97a-4e86-af20-1d9b306c8d34 + - ef49d9dd-cb1c-4c1e-93cc-9df06b8e7759 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -872,9 +884,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/3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/01f086a0-8cd0-42d7-91d6-385eb9905303/items response: body: string: '{"value": []}' @@ -890,11 +902,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:09 GMT + - Wed, 20 May 2026 08:48:17 GMT Pragma: - no-cache RequestId: - - 8a87c770-826d-4dd7-8682-5cafa02d393a + - 53a630bf-0bc8-481b-8d4a-9d78c2e210b9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -920,14 +932,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/6a90f204-0fcf-4787-99a9-3ea6f45cb231/items/e49e5678-3843-444e-9226-2b3b626041be + uri: https://api.fabric.microsoft.com/v1/workspaces/188c6a33-d09e-4e1d-b5a9-9695b7cf42ab/items/cc612094-586a-4e70-b237-efb9c30a9355 response: body: - string: '{"id": "e49e5678-3843-444e-9226-2b3b626041be", "type": "KQLQueryset", - "displayName": "fabcli000003", "workspaceId": - "6a90f204-0fcf-4787-99a9-3ea6f45cb231"}' + string: '{"id": "cc612094-586a-4e70-b237-efb9c30a9355", "type": "KQLQueryset", + "displayName": "fabcli000003", "description": "", "workspaceId": "188c6a33-d09e-4e1d-b5a9-9695b7cf42ab"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -936,17 +947,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '171' + - '158' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:10 GMT + - Wed, 20 May 2026 08:48:17 GMT ETag: - '""' Pragma: - no-cache RequestId: - - dce59e52-38a8-4d9c-9c09-2f290d9f7238 + - 53fd294f-b829-43bc-8688-01cdd53d7277 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -974,13 +985,13 @@ interactions: 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/6a90f204-0fcf-4787-99a9-3ea6f45cb231/items/e49e5678-3843-444e-9226-2b3b626041be/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/188c6a33-d09e-4e1d-b5a9-9695b7cf42ab/items/cc612094-586a-4e70-b237-efb9c30a9355/getDefinition response: body: string: '{"definition": {"parts": [{"path": "RealTimeQueryset.json", "payload": - "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTFF1ZXJ5c2V0IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTFF1ZXJ5c2V0IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -990,15 +1001,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '427' + - '401' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:11 GMT + - Wed, 20 May 2026 08:48:19 GMT Pragma: - no-cache RequestId: - - a358ecda-3831-41b7-a4ec-58adc1cb4ab3 + - 4f14711d-7198-4a7d-b927-d3fcac54b88e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1013,9 +1024,9 @@ interactions: code: 200 message: OK - request: - body: '{"type": "KQLQueryset", "displayName": - "fabcli000003", "definition": {"parts": [{"path": "RealTimeQueryset.json", "payload": - "e30=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTFF1ZXJ5c2V0IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + body: '{"type": "KQLQueryset", "displayName": "fabcli000003", "definition": {"parts": + [{"path": "RealTimeQueryset.json", "payload": "e30=", "payloadType": "InlineBase64"}, + {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIktRTFF1ZXJ5c2V0IiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", "payloadType": "InlineBase64"}]}, "folderId": null}' headers: Accept: @@ -1025,18 +1036,17 @@ interactions: Connection: - keep-alive Content-Length: - - '746' + - '665' 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/3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/01f086a0-8cd0-42d7-91d6-385eb9905303/items response: body: - string: '{"id": "94ca3185-76f8-4266-be53-287df7804955", "type": "KQLQueryset", - "displayName": "fabcli000003", "workspaceId": - "3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a"}' + string: '{"id": "c0b3704a-4bdf-47ae-94fd-8cd6c0797788", "type": "KQLQueryset", + "displayName": "fabcli000003", "description": "", "workspaceId": "01f086a0-8cd0-42d7-91d6-385eb9905303"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1045,17 +1055,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '171' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:15 GMT + - Wed, 20 May 2026 08:48:22 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 956c173c-bdf4-4e19-a82b-095e66946218 + - a7eb51e2-6fd0-4676-8f9f-7b91189839c2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1081,16 +1091,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "6a90f204-0fcf-4787-99a9-3ea6f45cb231", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "188c6a33-d09e-4e1d-b5a9-9695b7cf42ab", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "01f086a0-8cd0-42d7-91d6-385eb9905303", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1099,15 +1112,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:16 GMT + - Wed, 20 May 2026 08:48:23 GMT Pragma: - no-cache RequestId: - - c0621ab4-20d9-472f-b277-5855a11c7e56 + - 0a4ed5b9-0af5-4656-a250-a61a0def6dfe Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1133,14 +1146,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/6a90f204-0fcf-4787-99a9-3ea6f45cb231/items + uri: https://api.fabric.microsoft.com/v1/workspaces/188c6a33-d09e-4e1d-b5a9-9695b7cf42ab/items response: body: - string: '{"value": [{"id": "e49e5678-3843-444e-9226-2b3b626041be", "type": "KQLQueryset", - "displayName": "fabcli000003", "workspaceId": - "6a90f204-0fcf-4787-99a9-3ea6f45cb231"}]}' + string: '{"value": [{"id": "cc612094-586a-4e70-b237-efb9c30a9355", "type": "KQLQueryset", + "displayName": "fabcli000003", "description": "", "workspaceId": "188c6a33-d09e-4e1d-b5a9-9695b7cf42ab"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1149,15 +1161,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '182' + - '170' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:17 GMT + - Wed, 20 May 2026 08:48:24 GMT Pragma: - no-cache RequestId: - - 15d3b709-4c87-489f-9c43-4a60af46673d + - ea09ca59-8507-4797-ac91-b4d794381361 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1183,64 +1195,19 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/6a90f204-0fcf-4787-99a9-3ea6f45cb231/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: - - Fri, 06 Feb 2026 07:31:18 GMT - Pragma: - - no-cache - RequestId: - - 00eb7948-f281-4dd0-8c3f-bde8bc6a5e35 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "6a90f204-0fcf-4787-99a9-3ea6f45cb231", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "188c6a33-d09e-4e1d-b5a9-9695b7cf42ab", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "01f086a0-8cd0-42d7-91d6-385eb9905303", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1249,15 +1216,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:19 GMT + - Wed, 20 May 2026 08:48:24 GMT Pragma: - no-cache RequestId: - - 2e02d971-8328-48fc-9bf6-36d6be4945c7 + - b18148de-46f6-418d-a5ea-51a62e4fd3ec Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1283,14 +1250,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/3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/01f086a0-8cd0-42d7-91d6-385eb9905303/items response: body: - string: '{"value": [{"id": "94ca3185-76f8-4266-be53-287df7804955", "type": "KQLQueryset", - "displayName": "fabcli000003", "workspaceId": - "3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a"}]}' + string: '{"value": [{"id": "c0b3704a-4bdf-47ae-94fd-8cd6c0797788", "type": "KQLQueryset", + "displayName": "fabcli000003", "description": "", "workspaceId": "01f086a0-8cd0-42d7-91d6-385eb9905303"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1299,63 +1265,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '182' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:31:20 GMT - Pragma: - - no-cache - RequestId: - - 526a9b31-313d-4e33-837c-aed7cffe832a - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a/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' + - '168' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:20 GMT + - Wed, 20 May 2026 08:48:25 GMT Pragma: - no-cache RequestId: - - 451a547f-1a81-49c4-96ea-7fc68b9f67c0 + - 84c97649-4243-4984-8e84-17ee20d80842 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1381,16 +1299,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "6a90f204-0fcf-4787-99a9-3ea6f45cb231", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "188c6a33-d09e-4e1d-b5a9-9695b7cf42ab", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "01f086a0-8cd0-42d7-91d6-385eb9905303", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1399,15 +1320,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:21 GMT + - Wed, 20 May 2026 08:48:26 GMT Pragma: - no-cache RequestId: - - 4e98a0d4-1e82-435b-97a5-5cca8ef5a22a + - 331e3ff6-bf83-45c2-bb35-bddbbb21e20c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1433,14 +1354,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/6a90f204-0fcf-4787-99a9-3ea6f45cb231/items + uri: https://api.fabric.microsoft.com/v1/workspaces/188c6a33-d09e-4e1d-b5a9-9695b7cf42ab/items response: body: - string: '{"value": [{"id": "e49e5678-3843-444e-9226-2b3b626041be", "type": "KQLQueryset", - "displayName": "fabcli000003", "workspaceId": - "6a90f204-0fcf-4787-99a9-3ea6f45cb231"}]}' + string: '{"value": [{"id": "cc612094-586a-4e70-b237-efb9c30a9355", "type": "KQLQueryset", + "displayName": "fabcli000003", "description": "", "workspaceId": "188c6a33-d09e-4e1d-b5a9-9695b7cf42ab"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1449,15 +1369,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '182' + - '170' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:22 GMT + - Wed, 20 May 2026 08:48:27 GMT Pragma: - no-cache RequestId: - - b046b671-f073-4fdf-9738-9c8ddff9f95d + - 263555ad-2f4a-486d-8883-49e42551c590 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1485,9 +1405,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/6a90f204-0fcf-4787-99a9-3ea6f45cb231/items/e49e5678-3843-444e-9226-2b3b626041be + uri: https://api.fabric.microsoft.com/v1/workspaces/188c6a33-d09e-4e1d-b5a9-9695b7cf42ab/items/cc612094-586a-4e70-b237-efb9c30a9355 response: body: string: '' @@ -1503,11 +1423,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:31:23 GMT + - Wed, 20 May 2026 08:48:29 GMT Pragma: - no-cache RequestId: - - 666f0448-02df-4fff-aa0d-93b2f9dc467b + - a3d2f06b-b355-4596-ad8d-3ee6431106ec Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1533,16 +1453,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "6a90f204-0fcf-4787-99a9-3ea6f45cb231", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "188c6a33-d09e-4e1d-b5a9-9695b7cf42ab", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "01f086a0-8cd0-42d7-91d6-385eb9905303", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1551,15 +1474,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2878' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:23 GMT + - Wed, 20 May 2026 08:48:29 GMT Pragma: - no-cache RequestId: - - 184c2c01-8b97-4b6e-88a4-5a5bfb1233c8 + - 4843b224-2f04-4656-b4c0-c9bff1b06edf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1585,9 +1508,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/6a90f204-0fcf-4787-99a9-3ea6f45cb231/items + uri: https://api.fabric.microsoft.com/v1/workspaces/188c6a33-d09e-4e1d-b5a9-9695b7cf42ab/items response: body: string: '{"value": []}' @@ -1603,11 +1526,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:24 GMT + - Wed, 20 May 2026 08:48:30 GMT Pragma: - no-cache RequestId: - - f89dc4f6-8f21-417d-b0fc-a45c735171c1 + - 77a5b532-7e7d-47b6-b19d-bfce1b4acf20 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1635,9 +1558,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/6a90f204-0fcf-4787-99a9-3ea6f45cb231 + uri: https://api.fabric.microsoft.com/v1/workspaces/188c6a33-d09e-4e1d-b5a9-9695b7cf42ab response: body: string: '' @@ -1653,11 +1576,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:31:25 GMT + - Wed, 20 May 2026 08:48:30 GMT Pragma: - no-cache RequestId: - - e54c8c3f-6075-4841-9b40-794458c48403 + - 5738fc2e-926f-4e29-9c52-dbbd89a51db2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1683,15 +1606,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "01f086a0-8cd0-42d7-91d6-385eb9905303", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1700,15 +1625,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2842' + - '2661' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:26 GMT + - Wed, 20 May 2026 08:48:32 GMT Pragma: - no-cache RequestId: - - 02acba3d-4a0a-4c6f-a76f-0e09cb7659f7 + - 28c93380-e912-4240-ac31-e3520711e415 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1734,14 +1659,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/3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/01f086a0-8cd0-42d7-91d6-385eb9905303/items response: body: - string: '{"value": [{"id": "94ca3185-76f8-4266-be53-287df7804955", "type": "KQLQueryset", - "displayName": "fabcli000003", "workspaceId": - "3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a"}]}' + string: '{"value": [{"id": "c0b3704a-4bdf-47ae-94fd-8cd6c0797788", "type": "KQLQueryset", + "displayName": "fabcli000003", "description": "", "workspaceId": "01f086a0-8cd0-42d7-91d6-385eb9905303"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1750,15 +1674,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '182' + - '168' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:27 GMT + - Wed, 20 May 2026 08:48:33 GMT Pragma: - no-cache RequestId: - - a8e18246-ba20-4e35-83f4-dc3303010ff7 + - c8fe78d5-6ec4-4cae-9b97-b8c0c24e071c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1786,9 +1710,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/3a69bfa0-df8c-4dc2-bc6b-3f1babdc6c6a + uri: https://api.fabric.microsoft.com/v1/workspaces/01f086a0-8cd0-42d7-91d6-385eb9905303 response: body: string: '' @@ -1804,11 +1728,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:31:28 GMT + - Wed, 20 May 2026 08:48:33 GMT Pragma: - no-cache RequestId: - - 46443326-5a1a-4dde-ad47-cee47cec1e3b + - d09ea133-311c-4724-83dc-9158571cdf28 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[MirroredDatabase].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[MirroredDatabase].yaml index 62e31cb5e..6e3860bee 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[MirroredDatabase].yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[MirroredDatabase].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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:28 GMT + - Wed, 20 May 2026 08:48:34 GMT Pragma: - no-cache RequestId: - - b22b13ee-b9e7-4934-92f2-e5aa255715fd + - 8f00ce01-5514-46de-ba27-06f01f35fb43 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:30 GMT + - Wed, 20 May 2026 08:48:35 GMT Pragma: - no-cache RequestId: - - 3cd67319-edc0-4962-98fa-67082b307962 + - e040215d-e01c-4292-a7ba-78ec17cc2e97 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,7 +113,7 @@ 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/capacities response: @@ -127,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:33 GMT + - Wed, 20 May 2026 08:48:38 GMT Pragma: - no-cache RequestId: - - 077142ea-aa0c-481d-a742-60227fcef51a + - 1342805c-d4bd-420b-bc7a-70e4815641c1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -150,8 +152,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -160,16 +161,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "f426633d-d2f2-4a68-81c8-c80847b549b8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "9097860d-4779-424b-9ac1-45202354d5b0", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -178,17 +180,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:39 GMT + - Wed, 20 May 2026 08:48:45 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/f426633d-d2f2-4a68-81c8-c80847b549b8 + - https://api.fabric.microsoft.com/v1/workspaces/9097860d-4779-424b-9ac1-45202354d5b0 Pragma: - no-cache RequestId: - - 9fa47721-f9f9-4a59-a639-ad29e0478394 + - a0b81f7c-e5fe-469c-952a-b072408cbc7c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,15 +216,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f426633d-d2f2-4a68-81c8-c80847b549b8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9097860d-4779-424b-9ac1-45202354d5b0", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -231,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2843' + - '2656' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:41 GMT + - Wed, 20 May 2026 08:48:46 GMT Pragma: - no-cache RequestId: - - f46641e4-4bf3-4e87-acaf-0aa674d622bc + - c24b9826-add4-427d-b7dc-8ee564445d62 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,15 +269,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f426633d-d2f2-4a68-81c8-c80847b549b8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9097860d-4779-424b-9ac1-45202354d5b0", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -282,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2843' + - '2656' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:41 GMT + - Wed, 20 May 2026 08:48:47 GMT Pragma: - no-cache RequestId: - - 20242c96-095b-4ce4-8dac-504a360db98a + - 11e3131f-18f8-4973-9d90-b2a41b5b5df9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,7 +322,7 @@ 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/capacities response: @@ -332,15 +338,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '429' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:47 GMT + - Wed, 20 May 2026 08:48:52 GMT Pragma: - no-cache RequestId: - - cd090887-e119-44c0-872a-3182f9327e18 + - 3e7e2a35-3d09-4326-af63-f430d5525742 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -355,8 +361,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000002", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -365,16 +370,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "d754b3ff-c3a9-4449-974e-f48e3ddf8f67", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "65663ad3-201a-4e6f-a7a5-7a46f8ea458f", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -383,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '154' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:55 GMT + - Wed, 20 May 2026 08:49:00 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/d754b3ff-c3a9-4449-974e-f48e3ddf8f67 + - https://api.fabric.microsoft.com/v1/workspaces/65663ad3-201a-4e6f-a7a5-7a46f8ea458f Pragma: - no-cache RequestId: - - c9a99147-51f7-468e-8bbf-78ae9fc5e620 + - f84f3639-60f9-4649-82a5-a5dc433864ac Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -419,16 +425,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f426633d-d2f2-4a68-81c8-c80847b549b8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d754b3ff-c3a9-4449-974e-f48e3ddf8f67", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9097860d-4779-424b-9ac1-45202354d5b0", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "65663ad3-201a-4e6f-a7a5-7a46f8ea458f", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -437,15 +446,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:56 GMT + - Wed, 20 May 2026 08:49:02 GMT Pragma: - no-cache RequestId: - - aae63f54-0bbf-423d-907a-475e8ef07315 + - 076800cb-3994-40ca-abae-9aac8346f306 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -471,9 +480,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/f426633d-d2f2-4a68-81c8-c80847b549b8/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9097860d-4779-424b-9ac1-45202354d5b0/items response: body: string: '{"value": []}' @@ -489,11 +498,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:57 GMT + - Wed, 20 May 2026 08:49:03 GMT Pragma: - no-cache RequestId: - - 9c7d3e3c-4f62-4c91-b6a5-3ac681abd570 + - ade4b3db-b05a-4ed6-a4c2-43bb0775ccad Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -519,9 +528,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/f426633d-d2f2-4a68-81c8-c80847b549b8/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9097860d-4779-424b-9ac1-45202354d5b0/items response: body: string: '{"value": []}' @@ -537,11 +546,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:31:57 GMT + - Wed, 20 May 2026 08:49:03 GMT Pragma: - no-cache RequestId: - - b355dc6b-62b5-4b43-b8d8-85b42d68e73a + - c4e287ed-dbaa-4829-bed4-41484f33e86e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -556,9 +565,8 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000003", "type": - "MirroredDatabase", "folderId": null, "definition": {"parts": [{"path": "mirroring.json", - "payload": "ewogICAgInByb3BlcnRpZXMiOiB7CiAgICAgICAgInNvdXJjZSI6IHsKICAgICAgICAgICAgInR5cGUiOiAiR2VuZXJpY01pcnJvciIsCiAgICAgICAgICAgICJ0eXBlUHJvcGVydGllcyI6IHt9CiAgICAgICAgfSwKICAgICAgICAidGFyZ2V0IjogewogICAgICAgICAgICAidHlwZSI6ICJNb3VudGVkUmVsYXRpb25hbERhdGFiYXNlIiwKICAgICAgICAgICAgInR5cGVQcm9wZXJ0aWVzIjogewogICAgICAgICAgICAgICAgImZvcm1hdCI6ICJEZWx0YSIKICAgICAgICAgICAgfQogICAgICAgIH0KICAgIH0KfQ==", + body: '{"displayName": "fabcli000003", "type": "MirroredDatabase", "folderId": + null, "definition": {"parts": [{"path": "mirroring.json", "payload": "ewogICAgInByb3BlcnRpZXMiOiB7CiAgICAgICAgInNvdXJjZSI6IHsKICAgICAgICAgICAgInR5cGUiOiAiR2VuZXJpY01pcnJvciIsCiAgICAgICAgICAgICJ0eXBlUHJvcGVydGllcyI6IHt9CiAgICAgICAgfSwKICAgICAgICAidGFyZ2V0IjogewogICAgICAgICAgICAidHlwZSI6ICJNb3VudGVkUmVsYXRpb25hbERhdGFiYXNlIiwKICAgICAgICAgICAgInR5cGVQcm9wZXJ0aWVzIjogewogICAgICAgICAgICAgICAgImZvcm1hdCI6ICJEZWx0YSIKICAgICAgICAgICAgfQogICAgICAgIH0KICAgIH0KfQ==", "payloadType": "InlineBase64"}]}}' headers: Accept: @@ -568,18 +576,17 @@ interactions: Connection: - keep-alive Content-Length: - - '603' + - '570' 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/f426633d-d2f2-4a68-81c8-c80847b549b8/mirroredDatabases + uri: https://api.fabric.microsoft.com/v1/workspaces/9097860d-4779-424b-9ac1-45202354d5b0/mirroredDatabases response: body: - string: '{"id": "141a3be4-e52c-4188-8fa5-ef1aba2b820e", "type": "MirroredDatabase", - "displayName": "fabcli000003", "workspaceId": - "f426633d-d2f2-4a68-81c8-c80847b549b8"}' + string: '{"id": "7079b920-a6a3-43b8-aa3b-1ccda88cea7e", "type": "MirroredDatabase", + "displayName": "fabcli000003", "description": "", "workspaceId": "9097860d-4779-424b-9ac1-45202354d5b0"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -588,17 +595,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '169' + - '161' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:01 GMT + - Wed, 20 May 2026 08:49:07 GMT ETag: - '""' Pragma: - no-cache RequestId: - - d0f6db56-5c52-406e-a851-5de344df16f9 + - 2aad0d6d-d452-4b07-9775-22da8494e316 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -624,16 +631,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f426633d-d2f2-4a68-81c8-c80847b549b8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d754b3ff-c3a9-4449-974e-f48e3ddf8f67", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9097860d-4779-424b-9ac1-45202354d5b0", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "65663ad3-201a-4e6f-a7a5-7a46f8ea458f", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -642,15 +652,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:01 GMT + - Wed, 20 May 2026 08:49:08 GMT Pragma: - no-cache RequestId: - - 6e2d44d7-4e6e-4c8d-9b49-b510d3f79813 + - 87bc6a34-d259-4b84-963a-c3df16646b12 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -676,14 +686,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/f426633d-d2f2-4a68-81c8-c80847b549b8/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9097860d-4779-424b-9ac1-45202354d5b0/items response: body: - string: '{"value": [{"id": "141a3be4-e52c-4188-8fa5-ef1aba2b820e", "type": "MirroredDatabase", - "displayName": "fabcli000003", "workspaceId": - "f426633d-d2f2-4a68-81c8-c80847b549b8"}]}' + string: '{"value": [{"id": "7079b920-a6a3-43b8-aa3b-1ccda88cea7e", "type": "MirroredDatabase", + "displayName": "fabcli000003", "description": "", "workspaceId": "9097860d-4779-424b-9ac1-45202354d5b0"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -692,15 +701,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '183' + - '172' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:03 GMT + - Wed, 20 May 2026 08:49:09 GMT Pragma: - no-cache RequestId: - - 527abfee-c87a-45fc-833a-500024d2730f + - 95a02ddd-8345-461d-8c30-293a494a5c3f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -726,16 +735,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f426633d-d2f2-4a68-81c8-c80847b549b8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d754b3ff-c3a9-4449-974e-f48e3ddf8f67", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9097860d-4779-424b-9ac1-45202354d5b0", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "65663ad3-201a-4e6f-a7a5-7a46f8ea458f", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -744,15 +756,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:03 GMT + - Wed, 20 May 2026 08:49:10 GMT Pragma: - no-cache RequestId: - - f5591635-9a88-4575-907e-f62abdedd952 + - ddc08ad3-da1c-413e-b606-5197b784f490 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -778,9 +790,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/d754b3ff-c3a9-4449-974e-f48e3ddf8f67/items + uri: https://api.fabric.microsoft.com/v1/workspaces/65663ad3-201a-4e6f-a7a5-7a46f8ea458f/items response: body: string: '{"value": []}' @@ -796,11 +808,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:04 GMT + - Wed, 20 May 2026 08:49:11 GMT Pragma: - no-cache RequestId: - - a26d97f6-edee-4411-b3a0-f0f62b2b404e + - 91e55538-73dd-4a00-9ce0-b83a8c33fad5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -826,9 +838,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/d754b3ff-c3a9-4449-974e-f48e3ddf8f67/items + uri: https://api.fabric.microsoft.com/v1/workspaces/65663ad3-201a-4e6f-a7a5-7a46f8ea458f/items response: body: string: '{"value": []}' @@ -844,11 +856,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:05 GMT + - Wed, 20 May 2026 08:49:11 GMT Pragma: - no-cache RequestId: - - 2e96bd30-f0c8-406d-8058-dce19b82f9a1 + - 05c9ca3d-c783-4dce-a059-b1bff2bd8cca Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -874,9 +886,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/d754b3ff-c3a9-4449-974e-f48e3ddf8f67/items + uri: https://api.fabric.microsoft.com/v1/workspaces/65663ad3-201a-4e6f-a7a5-7a46f8ea458f/items response: body: string: '{"value": []}' @@ -892,11 +904,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:05 GMT + - Wed, 20 May 2026 08:49:12 GMT Pragma: - no-cache RequestId: - - aef13018-fb8c-4590-9dda-2c325d667b46 + - 8e396033-9a8f-49ec-a9db-d3ddcb202604 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -922,14 +934,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/f426633d-d2f2-4a68-81c8-c80847b549b8/items/141a3be4-e52c-4188-8fa5-ef1aba2b820e + uri: https://api.fabric.microsoft.com/v1/workspaces/9097860d-4779-424b-9ac1-45202354d5b0/items/7079b920-a6a3-43b8-aa3b-1ccda88cea7e response: body: - string: '{"id": "141a3be4-e52c-4188-8fa5-ef1aba2b820e", "type": "MirroredDatabase", - "displayName": "fabcli000003", "workspaceId": - "f426633d-d2f2-4a68-81c8-c80847b549b8"}' + string: '{"id": "7079b920-a6a3-43b8-aa3b-1ccda88cea7e", "type": "MirroredDatabase", + "displayName": "fabcli000003", "description": "", "workspaceId": "9097860d-4779-424b-9ac1-45202354d5b0"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -938,17 +949,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '169' + - '161' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:07 GMT + - Wed, 20 May 2026 08:49:13 GMT ETag: - '""' Pragma: - no-cache RequestId: - - a239077f-df4c-4bba-950e-35f622171dfc + - b2aa2ace-dcc6-43ff-8ae3-29bc78942b3a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -976,13 +987,13 @@ interactions: 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/f426633d-d2f2-4a68-81c8-c80847b549b8/items/141a3be4-e52c-4188-8fa5-ef1aba2b820e/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/9097860d-4779-424b-9ac1-45202354d5b0/items/7079b920-a6a3-43b8-aa3b-1ccda88cea7e/getDefinition response: body: string: '{"definition": {"parts": [{"path": "mirroring.json", "payload": "ew0KICAicHJvcGVydGllcyI6IHsNCiAgICAic291cmNlIjogew0KICAgICAgInR5cGUiOiAiR2VuZXJpY01pcnJvciIsDQogICAgICAidHlwZVByb3BlcnRpZXMiOiB7fQ0KICAgIH0sDQogICAgInRhcmdldCI6IHsNCiAgICAgICJ0eXBlIjogIk1vdW50ZWRSZWxhdGlvbmFsRGF0YWJhc2UiLA0KICAgICAgInR5cGVQcm9wZXJ0aWVzIjogew0KICAgICAgICAiZm9ybWF0IjogIkRlbHRhIg0KICAgICAgfQ0KICAgIH0NCiAgfQ0KfQ==", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk1pcnJvcmVkRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMyIsCiAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk1pcnJvcmVkRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMyIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -992,15 +1003,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '562' + - '534' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:07 GMT + - Wed, 20 May 2026 08:49:14 GMT Pragma: - no-cache RequestId: - - 0aec633e-7d59-4de3-af35-0e411f831d5b + - a658ac15-979a-4ac4-806b-10a94342df24 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1015,10 +1026,9 @@ interactions: code: 200 message: OK - request: - body: '{"type": "MirroredDatabase", "displayName": - "fabcli000003", "definition": {"parts": [{"path": "mirroring.json", "payload": - "ew0KICAicHJvcGVydGllcyI6IHsNCiAgICAic291cmNlIjogew0KICAgICAgInR5cGUiOiAiR2VuZXJpY01pcnJvciIsDQogICAgICAidHlwZVByb3BlcnRpZXMiOiB7fQ0KICAgIH0sDQogICAgInRhcmdldCI6IHsNCiAgICAgICJ0eXBlIjogIk1vdW50ZWRSZWxhdGlvbmFsRGF0YWJhc2UiLA0KICAgICAgInR5cGVQcm9wZXJ0aWVzIjogew0KICAgICAgICAiZm9ybWF0IjogIkRlbHRhIg0KICAgICAgfQ0KICAgIH0NCiAgfQ0KfQ==", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk1pcnJvcmVkRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMyIsCiAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + body: '{"type": "MirroredDatabase", "displayName": "fabcli000003", "definition": + {"parts": [{"path": "mirroring.json", "payload": "ew0KICAicHJvcGVydGllcyI6IHsNCiAgICAic291cmNlIjogew0KICAgICAgInR5cGUiOiAiR2VuZXJpY01pcnJvciIsDQogICAgICAidHlwZVByb3BlcnRpZXMiOiB7fQ0KICAgIH0sDQogICAgInRhcmdldCI6IHsNCiAgICAgICJ0eXBlIjogIk1vdW50ZWRSZWxhdGlvbmFsRGF0YWJhc2UiLA0KICAgICAgInR5cGVQcm9wZXJ0aWVzIjogew0KICAgICAgICAiZm9ybWF0IjogIkRlbHRhIg0KICAgICAgfQ0KICAgIH0NCiAgfQ0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk1pcnJvcmVkRGF0YWJhc2UiLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMyIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", "payloadType": "InlineBase64"}]}, "folderId": null}' headers: Accept: @@ -1028,18 +1038,17 @@ interactions: Connection: - keep-alive Content-Length: - - '1076' + - '995' 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/d754b3ff-c3a9-4449-974e-f48e3ddf8f67/items + uri: https://api.fabric.microsoft.com/v1/workspaces/65663ad3-201a-4e6f-a7a5-7a46f8ea458f/items response: body: - string: '{"id": "ae8c03dd-9b88-41c8-af7f-be30b69cc0a2", "type": "MirroredDatabase", - "displayName": "fabcli000003", "workspaceId": - "d754b3ff-c3a9-4449-974e-f48e3ddf8f67"}' + string: '{"id": "96b8b814-1008-4b92-adcc-975fb04d2fc6", "type": "MirroredDatabase", + "displayName": "fabcli000003", "description": "", "workspaceId": "65663ad3-201a-4e6f-a7a5-7a46f8ea458f"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1048,17 +1057,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '170' + - '161' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:09 GMT + - Wed, 20 May 2026 08:49:17 GMT ETag: - '""' Pragma: - no-cache RequestId: - - a7280425-a832-4334-9fa7-8b955dc552b2 + - 94b9f8e4-eddf-48e3-b891-2bbb9508185a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1084,16 +1093,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f426633d-d2f2-4a68-81c8-c80847b549b8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d754b3ff-c3a9-4449-974e-f48e3ddf8f67", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9097860d-4779-424b-9ac1-45202354d5b0", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "65663ad3-201a-4e6f-a7a5-7a46f8ea458f", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1102,15 +1114,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:11 GMT + - Wed, 20 May 2026 08:49:18 GMT Pragma: - no-cache RequestId: - - 211539b3-cb64-4a84-97e1-2a511ff586cf + - 2d2f0bc7-2f7d-48dc-8586-22a1bb6e5f22 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1136,14 +1148,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/f426633d-d2f2-4a68-81c8-c80847b549b8/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9097860d-4779-424b-9ac1-45202354d5b0/items response: body: - string: '{"value": [{"id": "141a3be4-e52c-4188-8fa5-ef1aba2b820e", "type": "MirroredDatabase", - "displayName": "fabcli000003", "workspaceId": - "f426633d-d2f2-4a68-81c8-c80847b549b8"}]}' + string: '{"value": [{"id": "7079b920-a6a3-43b8-aa3b-1ccda88cea7e", "type": "MirroredDatabase", + "displayName": "fabcli000003", "description": "", "workspaceId": "9097860d-4779-424b-9ac1-45202354d5b0"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1152,15 +1163,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '183' + - '172' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:11 GMT + - Wed, 20 May 2026 08:49:18 GMT Pragma: - no-cache RequestId: - - 46c10948-770b-4df2-9da0-e24e84883125 + - 963fc857-9851-45c0-a271-9ad6f340fa3b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1186,64 +1197,19 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/f426633d-d2f2-4a68-81c8-c80847b549b8/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: - - Fri, 06 Feb 2026 07:32:12 GMT - Pragma: - - no-cache - RequestId: - - eac3bf59-b189-4548-b34a-f991850a80d4 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f426633d-d2f2-4a68-81c8-c80847b549b8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d754b3ff-c3a9-4449-974e-f48e3ddf8f67", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9097860d-4779-424b-9ac1-45202354d5b0", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "65663ad3-201a-4e6f-a7a5-7a46f8ea458f", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1252,15 +1218,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:13 GMT + - Wed, 20 May 2026 08:49:18 GMT Pragma: - no-cache RequestId: - - 591ffb47-0a7f-47ec-8dbf-81418f5d1b29 + - 24a6ce67-00f2-41cb-949f-4e861bcb357d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1286,14 +1252,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/d754b3ff-c3a9-4449-974e-f48e3ddf8f67/items + uri: https://api.fabric.microsoft.com/v1/workspaces/65663ad3-201a-4e6f-a7a5-7a46f8ea458f/items response: body: - string: '{"value": [{"id": "ae8c03dd-9b88-41c8-af7f-be30b69cc0a2", "type": "MirroredDatabase", - "displayName": "fabcli000003", "workspaceId": - "d754b3ff-c3a9-4449-974e-f48e3ddf8f67"}]}' + string: '{"value": [{"id": "96b8b814-1008-4b92-adcc-975fb04d2fc6", "type": "MirroredDatabase", + "displayName": "fabcli000003", "description": "", "workspaceId": "65663ad3-201a-4e6f-a7a5-7a46f8ea458f"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1302,63 +1267,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '183' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:32:14 GMT - Pragma: - - no-cache - RequestId: - - ca789eee-de6b-45cb-9d12-725dfaab2e10 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d754b3ff-c3a9-4449-974e-f48e3ddf8f67/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' + - '173' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:15 GMT + - Wed, 20 May 2026 08:49:20 GMT Pragma: - no-cache RequestId: - - 3a726c2f-08d4-4154-9733-2fea0365cae8 + - fbcec50f-abd5-4e5d-8bb3-614c8818e671 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1384,16 +1301,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f426633d-d2f2-4a68-81c8-c80847b549b8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d754b3ff-c3a9-4449-974e-f48e3ddf8f67", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9097860d-4779-424b-9ac1-45202354d5b0", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "65663ad3-201a-4e6f-a7a5-7a46f8ea458f", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1402,15 +1322,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:16 GMT + - Wed, 20 May 2026 08:49:21 GMT Pragma: - no-cache RequestId: - - 74fba506-03fe-485f-a699-8738804f2bf8 + - 93e778f5-c100-4618-8bc5-105b1d67af31 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1436,16 +1356,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/f426633d-d2f2-4a68-81c8-c80847b549b8/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9097860d-4779-424b-9ac1-45202354d5b0/items response: body: - string: '{"value": [{"id": "16c389ce-d60c-4b58-b282-af805a0daeaf", "type": "SQLEndpoint", - "displayName": "fabcli000003", "description": "", "workspaceId": "f426633d-d2f2-4a68-81c8-c80847b549b8"}, - {"id": "141a3be4-e52c-4188-8fa5-ef1aba2b820e", "type": "MirroredDatabase", - "displayName": "fabcli000003", "workspaceId": - "f426633d-d2f2-4a68-81c8-c80847b549b8"}]}' + string: '{"value": [{"id": "46336123-e2b6-45cc-8857-15c1612e46fc", "type": "SQLEndpoint", + "displayName": "fabcli000003", "description": "", "workspaceId": "9097860d-4779-424b-9ac1-45202354d5b0"}, + {"id": "7079b920-a6a3-43b8-aa3b-1ccda88cea7e", "type": "MirroredDatabase", + "displayName": "fabcli000003", "description": "", "workspaceId": "9097860d-4779-424b-9ac1-45202354d5b0"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1454,15 +1373,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '231' + - '217' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:17 GMT + - Wed, 20 May 2026 08:49:21 GMT Pragma: - no-cache RequestId: - - fed1a193-82b9-49b3-91f8-655605455dce + - f3c9a291-7ef9-43b1-8c43-46fbf087df13 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1490,9 +1409,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/f426633d-d2f2-4a68-81c8-c80847b549b8/items/141a3be4-e52c-4188-8fa5-ef1aba2b820e + uri: https://api.fabric.microsoft.com/v1/workspaces/9097860d-4779-424b-9ac1-45202354d5b0/items/7079b920-a6a3-43b8-aa3b-1ccda88cea7e response: body: string: '' @@ -1508,11 +1427,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:32:17 GMT + - Wed, 20 May 2026 08:49:23 GMT Pragma: - no-cache RequestId: - - f50fa76e-cdf5-4d5b-a199-1c3249294944 + - 914581ad-b9b5-4913-981b-ce41bdb2820d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1538,16 +1457,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "f426633d-d2f2-4a68-81c8-c80847b549b8", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d754b3ff-c3a9-4449-974e-f48e3ddf8f67", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "9097860d-4779-424b-9ac1-45202354d5b0", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "65663ad3-201a-4e6f-a7a5-7a46f8ea458f", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1556,15 +1478,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2694' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:18 GMT + - Wed, 20 May 2026 08:49:23 GMT Pragma: - no-cache RequestId: - - 5c2aaa89-b99d-43b6-ada5-af45308a8071 + - 5fcadfa4-6e40-4e23-9308-50d18bdc100d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1590,9 +1512,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/f426633d-d2f2-4a68-81c8-c80847b549b8/items + uri: https://api.fabric.microsoft.com/v1/workspaces/9097860d-4779-424b-9ac1-45202354d5b0/items response: body: string: '{"value": []}' @@ -1608,11 +1530,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:19 GMT + - Wed, 20 May 2026 08:49:24 GMT Pragma: - no-cache RequestId: - - 9796f9af-c723-466a-b1f2-c8f372ed3438 + - 967454bb-b59b-49c0-b5d6-1ccd180f1641 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1640,9 +1562,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/f426633d-d2f2-4a68-81c8-c80847b549b8 + uri: https://api.fabric.microsoft.com/v1/workspaces/9097860d-4779-424b-9ac1-45202354d5b0 response: body: string: '' @@ -1658,11 +1580,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:32:20 GMT + - Wed, 20 May 2026 08:49:25 GMT Pragma: - no-cache RequestId: - - 499f6b1f-abf4-4e34-9507-30475f09c33f + - f2b7e871-09b0-458b-b3ad-005e536bdc09 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1688,15 +1610,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d754b3ff-c3a9-4449-974e-f48e3ddf8f67", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "65663ad3-201a-4e6f-a7a5-7a46f8ea458f", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1705,15 +1629,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2840' + - '2657' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:20 GMT + - Wed, 20 May 2026 08:49:25 GMT Pragma: - no-cache RequestId: - - 93777305-d6ee-4e5f-961f-8dd8bc0f7c11 + - fa9327aa-16fa-497e-8a27-f7a7c5679c75 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1739,14 +1663,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/d754b3ff-c3a9-4449-974e-f48e3ddf8f67/items + uri: https://api.fabric.microsoft.com/v1/workspaces/65663ad3-201a-4e6f-a7a5-7a46f8ea458f/items response: body: - string: '{"value": [{"id": "ae8c03dd-9b88-41c8-af7f-be30b69cc0a2", "type": "MirroredDatabase", - "displayName": "fabcli000003", "workspaceId": - "d754b3ff-c3a9-4449-974e-f48e3ddf8f67"}]}' + string: '{"value": [{"id": "96b8b814-1008-4b92-adcc-975fb04d2fc6", "type": "MirroredDatabase", + "displayName": "fabcli000003", "description": "", "workspaceId": "65663ad3-201a-4e6f-a7a5-7a46f8ea458f"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1755,15 +1678,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '183' + - '173' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:21 GMT + - Wed, 20 May 2026 08:49:26 GMT Pragma: - no-cache RequestId: - - 264848bc-8552-4c02-9634-c423168857a2 + - 1994e849-c0a5-407d-bfc0-fc8483c0de05 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1791,9 +1714,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/d754b3ff-c3a9-4449-974e-f48e3ddf8f67 + uri: https://api.fabric.microsoft.com/v1/workspaces/65663ad3-201a-4e6f-a7a5-7a46f8ea458f response: body: string: '' @@ -1809,11 +1732,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:32:22 GMT + - Wed, 20 May 2026 08:49:27 GMT Pragma: - no-cache RequestId: - - 365b8659-48f1-46d2-99db-15c94a065240 + - c5afa63c-4d8f-4b17-a35f-255b1357448f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[Notebook].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[Notebook].yaml index e417711d2..fc3da2f1a 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[Notebook].yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[Notebook].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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:24 GMT + - Wed, 20 May 2026 08:49:27 GMT Pragma: - no-cache RequestId: - - 88995911-46ad-483a-805e-67216dbe17bd + - 52a1364f-9511-48dc-ae6c-e4fd322a503b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:24 GMT + - Wed, 20 May 2026 08:49:28 GMT Pragma: - no-cache RequestId: - - 8c535acb-47f8-439c-b7de-34f10664db4d + - f6247096-f79d-45cc-b9ef-3d23a9160120 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,7 +113,7 @@ 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/capacities response: @@ -127,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '425' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:27 GMT + - Wed, 20 May 2026 08:49:33 GMT Pragma: - no-cache RequestId: - - 16051131-80e6-46b5-9a2b-4b94ebe5ea58 + - 23a75912-b56a-4fc3-b4f3-1b3207b5c3c0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -160,16 +162,16 @@ interactions: - keep-alive Content-Length: - '89' - 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 response: body: - string: '{"id": "e6ebd6d9-5c5c-4066-862d-11624d065bc6", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "6099ac4b-b14a-4cd0-9f82-7c21babf03e5", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -178,17 +180,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:35 GMT + - Wed, 20 May 2026 08:49:41 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/e6ebd6d9-5c5c-4066-862d-11624d065bc6 + - https://api.fabric.microsoft.com/v1/workspaces/6099ac4b-b14a-4cd0-9f82-7c21babf03e5 Pragma: - no-cache RequestId: - - 5eb55bb3-58be-4c80-aa1e-b6febed407f5 + - f784e4cf-c830-48d8-b369-ae4c770f20e2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,15 +216,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e6ebd6d9-5c5c-4066-862d-11624d065bc6", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6099ac4b-b14a-4cd0-9f82-7c21babf03e5", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -231,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2846' + - '2657' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:36 GMT + - Wed, 20 May 2026 08:49:42 GMT Pragma: - no-cache RequestId: - - 3ad616d6-0c6f-4644-94fa-9d45b400e98f + - 1d8f5c8b-b73f-4a28-babd-4fd388c23ddd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,15 +269,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e6ebd6d9-5c5c-4066-862d-11624d065bc6", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6099ac4b-b14a-4cd0-9f82-7c21babf03e5", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -282,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2846' + - '2657' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:37 GMT + - Wed, 20 May 2026 08:49:42 GMT Pragma: - no-cache RequestId: - - 2baf8088-6fd4-45fe-a930-76b272aa0b19 + - 91c9902a-adef-4a88-b5f5-3f70da71ce08 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,7 +322,7 @@ 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/capacities response: @@ -332,15 +338,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '429' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:39 GMT + - Wed, 20 May 2026 08:49:45 GMT Pragma: - no-cache RequestId: - - 288f82e0-014e-47cf-a3d3-a97f2cf43657 + - 527f356c-55eb-4186-b39e-2045dde00e44 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -365,16 +371,16 @@ interactions: - keep-alive Content-Length: - '89' - 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 response: body: - string: '{"id": "aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "4f666f56-17c4-4fa2-bee2-b6f8b512bf6b", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -383,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '154' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:47 GMT + - Wed, 20 May 2026 08:49:52 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a + - https://api.fabric.microsoft.com/v1/workspaces/4f666f56-17c4-4fa2-bee2-b6f8b512bf6b Pragma: - no-cache RequestId: - - f95d4900-0c8f-4749-a354-bf6eb6b2cfa5 + - 9fe7ec38-b231-4f94-95f9-002de918e6d8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -419,16 +425,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e6ebd6d9-5c5c-4066-862d-11624d065bc6", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6099ac4b-b14a-4cd0-9f82-7c21babf03e5", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4f666f56-17c4-4fa2-bee2-b6f8b512bf6b", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -437,15 +446,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:47 GMT + - Wed, 20 May 2026 08:49:53 GMT Pragma: - no-cache RequestId: - - 5c6f4316-4e3a-49c7-92a0-0bff3d72020b + - a9ba2597-5bcc-4c9d-adaa-71edeb0bfbae Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -471,9 +480,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/e6ebd6d9-5c5c-4066-862d-11624d065bc6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/6099ac4b-b14a-4cd0-9f82-7c21babf03e5/items response: body: string: '{"value": []}' @@ -489,11 +498,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:49 GMT + - Wed, 20 May 2026 08:49:54 GMT Pragma: - no-cache RequestId: - - 74b73271-4d1c-4360-93db-0e07e3d7f9a1 + - 1838ceb2-f872-4b15-8997-a6e7b0007d33 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -519,9 +528,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/e6ebd6d9-5c5c-4066-862d-11624d065bc6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/6099ac4b-b14a-4cd0-9f82-7c21babf03e5/items response: body: string: '{"value": []}' @@ -537,11 +546,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:49 GMT + - Wed, 20 May 2026 08:49:55 GMT Pragma: - no-cache RequestId: - - d15dc654-c755-4659-9481-bff5a9d60b48 + - e25eef83-abb7-4b85-9723-e236db667028 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -556,7 +565,9 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000003", "type": "Notebook", "folderId": null, "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", "payloadType": "InlineBase64"}]}}' + body: '{"displayName": "fabcli000003", "type": "Notebook", "folderId": null, "definition": + {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", + "payloadType": "InlineBase64"}]}}' headers: Accept: - '*/*' @@ -566,13 +577,12 @@ interactions: - keep-alive Content-Length: - '731' - 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/e6ebd6d9-5c5c-4066-862d-11624d065bc6/notebooks + uri: https://api.fabric.microsoft.com/v1/workspaces/6099ac4b-b14a-4cd0-9f82-7c21babf03e5/notebooks response: body: string: 'null' @@ -588,15 +598,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:32:50 GMT + - Wed, 20 May 2026 08:49:57 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4eba3d63-14ff-42b8-afcf-8364f913b1af + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dea3bf78-d151-4165-a4bc-c5295b943343 Pragma: - no-cache RequestId: - - c706bac4-b8ca-4a22-9047-71868fd2ea28 + - 97ac72af-778f-4083-b8fd-6ac73692202b Retry-After: - '20' Strict-Transport-Security: @@ -610,7 +620,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 4eba3d63-14ff-42b8-afcf-8364f913b1af + - dea3bf78-d151-4165-a4bc-c5295b943343 status: code: 202 message: Accepted @@ -626,13 +636,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4eba3d63-14ff-42b8-afcf-8364f913b1af + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dea3bf78-d151-4165-a4bc-c5295b943343 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:32:50.9174029", - "lastUpdatedTimeUtc": "2026-02-06T07:32:54.2936683", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:49:56.8887901", + "lastUpdatedTimeUtc": "2026-05-20T08:49:58.3381567", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -646,13 +656,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:33:13 GMT + - Wed, 20 May 2026 08:50:18 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4eba3d63-14ff-42b8-afcf-8364f913b1af/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dea3bf78-d151-4165-a4bc-c5295b943343/result Pragma: - no-cache RequestId: - - 714272ad-2a9a-4957-8c41-fe084b9d0727 + - 95e502d7-3aba-472f-ae04-7f4c4674686b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -660,7 +670,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 4eba3d63-14ff-42b8-afcf-8364f913b1af + - dea3bf78-d151-4165-a4bc-c5295b943343 status: code: 200 message: OK @@ -676,14 +686,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4eba3d63-14ff-42b8-afcf-8364f913b1af/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dea3bf78-d151-4165-a4bc-c5295b943343/result response: body: - string: '{"id": "458625d1-d48e-442e-864f-4614a2492c15", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "e6ebd6d9-5c5c-4066-862d-11624d065bc6"}' + string: '{"id": "44c1ec6f-3ee7-46ea-9dbc-543db4cb9624", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "6099ac4b-b14a-4cd0-9f82-7c21babf03e5"}' headers: Access-Control-Expose-Headers: - RequestId @@ -694,11 +703,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 07:33:14 GMT + - Wed, 20 May 2026 08:50:18 GMT Pragma: - no-cache RequestId: - - 8c85e5a1-11d6-4791-bb98-93bc1ed0b0ac + - f6c027ad-6c09-4293-b759-bfd64950fcde Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -722,16 +731,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e6ebd6d9-5c5c-4066-862d-11624d065bc6", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6099ac4b-b14a-4cd0-9f82-7c21babf03e5", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4f666f56-17c4-4fa2-bee2-b6f8b512bf6b", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -740,15 +752,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:33:15 GMT + - Wed, 20 May 2026 08:50:20 GMT Pragma: - no-cache RequestId: - - d22a0a1d-374d-4b7d-bdfe-31a85004e0ee + - 37e30031-88e1-4ced-a53e-5be45c5a61a3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -774,14 +786,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/e6ebd6d9-5c5c-4066-862d-11624d065bc6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/6099ac4b-b14a-4cd0-9f82-7c21babf03e5/items response: body: - string: '{"value": [{"id": "458625d1-d48e-442e-864f-4614a2492c15", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "e6ebd6d9-5c5c-4066-862d-11624d065bc6"}]}' + string: '{"value": [{"id": "44c1ec6f-3ee7-46ea-9dbc-543db4cb9624", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "6099ac4b-b14a-4cd0-9f82-7c21babf03e5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -790,15 +801,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '165' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:33:15 GMT + - Wed, 20 May 2026 08:50:20 GMT Pragma: - no-cache RequestId: - - 3bb525ac-32cd-4280-babb-4848c6adccee + - 89bf75b0-bbd2-4ad1-8b5d-26a3a3fbd0d5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -824,16 +835,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e6ebd6d9-5c5c-4066-862d-11624d065bc6", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6099ac4b-b14a-4cd0-9f82-7c21babf03e5", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4f666f56-17c4-4fa2-bee2-b6f8b512bf6b", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -842,15 +856,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:33:16 GMT + - Wed, 20 May 2026 08:50:21 GMT Pragma: - no-cache RequestId: - - ba1992c1-998e-4098-97b3-361f82a7fd3e + - 92aa1294-0a60-4c2b-ba3c-f2d8af0a93f4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -876,9 +890,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/aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f666f56-17c4-4fa2-bee2-b6f8b512bf6b/items response: body: string: '{"value": []}' @@ -894,11 +908,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:33:17 GMT + - Wed, 20 May 2026 08:50:22 GMT Pragma: - no-cache RequestId: - - ca760617-1454-4e90-9f48-059a7ac8658d + - c6566187-abae-42ac-b5ee-014ceecdd587 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -924,9 +938,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/aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f666f56-17c4-4fa2-bee2-b6f8b512bf6b/items response: body: string: '{"value": []}' @@ -942,11 +956,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:33:18 GMT + - Wed, 20 May 2026 08:50:24 GMT Pragma: - no-cache RequestId: - - 60e57bec-3af1-4f5e-bc32-10b026067649 + - 07d1d2b3-2ebb-4600-9d55-37b62edd9c88 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -972,9 +986,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/aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f666f56-17c4-4fa2-bee2-b6f8b512bf6b/items response: body: string: '{"value": []}' @@ -990,11 +1004,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:33:19 GMT + - Wed, 20 May 2026 08:50:24 GMT Pragma: - no-cache RequestId: - - f7441aac-4c1f-4a21-91bd-98159d8864f6 + - 8b4ec57e-0ae1-4da9-bee3-dd22247be472 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1020,14 +1034,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/e6ebd6d9-5c5c-4066-862d-11624d065bc6/items/458625d1-d48e-442e-864f-4614a2492c15 + uri: https://api.fabric.microsoft.com/v1/workspaces/6099ac4b-b14a-4cd0-9f82-7c21babf03e5/items/44c1ec6f-3ee7-46ea-9dbc-543db4cb9624 response: body: - string: '{"id": "458625d1-d48e-442e-864f-4614a2492c15", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "e6ebd6d9-5c5c-4066-862d-11624d065bc6"}' + string: '{"id": "44c1ec6f-3ee7-46ea-9dbc-543db4cb9624", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "6099ac4b-b14a-4cd0-9f82-7c21babf03e5"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1036,17 +1049,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '154' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:33:20 GMT + - Wed, 20 May 2026 08:50:25 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 8aa00818-4a44-4b31-9d37-7f2f62338d14 + - ebc77aa9-8863-4888-b16e-72b97ecd545b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1074,9 +1087,9 @@ interactions: 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/e6ebd6d9-5c5c-4066-862d-11624d065bc6/items/458625d1-d48e-442e-864f-4614a2492c15/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/6099ac4b-b14a-4cd0-9f82-7c21babf03e5/items/44c1ec6f-3ee7-46ea-9dbc-543db4cb9624/getDefinition response: body: string: 'null' @@ -1092,13 +1105,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:33:20 GMT + - Wed, 20 May 2026 08:50:26 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2181f6d5-55e5-4ea7-8345-364da7705f54 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8c5e95e1-ca78-4165-a76b-8be8bde25b22 Pragma: - no-cache RequestId: - - ea8fb8da-3cca-4c28-ad71-75834da16e39 + - e922fac8-81f9-4357-a635-32dc78d89100 Retry-After: - '20' Strict-Transport-Security: @@ -1112,7 +1125,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 2181f6d5-55e5-4ea7-8345-364da7705f54 + - 8c5e95e1-ca78-4165-a76b-8be8bde25b22 status: code: 202 message: Accepted @@ -1128,13 +1141,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2181f6d5-55e5-4ea7-8345-364da7705f54 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8c5e95e1-ca78-4165-a76b-8be8bde25b22 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:33:21.2998395", - "lastUpdatedTimeUtc": "2026-02-06T07:33:21.5967366", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:50:26.6202893", + "lastUpdatedTimeUtc": "2026-05-20T08:50:27.317546", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1148,13 +1161,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:33:43 GMT + - Wed, 20 May 2026 08:50:47 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2181f6d5-55e5-4ea7-8345-364da7705f54/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8c5e95e1-ca78-4165-a76b-8be8bde25b22/result Pragma: - no-cache RequestId: - - 537b7e95-6c52-4121-8ae5-24c032632dd4 + - 2438a12d-38eb-409d-b8b1-68a230308e60 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1162,7 +1175,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 2181f6d5-55e5-4ea7-8345-364da7705f54 + - 8c5e95e1-ca78-4165-a76b-8be8bde25b22 status: code: 200 message: OK @@ -1178,14 +1191,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2181f6d5-55e5-4ea7-8345-364da7705f54/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8c5e95e1-ca78-4165-a76b-8be8bde25b22/result response: body: string: '{"definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -1197,11 +1210,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 07:33:43 GMT + - Wed, 20 May 2026 08:50:47 GMT Pragma: - no-cache RequestId: - - 629be783-6eb4-4c72-8198-6643348d12a3 + - 78509208-d222-487d-bb3c-c547f81a3a5f Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1214,7 +1227,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "Notebook", "displayName": "fabcli000003", "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}, "folderId": null}' + body: '{"type": "Notebook", "displayName": "fabcli000003", "definition": {"parts": + [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}]}, "folderId": null}' headers: Accept: - '*/*' @@ -1223,14 +1239,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1252' - + - '1204' 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/aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f666f56-17c4-4fa2-bee2-b6f8b512bf6b/items response: body: string: 'null' @@ -1246,15 +1261,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:33:45 GMT + - Wed, 20 May 2026 08:50:49 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d73c3c23-4233-4646-96f6-4ab5375ce317 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/17bb6ac0-f100-40a9-9732-a2a578e6bedf Pragma: - no-cache RequestId: - - 5a050cb2-96b1-4b45-bf4c-20ee893dfd6a + - 4e8f5352-960a-44a8-9b4c-759c03fe54ae Retry-After: - '20' Strict-Transport-Security: @@ -1268,7 +1283,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - d73c3c23-4233-4646-96f6-4ab5375ce317 + - 17bb6ac0-f100-40a9-9732-a2a578e6bedf status: code: 202 message: Accepted @@ -1284,13 +1299,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d73c3c23-4233-4646-96f6-4ab5375ce317 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/17bb6ac0-f100-40a9-9732-a2a578e6bedf response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:33:45.2096724", - "lastUpdatedTimeUtc": "2026-02-06T07:33:46.8346822", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:50:49.9000577", + "lastUpdatedTimeUtc": "2026-05-20T08:50:51.3316034", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1304,13 +1319,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:34:07 GMT + - Wed, 20 May 2026 08:51:10 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d73c3c23-4233-4646-96f6-4ab5375ce317/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/17bb6ac0-f100-40a9-9732-a2a578e6bedf/result Pragma: - no-cache RequestId: - - 43b1b9e1-724d-408b-b023-9da62cca7c06 + - 31faa5b6-5ef4-4203-8ac8-956d06f8a91f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1318,7 +1333,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - d73c3c23-4233-4646-96f6-4ab5375ce317 + - 17bb6ac0-f100-40a9-9732-a2a578e6bedf status: code: 200 message: OK @@ -1334,14 +1349,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d73c3c23-4233-4646-96f6-4ab5375ce317/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/17bb6ac0-f100-40a9-9732-a2a578e6bedf/result response: body: - string: '{"id": "7409ba6d-a093-4a31-b285-779b30520ee5", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a"}' + string: '{"id": "cfab0fb4-0fe9-4d58-be15-73031f7e1562", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "4f666f56-17c4-4fa2-bee2-b6f8b512bf6b"}' headers: Access-Control-Expose-Headers: - RequestId @@ -1352,11 +1366,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 07:34:07 GMT + - Wed, 20 May 2026 08:51:12 GMT Pragma: - no-cache RequestId: - - cf98c719-339c-4e29-9477-d9ef27e48c3b + - ddec7593-666a-44ed-9664-648768bcc7d2 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1380,16 +1394,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e6ebd6d9-5c5c-4066-862d-11624d065bc6", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6099ac4b-b14a-4cd0-9f82-7c21babf03e5", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4f666f56-17c4-4fa2-bee2-b6f8b512bf6b", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1398,15 +1415,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:34:09 GMT + - Wed, 20 May 2026 08:51:12 GMT Pragma: - no-cache RequestId: - - e0d000d8-4d6e-419b-b3a7-25aa18213cf0 + - ca860895-accd-4e42-933a-0272ceb0fe1e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1432,14 +1449,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/e6ebd6d9-5c5c-4066-862d-11624d065bc6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/6099ac4b-b14a-4cd0-9f82-7c21babf03e5/items response: body: - string: '{"value": [{"id": "458625d1-d48e-442e-864f-4614a2492c15", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "e6ebd6d9-5c5c-4066-862d-11624d065bc6"}]}' + string: '{"value": [{"id": "44c1ec6f-3ee7-46ea-9dbc-543db4cb9624", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "6099ac4b-b14a-4cd0-9f82-7c21babf03e5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1448,63 +1464,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:34:10 GMT - Pragma: - - no-cache - RequestId: - - ea840f5f-9f62-4a6f-89e8-7cd84b5f4834 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e6ebd6d9-5c5c-4066-862d-11624d065bc6/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' + - '165' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:34:10 GMT + - Wed, 20 May 2026 08:51:14 GMT Pragma: - no-cache RequestId: - - 48d57f30-de37-4bb8-b79a-23f15b44d84f + - 4e72ee76-16c0-41d8-9503-2e1f99fcaa32 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1530,66 +1498,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e6ebd6d9-5c5c-4066-862d-11624d065bc6", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a", "displayName": "fabcli000002", "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: - - '2882' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:34:11 GMT - Pragma: - - no-cache - RequestId: - - 5bd955b5-42dd-4368-9902-cd230eef39d4 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a/items - response: - body: - string: '{"value": [{"id": "7409ba6d-a093-4a31-b285-779b30520ee5", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6099ac4b-b14a-4cd0-9f82-7c21babf03e5", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4f666f56-17c4-4fa2-bee2-b6f8b512bf6b", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1598,15 +1519,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:34:12 GMT + - Wed, 20 May 2026 08:51:15 GMT Pragma: - no-cache RequestId: - - 8e633a38-1b3e-4535-b046-747db0833e6f + - ac135efd-834e-4e26-b3b1-c152b7a1f115 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1632,12 +1553,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/aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/4f666f56-17c4-4fa2-bee2-b6f8b512bf6b/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "cfab0fb4-0fe9-4d58-be15-73031f7e1562", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "4f666f56-17c4-4fa2-bee2-b6f8b512bf6b"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1646,15 +1568,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '164' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:34:13 GMT + - Wed, 20 May 2026 08:51:16 GMT Pragma: - no-cache RequestId: - - 9bd71f0a-6637-4d5b-bf7c-787bab53e163 + - fb8691e4-e140-4492-9798-488757ad3a12 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1680,16 +1602,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e6ebd6d9-5c5c-4066-862d-11624d065bc6", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6099ac4b-b14a-4cd0-9f82-7c21babf03e5", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4f666f56-17c4-4fa2-bee2-b6f8b512bf6b", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1698,15 +1623,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:34:13 GMT + - Wed, 20 May 2026 08:51:16 GMT Pragma: - no-cache RequestId: - - eabc161b-3dfd-456d-9107-d974f2f95064 + - 832d845c-58c4-4802-8da1-4732b96ca6e6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1732,14 +1657,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/e6ebd6d9-5c5c-4066-862d-11624d065bc6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/6099ac4b-b14a-4cd0-9f82-7c21babf03e5/items response: body: - string: '{"value": [{"id": "458625d1-d48e-442e-864f-4614a2492c15", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "e6ebd6d9-5c5c-4066-862d-11624d065bc6"}]}' + string: '{"value": [{"id": "44c1ec6f-3ee7-46ea-9dbc-543db4cb9624", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "6099ac4b-b14a-4cd0-9f82-7c21babf03e5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1748,15 +1672,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '165' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:34:14 GMT + - Wed, 20 May 2026 08:51:18 GMT Pragma: - no-cache RequestId: - - 3b521090-5865-4a5e-9653-9f7e045ea285 + - 91442004-8d3a-468a-9061-3305ee66c59b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1784,9 +1708,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/e6ebd6d9-5c5c-4066-862d-11624d065bc6/items/458625d1-d48e-442e-864f-4614a2492c15 + uri: https://api.fabric.microsoft.com/v1/workspaces/6099ac4b-b14a-4cd0-9f82-7c21babf03e5/items/44c1ec6f-3ee7-46ea-9dbc-543db4cb9624 response: body: string: '' @@ -1802,11 +1726,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:34:15 GMT + - Wed, 20 May 2026 08:51:19 GMT Pragma: - no-cache RequestId: - - 698f091e-ddb2-4fef-bc1d-fc0e014a4525 + - 1c3ab0e6-1af2-42ae-9cc2-22a3712e8c8a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1832,16 +1756,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e6ebd6d9-5c5c-4066-862d-11624d065bc6", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "6099ac4b-b14a-4cd0-9f82-7c21babf03e5", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4f666f56-17c4-4fa2-bee2-b6f8b512bf6b", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1850,15 +1777,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2693' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:34:16 GMT + - Wed, 20 May 2026 08:51:19 GMT Pragma: - no-cache RequestId: - - c0aa0c2b-01ac-4316-9990-7ae200962a78 + - 37e23b94-4f29-4776-8b56-a50b5a50bce6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1884,9 +1811,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/e6ebd6d9-5c5c-4066-862d-11624d065bc6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/6099ac4b-b14a-4cd0-9f82-7c21babf03e5/items response: body: string: '{"value": []}' @@ -1902,11 +1829,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:34:17 GMT + - Wed, 20 May 2026 08:51:20 GMT Pragma: - no-cache RequestId: - - 0484ed85-1196-492c-8dda-940526936d8b + - 85e4122a-48b7-4b54-90f7-3d1907d9b542 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1934,9 +1861,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/e6ebd6d9-5c5c-4066-862d-11624d065bc6 + uri: https://api.fabric.microsoft.com/v1/workspaces/6099ac4b-b14a-4cd0-9f82-7c21babf03e5 response: body: string: '' @@ -1952,11 +1879,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:34:17 GMT + - Wed, 20 May 2026 08:51:20 GMT Pragma: - no-cache RequestId: - - 2db8bc3e-484e-4c00-9eb5-0e35c432ac75 + - 490e2d74-7a1f-45fb-a698-357eca2552b4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1982,15 +1909,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "4f666f56-17c4-4fa2-bee2-b6f8b512bf6b", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1999,15 +1928,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2843' + - '2657' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:34:18 GMT + - Wed, 20 May 2026 08:51:22 GMT Pragma: - no-cache RequestId: - - 9a3ce03b-e99b-48a7-8bde-483f82cd5ed2 + - 5abf119c-016d-4e2c-abc3-071ea46c565c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2033,14 +1962,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/aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f666f56-17c4-4fa2-bee2-b6f8b512bf6b/items response: body: - string: '{"value": [{"id": "7409ba6d-a093-4a31-b285-779b30520ee5", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a"}]}' + string: '{"value": [{"id": "cfab0fb4-0fe9-4d58-be15-73031f7e1562", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "4f666f56-17c4-4fa2-bee2-b6f8b512bf6b"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2049,15 +1977,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '164' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:34:19 GMT + - Wed, 20 May 2026 08:51:23 GMT Pragma: - no-cache RequestId: - - 803f485e-1af6-45a3-adb5-cd978049e017 + - c8361e8c-73cb-4d72-bde4-92bebc7c66c6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2085,9 +2013,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/aeeee4a8-b729-4e4f-8882-6cd1f7b5ff6a + uri: https://api.fabric.microsoft.com/v1/workspaces/4f666f56-17c4-4fa2-bee2-b6f8b512bf6b response: body: string: '' @@ -2103,11 +2031,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:34:20 GMT + - Wed, 20 May 2026 08:51:23 GMT Pragma: - no-cache RequestId: - - bb8418d7-daec-4a30-9555-409675537808 + - 34bf4c54-2703-46fc-be0a-4d68543bebbf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[Reflex].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[Reflex].yaml index d5bbe3b7f..21ed7ecfe 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[Reflex].yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[Reflex].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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:34:21 GMT + - Wed, 20 May 2026 08:51:25 GMT Pragma: - no-cache RequestId: - - e4341515-1d5e-4659-8964-da285a03e280 + - 7c08579d-6492-4b0e-b6c9-dcfa02de27ce Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:34:21 GMT + - Wed, 20 May 2026 08:51:26 GMT Pragma: - no-cache RequestId: - - aa87d1a0-e5ec-4fa9-8d7b-61387adec46f + - 994e69fe-f9c0-493c-8d41-d4fb1eb91462 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,7 +113,7 @@ 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/capacities response: @@ -127,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:34:31 GMT + - Wed, 20 May 2026 08:51:30 GMT Pragma: - no-cache RequestId: - - 06e94dc7-9f5f-4bee-9b75-1c8eb8c830a8 + - e65730d2-7e37-42a5-bb00-a703d84d61d1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -150,8 +152,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -160,16 +161,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "99906f42-7ae9-4619-b281-0d92e1a43c1a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "540cd160-f00f-4169-8f22-9509e1430451", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -178,17 +180,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:34:40 GMT + - Wed, 20 May 2026 08:51:39 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/99906f42-7ae9-4619-b281-0d92e1a43c1a + - https://api.fabric.microsoft.com/v1/workspaces/540cd160-f00f-4169-8f22-9509e1430451 Pragma: - no-cache RequestId: - - 319cf893-e40e-4703-a542-136e3065c4f0 + - 04c60815-a079-4a27-bc59-3e60be988fa8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,15 +216,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "99906f42-7ae9-4619-b281-0d92e1a43c1a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "540cd160-f00f-4169-8f22-9509e1430451", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -231,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2844' + - '2660' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:34:40 GMT + - Wed, 20 May 2026 08:51:40 GMT Pragma: - no-cache RequestId: - - 88be92b2-c2f4-429a-a829-c91ca3d6bdfb + - f859c69b-de91-4235-8aac-22a4cc2f4600 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,15 +269,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "99906f42-7ae9-4619-b281-0d92e1a43c1a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "540cd160-f00f-4169-8f22-9509e1430451", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -282,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2844' + - '2660' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:34:40 GMT + - Wed, 20 May 2026 08:51:41 GMT Pragma: - no-cache RequestId: - - 4916161b-71c3-4c5f-a407-b1691bcfd690 + - 4373ee74-3a7f-46bb-bf2f-dd8c768fb9c0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,7 +322,7 @@ 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/capacities response: @@ -332,15 +338,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '427' + - '425' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:34:46 GMT + - Wed, 20 May 2026 08:51:45 GMT Pragma: - no-cache RequestId: - - 649516dc-7adb-4132-ac89-18c4cf631e3b + - f49ceaa3-06a5-43eb-9c2d-9d2ee267ee3c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -355,8 +361,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000002", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -365,16 +370,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "edaeec11-8a7a-4141-a502-fa6ada85d14c", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "62d00615-3eba-4970-8309-bfe58529cada", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -383,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:34:54 GMT + - Wed, 20 May 2026 08:51:51 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/edaeec11-8a7a-4141-a502-fa6ada85d14c + - https://api.fabric.microsoft.com/v1/workspaces/62d00615-3eba-4970-8309-bfe58529cada Pragma: - no-cache RequestId: - - 4dba4d8c-e304-4ab4-a6ce-12d11ad981ad + - 74e7cd12-9ac7-4ee0-beb8-24ebb8b1048d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -419,16 +425,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "99906f42-7ae9-4619-b281-0d92e1a43c1a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "edaeec11-8a7a-4141-a502-fa6ada85d14c", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "540cd160-f00f-4169-8f22-9509e1430451", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "62d00615-3eba-4970-8309-bfe58529cada", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -437,15 +446,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:34:55 GMT + - Wed, 20 May 2026 08:51:52 GMT Pragma: - no-cache RequestId: - - d49d61a7-a611-4dcc-b4db-c1ed7af3ce73 + - e6c5c4bd-edba-4bad-b490-2d3996bb7792 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -471,9 +480,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/99906f42-7ae9-4619-b281-0d92e1a43c1a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/540cd160-f00f-4169-8f22-9509e1430451/items response: body: string: '{"value": []}' @@ -489,11 +498,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:34:56 GMT + - Wed, 20 May 2026 08:51:52 GMT Pragma: - no-cache RequestId: - - 68522796-631b-4d87-a167-7806514452e1 + - 2752f055-73bd-4f3a-baa1-32a9d85f5466 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -519,9 +528,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/99906f42-7ae9-4619-b281-0d92e1a43c1a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/540cd160-f00f-4169-8f22-9509e1430451/items response: body: string: '{"value": []}' @@ -537,11 +546,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:34:56 GMT + - Wed, 20 May 2026 08:51:53 GMT Pragma: - no-cache RequestId: - - 85e84eb9-d1e4-4241-bca5-38e13a6c166d + - 33d1e273-1b17-48dc-9806-545819474430 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -556,8 +565,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000003", "type": - "Reflex", "folderId": null}' + body: '{"displayName": "fabcli000003", "type": "Reflex", "folderId": null}' headers: Accept: - '*/*' @@ -566,17 +574,17 @@ interactions: Connection: - keep-alive Content-Length: - - '104' + - '71' 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/99906f42-7ae9-4619-b281-0d92e1a43c1a/reflexes + uri: https://api.fabric.microsoft.com/v1/workspaces/540cd160-f00f-4169-8f22-9509e1430451/reflexes response: body: - string: '{"id": "53452f57-fff9-4379-adc8-8b31afc3cb18", "type": "Reflex", "displayName": - "fabcli000003", "workspaceId": "99906f42-7ae9-4619-b281-0d92e1a43c1a"}' + string: '{"id": "732ec4a6-60d1-4523-9aa8-49470a632058", "type": "Reflex", "displayName": + "fabcli000003", "description": "", "workspaceId": "540cd160-f00f-4169-8f22-9509e1430451"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -585,17 +593,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:34:59 GMT + - Wed, 20 May 2026 08:51:57 GMT ETag: - '""' Pragma: - no-cache RequestId: - - d5244a4f-892f-4643-9a13-6670e6e213f5 + - 6ee558fb-5ddb-4e2e-a014-16d747f95403 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -621,16 +629,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "99906f42-7ae9-4619-b281-0d92e1a43c1a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "edaeec11-8a7a-4141-a502-fa6ada85d14c", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "540cd160-f00f-4169-8f22-9509e1430451", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "62d00615-3eba-4970-8309-bfe58529cada", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -639,15 +650,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:00 GMT + - Wed, 20 May 2026 08:51:58 GMT Pragma: - no-cache RequestId: - - 1985e51b-de56-4d40-80a6-c8bfde06915c + - ff94d2bc-6784-454a-b551-5dfbd52ee824 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -673,14 +684,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/99906f42-7ae9-4619-b281-0d92e1a43c1a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/540cd160-f00f-4169-8f22-9509e1430451/items response: body: - string: '{"value": [{"id": "53452f57-fff9-4379-adc8-8b31afc3cb18", "type": "Reflex", - "displayName": "fabcli000003", "workspaceId": - "99906f42-7ae9-4619-b281-0d92e1a43c1a"}]}' + string: '{"value": [{"id": "732ec4a6-60d1-4523-9aa8-49470a632058", "type": "Reflex", + "displayName": "fabcli000003", "description": "", "workspaceId": "540cd160-f00f-4169-8f22-9509e1430451"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -689,15 +699,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:00 GMT + - Wed, 20 May 2026 08:51:59 GMT Pragma: - no-cache RequestId: - - c1b9c2f7-b746-423b-bee0-900b90275c4c + - 1ea60121-0a9e-4e12-afcd-65dcdd51abd0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -723,16 +733,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "99906f42-7ae9-4619-b281-0d92e1a43c1a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "edaeec11-8a7a-4141-a502-fa6ada85d14c", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "540cd160-f00f-4169-8f22-9509e1430451", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "62d00615-3eba-4970-8309-bfe58529cada", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -741,15 +754,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:02 GMT + - Wed, 20 May 2026 08:52:00 GMT Pragma: - no-cache RequestId: - - ab42ed67-d2a4-473c-a845-7fcd6d5e5ecb + - f9018250-2805-49e1-b99e-5a89d8f6c0ce Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -775,9 +788,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/edaeec11-8a7a-4141-a502-fa6ada85d14c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/62d00615-3eba-4970-8309-bfe58529cada/items response: body: string: '{"value": []}' @@ -793,11 +806,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:02 GMT + - Wed, 20 May 2026 08:52:01 GMT Pragma: - no-cache RequestId: - - bc0b9a10-77e3-4ea4-b76d-82de8adca83e + - 97a90560-c5c2-4a4d-8d5c-0e60cd8850f4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -823,9 +836,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/edaeec11-8a7a-4141-a502-fa6ada85d14c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/62d00615-3eba-4970-8309-bfe58529cada/items response: body: string: '{"value": []}' @@ -841,11 +854,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:03 GMT + - Wed, 20 May 2026 08:52:01 GMT Pragma: - no-cache RequestId: - - b143d0c9-8005-4533-b304-818241aab277 + - 5eba54f5-e6cb-4256-b423-6ed4fea77930 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -871,9 +884,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/edaeec11-8a7a-4141-a502-fa6ada85d14c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/62d00615-3eba-4970-8309-bfe58529cada/items response: body: string: '{"value": []}' @@ -889,11 +902,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:03 GMT + - Wed, 20 May 2026 08:52:02 GMT Pragma: - no-cache RequestId: - - 3106e24c-4b6d-40f8-95b4-7af0b1eaf118 + - 2bb7fcbc-b621-4166-869a-84293aa6899a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -919,13 +932,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/99906f42-7ae9-4619-b281-0d92e1a43c1a/items/53452f57-fff9-4379-adc8-8b31afc3cb18 + uri: https://api.fabric.microsoft.com/v1/workspaces/540cd160-f00f-4169-8f22-9509e1430451/items/732ec4a6-60d1-4523-9aa8-49470a632058 response: body: - string: '{"id": "53452f57-fff9-4379-adc8-8b31afc3cb18", "type": "Reflex", "displayName": - "fabcli000003", "workspaceId": "99906f42-7ae9-4619-b281-0d92e1a43c1a"}' + string: '{"id": "732ec4a6-60d1-4523-9aa8-49470a632058", "type": "Reflex", "displayName": + "fabcli000003", "description": "", "workspaceId": "540cd160-f00f-4169-8f22-9509e1430451"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -934,17 +947,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:04 GMT + - Wed, 20 May 2026 08:52:03 GMT ETag: - '""' Pragma: - no-cache RequestId: - - eb606584-8e5e-4f65-8d3c-7899dc7b31be + - a149d181-ed74-418d-a2a5-b936fe298846 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -972,13 +985,13 @@ interactions: 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/99906f42-7ae9-4619-b281-0d92e1a43c1a/items/53452f57-fff9-4379-adc8-8b31afc3cb18/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/540cd160-f00f-4169-8f22-9509e1430451/items/732ec4a6-60d1-4523-9aa8-49470a632058/getDefinition response: body: string: '{"definition": {"parts": [{"path": "ReflexEntities.json", "payload": - "W10=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlJlZmxleCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "W10=", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlJlZmxleCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -988,15 +1001,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '425' + - '394' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:07 GMT + - Wed, 20 May 2026 08:52:06 GMT Pragma: - no-cache RequestId: - - 1abf70aa-f701-4cc5-bba3-b9d213370c75 + - 3ff172e1-b60a-4a67-9995-e32a9db9ca48 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1011,9 +1024,9 @@ interactions: code: 200 message: OK - request: - body: '{"type": "Reflex", "displayName": "fabcli000003", - "definition": {"parts": [{"path": "ReflexEntities.json", "payload": "W10=", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlJlZmxleCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + body: '{"type": "Reflex", "displayName": "fabcli000003", "definition": {"parts": + [{"path": "ReflexEntities.json", "payload": "W10=", "payloadType": "InlineBase64"}, + {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlJlZmxleCIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}, "folderId": null}' headers: Accept: @@ -1023,17 +1036,17 @@ interactions: Connection: - keep-alive Content-Length: - - '735' + - '650' 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/edaeec11-8a7a-4141-a502-fa6ada85d14c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/62d00615-3eba-4970-8309-bfe58529cada/items response: body: - string: '{"id": "be735422-b5c3-4a02-805b-4d3afad77e11", "type": "Reflex", "displayName": - "fabcli000003", "workspaceId": "edaeec11-8a7a-4141-a502-fa6ada85d14c"}' + string: '{"id": "eedda0bf-0539-4598-a8ad-4eb233f8720a", "type": "Reflex", "displayName": + "fabcli000003", "description": "", "workspaceId": "62d00615-3eba-4970-8309-bfe58529cada"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1042,17 +1055,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '164' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:10 GMT + - Wed, 20 May 2026 08:52:11 GMT ETag: - '""' Pragma: - no-cache RequestId: - - a5d66fd2-4a1a-4a25-84ec-406cc2a6e798 + - 26429c20-1842-4650-887f-51750ce93495 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1078,66 +1091,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "99906f42-7ae9-4619-b281-0d92e1a43c1a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "edaeec11-8a7a-4141-a502-fa6ada85d14c", "displayName": "fabcli000002", "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: - - '2882' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:35:11 GMT - Pragma: - - no-cache - RequestId: - - a189c912-ca7f-4a3e-9ed7-ade191c8a665 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/99906f42-7ae9-4619-b281-0d92e1a43c1a/items - response: - body: - string: '{"value": [{"id": "53452f57-fff9-4379-adc8-8b31afc3cb18", "type": "Reflex", - "displayName": "fabcli000003", "workspaceId": - "99906f42-7ae9-4619-b281-0d92e1a43c1a"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "540cd160-f00f-4169-8f22-9509e1430451", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "62d00615-3eba-4970-8309-bfe58529cada", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1146,15 +1112,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:12 GMT + - Wed, 20 May 2026 08:52:13 GMT Pragma: - no-cache RequestId: - - 320e050a-a059-4bd0-a039-a5fa234441b1 + - 932b6fcf-bf93-493f-a7b4-496095f1fc3f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1180,12 +1146,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/99906f42-7ae9-4619-b281-0d92e1a43c1a/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/540cd160-f00f-4169-8f22-9509e1430451/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "732ec4a6-60d1-4523-9aa8-49470a632058", "type": "Reflex", + "displayName": "fabcli000003", "description": "", "workspaceId": "540cd160-f00f-4169-8f22-9509e1430451"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1194,15 +1161,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:12 GMT + - Wed, 20 May 2026 08:52:13 GMT Pragma: - no-cache RequestId: - - 17555d13-8fc9-4fa5-a711-5499d6aa7479 + - 899951b6-ec57-4e66-a21f-3f732c373a33 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1228,66 +1195,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "99906f42-7ae9-4619-b281-0d92e1a43c1a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "edaeec11-8a7a-4141-a502-fa6ada85d14c", "displayName": "fabcli000002", "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: - - '2882' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:35:13 GMT - Pragma: - - no-cache - RequestId: - - a4ebcc49-9cb3-4ee5-89bb-5f7d26469b9d - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/edaeec11-8a7a-4141-a502-fa6ada85d14c/items - response: - body: - string: '{"value": [{"id": "be735422-b5c3-4a02-805b-4d3afad77e11", "type": "Reflex", - "displayName": "fabcli000003", "workspaceId": - "edaeec11-8a7a-4141-a502-fa6ada85d14c"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "540cd160-f00f-4169-8f22-9509e1430451", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "62d00615-3eba-4970-8309-bfe58529cada", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1296,15 +1216,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:14 GMT + - Wed, 20 May 2026 08:52:14 GMT Pragma: - no-cache RequestId: - - 2669752e-3f76-407b-8cf0-480d0cbdb2fb + - de7f5bd7-e966-452b-946b-ed03e3766cfe Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1330,12 +1250,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/edaeec11-8a7a-4141-a502-fa6ada85d14c/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/62d00615-3eba-4970-8309-bfe58529cada/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "eedda0bf-0539-4598-a8ad-4eb233f8720a", "type": "Reflex", + "displayName": "fabcli000003", "description": "", "workspaceId": "62d00615-3eba-4970-8309-bfe58529cada"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1344,15 +1265,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:15 GMT + - Wed, 20 May 2026 08:52:15 GMT Pragma: - no-cache RequestId: - - 86ffb3d2-4300-43cf-98c5-c404dfce2298 + - e705a911-654b-43b3-977c-78ef1c64f4f6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1378,16 +1299,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "99906f42-7ae9-4619-b281-0d92e1a43c1a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "edaeec11-8a7a-4141-a502-fa6ada85d14c", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "540cd160-f00f-4169-8f22-9509e1430451", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "62d00615-3eba-4970-8309-bfe58529cada", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1396,15 +1320,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:16 GMT + - Wed, 20 May 2026 08:52:16 GMT Pragma: - no-cache RequestId: - - f578dc74-199d-449a-8b67-fd31d8ecf1fa + - e002cfd1-dbb3-4357-99dc-b553b92d0ea7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1430,14 +1354,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/99906f42-7ae9-4619-b281-0d92e1a43c1a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/540cd160-f00f-4169-8f22-9509e1430451/items response: body: - string: '{"value": [{"id": "53452f57-fff9-4379-adc8-8b31afc3cb18", "type": "Reflex", - "displayName": "fabcli000003", "workspaceId": - "99906f42-7ae9-4619-b281-0d92e1a43c1a"}]}' + string: '{"value": [{"id": "732ec4a6-60d1-4523-9aa8-49470a632058", "type": "Reflex", + "displayName": "fabcli000003", "description": "", "workspaceId": "540cd160-f00f-4169-8f22-9509e1430451"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1446,15 +1369,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:17 GMT + - Wed, 20 May 2026 08:52:17 GMT Pragma: - no-cache RequestId: - - 250cdda0-b6c5-4fff-9db8-0276768bb1ae + - b41ba6ac-05b6-4674-8752-2b723a5f8828 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1482,9 +1405,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/99906f42-7ae9-4619-b281-0d92e1a43c1a/items/53452f57-fff9-4379-adc8-8b31afc3cb18 + uri: https://api.fabric.microsoft.com/v1/workspaces/540cd160-f00f-4169-8f22-9509e1430451/items/732ec4a6-60d1-4523-9aa8-49470a632058 response: body: string: '' @@ -1500,11 +1423,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:35:18 GMT + - Wed, 20 May 2026 08:52:17 GMT Pragma: - no-cache RequestId: - - 0c8ac9e9-2c0d-44c7-8026-1116f0eca7a0 + - e49eb0c8-627e-43f3-903e-3c8ba9c20066 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1530,16 +1453,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "99906f42-7ae9-4619-b281-0d92e1a43c1a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "edaeec11-8a7a-4141-a502-fa6ada85d14c", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "540cd160-f00f-4169-8f22-9509e1430451", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "62d00615-3eba-4970-8309-bfe58529cada", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1548,15 +1474,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:18 GMT + - Wed, 20 May 2026 08:52:18 GMT Pragma: - no-cache RequestId: - - 9e01a24d-f7a0-4f8a-ba7e-517629ce1856 + - 8732dfd4-5839-4cad-a46c-ac95afc23e8e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1582,9 +1508,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/99906f42-7ae9-4619-b281-0d92e1a43c1a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/540cd160-f00f-4169-8f22-9509e1430451/items response: body: string: '{"value": []}' @@ -1600,11 +1526,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:19 GMT + - Wed, 20 May 2026 08:52:19 GMT Pragma: - no-cache RequestId: - - cc6c0231-7e56-4866-ade8-22233a09c1d7 + - c889987b-15a6-4039-aaee-f3f8a11d581a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1632,9 +1558,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/99906f42-7ae9-4619-b281-0d92e1a43c1a + uri: https://api.fabric.microsoft.com/v1/workspaces/540cd160-f00f-4169-8f22-9509e1430451 response: body: string: '' @@ -1650,11 +1576,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:35:19 GMT + - Wed, 20 May 2026 08:52:19 GMT Pragma: - no-cache RequestId: - - e0f619db-80c3-4794-8636-050734eb8769 + - f08b3de2-5d5d-4847-8b4c-81703f52e5ed Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1680,15 +1606,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "edaeec11-8a7a-4141-a502-fa6ada85d14c", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "62d00615-3eba-4970-8309-bfe58529cada", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1697,15 +1625,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2843' + - '2660' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:21 GMT + - Wed, 20 May 2026 08:52:21 GMT Pragma: - no-cache RequestId: - - 80a925c5-58c3-43b0-aaa0-5a303bb1bc2b + - 90237e22-2620-4eec-ac6c-d24f954731fb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1731,14 +1659,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/edaeec11-8a7a-4141-a502-fa6ada85d14c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/62d00615-3eba-4970-8309-bfe58529cada/items response: body: - string: '{"value": [{"id": "be735422-b5c3-4a02-805b-4d3afad77e11", "type": "Reflex", - "displayName": "fabcli000003", "workspaceId": - "edaeec11-8a7a-4141-a502-fa6ada85d14c"}]}' + string: '{"value": [{"id": "eedda0bf-0539-4598-a8ad-4eb233f8720a", "type": "Reflex", + "displayName": "fabcli000003", "description": "", "workspaceId": "62d00615-3eba-4970-8309-bfe58529cada"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1747,15 +1674,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:21 GMT + - Wed, 20 May 2026 08:52:21 GMT Pragma: - no-cache RequestId: - - e897b4cd-1b33-4df1-bb93-49dfa57958ef + - a182a01a-8ead-49ee-a17a-37afc14f716d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1783,9 +1710,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/edaeec11-8a7a-4141-a502-fa6ada85d14c + uri: https://api.fabric.microsoft.com/v1/workspaces/62d00615-3eba-4970-8309-bfe58529cada response: body: string: '' @@ -1801,11 +1728,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:35:22 GMT + - Wed, 20 May 2026 08:52:23 GMT Pragma: - no-cache RequestId: - - 154f4ea1-3cd1-4df4-acf8-210292e9850b + - 6a645d86-5209-4380-b625-45569d8a4f0d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[SparkJobDefinition].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[SparkJobDefinition].yaml index 5e273f1a0..9546964a3 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[SparkJobDefinition].yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[SparkJobDefinition].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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:22 GMT + - Wed, 20 May 2026 08:52:24 GMT Pragma: - no-cache RequestId: - - 0e80df78-e2da-4658-9eed-a1c60a70a402 + - 16daf01d-2578-4057-a5b1-b0e8f87e023c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:23 GMT + - Wed, 20 May 2026 08:52:24 GMT Pragma: - no-cache RequestId: - - c046c167-3657-4f41-b2e1-b729c5f090a0 + - fb133e8d-bf7a-43d8-8a85-7e26d6513671 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,7 +113,7 @@ 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/capacities response: @@ -127,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '427' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:28 GMT + - Wed, 20 May 2026 08:52:30 GMT Pragma: - no-cache RequestId: - - 3e625cf2-bac8-4008-9a06-630d42a5b2ea + - a89c7d2c-83c8-4361-be67-1e27e6ee760d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -150,8 +152,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -160,16 +161,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "07ea752e-203c-480e-b358-c2a4c486ec3d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "5d29f875-aaf1-4af0-822f-e588622b138b", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -178,17 +180,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:35 GMT + - Wed, 20 May 2026 08:52:38 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/07ea752e-203c-480e-b358-c2a4c486ec3d + - https://api.fabric.microsoft.com/v1/workspaces/5d29f875-aaf1-4af0-822f-e588622b138b Pragma: - no-cache RequestId: - - 84e78426-5957-433b-b54b-f096eecca51b + - bac4279f-aab7-4d4a-9373-e118a2e7b16d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,15 +216,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07ea752e-203c-480e-b358-c2a4c486ec3d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "5d29f875-aaf1-4af0-822f-e588622b138b", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -231,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2845' + - '2656' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:35 GMT + - Wed, 20 May 2026 08:52:39 GMT Pragma: - no-cache RequestId: - - c8283953-a128-4371-bff2-3352c72bb776 + - 6b83cc60-3db4-44f0-9e8d-1c98788932e6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,15 +269,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07ea752e-203c-480e-b358-c2a4c486ec3d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "5d29f875-aaf1-4af0-822f-e588622b138b", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -282,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2845' + - '2656' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:36 GMT + - Wed, 20 May 2026 08:52:39 GMT Pragma: - no-cache RequestId: - - 9ac690a0-cce2-4ea6-a6b3-c127c196ad97 + - 4f9b48fb-58ba-4a95-87d8-78636d813e43 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,7 +322,7 @@ 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/capacities response: @@ -332,15 +338,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '427' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:42 GMT + - Wed, 20 May 2026 08:52:44 GMT Pragma: - no-cache RequestId: - - ef1a831c-faa4-49c9-8e7a-c34011b864ee + - 721b057d-e6b5-4bc7-8a20-13bb8a761fc1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -355,8 +361,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000002", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -365,16 +370,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "7779fb4c-96e7-445f-920d-cd670630c854", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "1862eeea-8325-4424-b35d-0cb68632f0ae", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -383,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:50 GMT + - Wed, 20 May 2026 08:52:50 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/7779fb4c-96e7-445f-920d-cd670630c854 + - https://api.fabric.microsoft.com/v1/workspaces/1862eeea-8325-4424-b35d-0cb68632f0ae Pragma: - no-cache RequestId: - - 1e0c44f4-8081-44f5-8727-26949702df1a + - f72899ae-5a25-4772-b8c1-ae48d74d5095 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -419,16 +425,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07ea752e-203c-480e-b358-c2a4c486ec3d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "7779fb4c-96e7-445f-920d-cd670630c854", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "5d29f875-aaf1-4af0-822f-e588622b138b", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1862eeea-8325-4424-b35d-0cb68632f0ae", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -437,15 +446,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2883' + - '2692' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:52 GMT + - Wed, 20 May 2026 08:52:51 GMT Pragma: - no-cache RequestId: - - 3bf087c4-d1af-43b6-a5ae-1b078e556594 + - e8d699a5-524c-46d1-bb18-78456a442837 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -471,9 +480,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/07ea752e-203c-480e-b358-c2a4c486ec3d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/5d29f875-aaf1-4af0-822f-e588622b138b/items response: body: string: '{"value": []}' @@ -489,11 +498,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:52 GMT + - Wed, 20 May 2026 08:52:52 GMT Pragma: - no-cache RequestId: - - 1856f51c-5005-47d4-af4f-8bd175032511 + - 0a9ac610-c73c-4921-ac63-9fad97e5fb83 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -519,9 +528,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/07ea752e-203c-480e-b358-c2a4c486ec3d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/5d29f875-aaf1-4af0-822f-e588622b138b/items response: body: string: '{"value": []}' @@ -537,11 +546,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:53 GMT + - Wed, 20 May 2026 08:52:53 GMT Pragma: - no-cache RequestId: - - 800b1e18-d023-4335-bfef-1a5a4b93909d + - 23ca3567-463e-420b-9fa9-48e189f0d0d8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -556,8 +565,8 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000003", "type": - "SparkJobDefinition", "folderId": null}' + body: '{"displayName": "fabcli000003", "type": "SparkJobDefinition", "folderId": + null}' headers: Accept: - '*/*' @@ -566,18 +575,17 @@ interactions: Connection: - keep-alive Content-Length: - - '116' + - '83' 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/07ea752e-203c-480e-b358-c2a4c486ec3d/sparkJobDefinitions + uri: https://api.fabric.microsoft.com/v1/workspaces/5d29f875-aaf1-4af0-822f-e588622b138b/sparkJobDefinitions response: body: - string: '{"id": "f594427d-1f92-4994-9571-1a44af086fd0", "type": "SparkJobDefinition", - "displayName": "fabcli000003", "workspaceId": - "07ea752e-203c-480e-b358-c2a4c486ec3d"}' + string: '{"id": "231ea84d-8585-4f9d-84df-62205c6d95f5", "type": "SparkJobDefinition", + "displayName": "fabcli000003", "description": "", "workspaceId": "5d29f875-aaf1-4af0-822f-e588622b138b"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -586,17 +594,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '174' + - '165' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:54 GMT + - Wed, 20 May 2026 08:52:55 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 8793be7b-9481-48bf-b000-03c6873f89d4 + - cd0e21be-8a6d-4608-9797-e14afe891395 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -622,16 +630,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07ea752e-203c-480e-b358-c2a4c486ec3d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "7779fb4c-96e7-445f-920d-cd670630c854", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "5d29f875-aaf1-4af0-822f-e588622b138b", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1862eeea-8325-4424-b35d-0cb68632f0ae", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -640,15 +651,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2883' + - '2692' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:55 GMT + - Wed, 20 May 2026 08:52:56 GMT Pragma: - no-cache RequestId: - - 197a7c69-40b7-4ac2-945a-cda579b46e0b + - 35764785-28b2-4c46-b938-786c078ea883 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -674,14 +685,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/07ea752e-203c-480e-b358-c2a4c486ec3d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/5d29f875-aaf1-4af0-822f-e588622b138b/items response: body: - string: '{"value": [{"id": "f594427d-1f92-4994-9571-1a44af086fd0", "type": "SparkJobDefinition", - "displayName": "fabcli000003", "workspaceId": - "07ea752e-203c-480e-b358-c2a4c486ec3d"}]}' + string: '{"value": [{"id": "231ea84d-8585-4f9d-84df-62205c6d95f5", "type": "SparkJobDefinition", + "displayName": "fabcli000003", "description": "", "workspaceId": "5d29f875-aaf1-4af0-822f-e588622b138b"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -690,15 +700,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '186' + - '175' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:56 GMT + - Wed, 20 May 2026 08:52:57 GMT Pragma: - no-cache RequestId: - - 9bf310ab-ad61-46ba-a360-609125ab1157 + - 7859dabb-7994-47a9-b82c-831757729ce2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -724,16 +734,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07ea752e-203c-480e-b358-c2a4c486ec3d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "7779fb4c-96e7-445f-920d-cd670630c854", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "5d29f875-aaf1-4af0-822f-e588622b138b", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1862eeea-8325-4424-b35d-0cb68632f0ae", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -742,15 +755,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2883' + - '2692' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:57 GMT + - Wed, 20 May 2026 08:52:57 GMT Pragma: - no-cache RequestId: - - 1e6391d4-9f33-4c2a-8071-5d2675044133 + - 01307a8b-f057-45b5-8bbc-d13f31560f94 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -776,9 +789,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/7779fb4c-96e7-445f-920d-cd670630c854/items + uri: https://api.fabric.microsoft.com/v1/workspaces/1862eeea-8325-4424-b35d-0cb68632f0ae/items response: body: string: '{"value": []}' @@ -794,11 +807,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:58 GMT + - Wed, 20 May 2026 08:52:59 GMT Pragma: - no-cache RequestId: - - a52b0c65-2351-4c46-8283-969162a44ee3 + - f67ff4f3-70a5-4507-9987-3d5791610ad7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -824,9 +837,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/7779fb4c-96e7-445f-920d-cd670630c854/items + uri: https://api.fabric.microsoft.com/v1/workspaces/1862eeea-8325-4424-b35d-0cb68632f0ae/items response: body: string: '{"value": []}' @@ -842,11 +855,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:59 GMT + - Wed, 20 May 2026 08:53:00 GMT Pragma: - no-cache RequestId: - - cb17d941-0d93-46cd-8521-1a04496532bb + - 31fd3943-b755-42e1-affa-740e605d8b68 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -872,9 +885,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/7779fb4c-96e7-445f-920d-cd670630c854/items + uri: https://api.fabric.microsoft.com/v1/workspaces/1862eeea-8325-4424-b35d-0cb68632f0ae/items response: body: string: '{"value": []}' @@ -890,11 +903,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:35:59 GMT + - Wed, 20 May 2026 08:53:00 GMT Pragma: - no-cache RequestId: - - 29e9718f-5b68-4612-9773-a344a65b9705 + - ec580732-aec0-496f-9609-c76f37785b1b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -920,14 +933,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/07ea752e-203c-480e-b358-c2a4c486ec3d/items/f594427d-1f92-4994-9571-1a44af086fd0 + uri: https://api.fabric.microsoft.com/v1/workspaces/5d29f875-aaf1-4af0-822f-e588622b138b/items/231ea84d-8585-4f9d-84df-62205c6d95f5 response: body: - string: '{"id": "f594427d-1f92-4994-9571-1a44af086fd0", "type": "SparkJobDefinition", - "displayName": "fabcli000003", "workspaceId": - "07ea752e-203c-480e-b358-c2a4c486ec3d"}' + string: '{"id": "231ea84d-8585-4f9d-84df-62205c6d95f5", "type": "SparkJobDefinition", + "displayName": "fabcli000003", "description": "", "workspaceId": "5d29f875-aaf1-4af0-822f-e588622b138b"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -936,17 +948,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '174' + - '165' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:36:00 GMT + - Wed, 20 May 2026 08:53:01 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 854fed73-7390-4482-a80b-4166333e02eb + - 07097525-a7a7-44c9-84e6-a13c74af6863 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -974,14 +986,14 @@ interactions: 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/07ea752e-203c-480e-b358-c2a4c486ec3d/items/f594427d-1f92-4994-9571-1a44af086fd0/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/5d29f875-aaf1-4af0-822f-e588622b138b/items/231ea84d-8585-4f9d-84df-62205c6d95f5/getDefinition response: body: string: '{"definition": {"parts": [{"path": "SparkJobDefinitionV1.json", "payload": "ew0KICAiZXhlY3V0YWJsZUZpbGUiOiBudWxsLA0KICAiZGVmYXVsdExha2Vob3VzZUFydGlmYWN0SWQiOiBudWxsLA0KICAibWFpbkNsYXNzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMYWtlaG91c2VJZHMiOiBbXSwNCiAgInJldHJ5UG9saWN5IjogbnVsbCwNCiAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMaWJyYXJ5VXJpcyI6IG51bGwsDQogICJsYW5ndWFnZSI6IG51bGwsDQogICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsDQp9", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -991,15 +1003,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '616' + - '585' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:36:02 GMT + - Wed, 20 May 2026 08:53:02 GMT Pragma: - no-cache RequestId: - - 015c3708-525d-4805-b6fa-1adaee3c2e99 + - 1cfd2bc9-beea-440e-9386-bf6216c22b9e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1014,10 +1026,9 @@ interactions: code: 200 message: OK - request: - body: '{"type": "SparkJobDefinition", "displayName": - "fabcli000003", "definition": {"parts": [{"path": "SparkJobDefinitionV1.json", - "payload": "ew0KICAiZXhlY3V0YWJsZUZpbGUiOiBudWxsLA0KICAiZGVmYXVsdExha2Vob3VzZUFydGlmYWN0SWQiOiBudWxsLA0KICAibWFpbkNsYXNzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMYWtlaG91c2VJZHMiOiBbXSwNCiAgInJldHJ5UG9saWN5IjogbnVsbCwNCiAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMaWJyYXJ5VXJpcyI6IG51bGwsDQogICJsYW5ndWFnZSI6IG51bGwsDQogICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsDQp9", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + body: '{"type": "SparkJobDefinition", "displayName": "fabcli000003", "definition": + {"parts": [{"path": "SparkJobDefinitionV1.json", "payload": "ew0KICAiZXhlY3V0YWJsZUZpbGUiOiBudWxsLA0KICAiZGVmYXVsdExha2Vob3VzZUFydGlmYWN0SWQiOiBudWxsLA0KICAibWFpbkNsYXNzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMYWtlaG91c2VJZHMiOiBbXSwNCiAgInJldHJ5UG9saWN5IjogbnVsbCwNCiAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMaWJyYXJ5VXJpcyI6IG51bGwsDQogICJsYW5ndWFnZSI6IG51bGwsDQogICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsDQp9", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAzIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}, "folderId": null}' headers: Accept: @@ -1027,18 +1038,17 @@ interactions: Connection: - keep-alive Content-Length: - - '1125' + - '1040' 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/7779fb4c-96e7-445f-920d-cd670630c854/items + uri: https://api.fabric.microsoft.com/v1/workspaces/1862eeea-8325-4424-b35d-0cb68632f0ae/items response: body: - string: '{"id": "b057c2a9-912e-440a-be5c-7d662333eb0a", "type": "SparkJobDefinition", - "displayName": "fabcli000003", "workspaceId": - "7779fb4c-96e7-445f-920d-cd670630c854"}' + string: '{"id": "3b3f273a-ea28-489a-9c62-eff031df79ee", "type": "SparkJobDefinition", + "displayName": "fabcli000003", "description": "", "workspaceId": "1862eeea-8325-4424-b35d-0cb68632f0ae"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1047,17 +1057,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '172' + - '165' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:36:04 GMT + - Wed, 20 May 2026 08:53:06 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 75f4b31f-35b6-4de1-9136-a4e309577360 + - 76c62694-0b75-452f-9e62-6e2b9338e4be Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1083,66 +1093,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07ea752e-203c-480e-b358-c2a4c486ec3d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "7779fb4c-96e7-445f-920d-cd670630c854", "displayName": "fabcli000002", "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: - - '2883' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:36:05 GMT - Pragma: - - no-cache - RequestId: - - b1a3320c-45c2-4a7f-bce4-4e711fd6a4e5 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/07ea752e-203c-480e-b358-c2a4c486ec3d/items - response: - body: - string: '{"value": [{"id": "f594427d-1f92-4994-9571-1a44af086fd0", "type": "SparkJobDefinition", - "displayName": "fabcli000003", "workspaceId": - "07ea752e-203c-480e-b358-c2a4c486ec3d"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "5d29f875-aaf1-4af0-822f-e588622b138b", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1862eeea-8325-4424-b35d-0cb68632f0ae", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1151,15 +1114,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '186' + - '2692' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:36:06 GMT + - Wed, 20 May 2026 08:53:06 GMT Pragma: - no-cache RequestId: - - 7dc26d77-3a66-46de-8904-ab95f7b2817f + - 1b2df133-45fd-4358-8f1d-dc40683342b8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1185,12 +1148,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/07ea752e-203c-480e-b358-c2a4c486ec3d/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/5d29f875-aaf1-4af0-822f-e588622b138b/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "231ea84d-8585-4f9d-84df-62205c6d95f5", "type": "SparkJobDefinition", + "displayName": "fabcli000003", "description": "", "workspaceId": "5d29f875-aaf1-4af0-822f-e588622b138b"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1199,15 +1163,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '175' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:36:06 GMT + - Wed, 20 May 2026 08:53:07 GMT Pragma: - no-cache RequestId: - - 3917f8dd-3cb9-40e0-a3e8-5bfbf9ecafa9 + - 32eb6d5e-4a66-4d96-b006-623227901643 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1233,66 +1197,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07ea752e-203c-480e-b358-c2a4c486ec3d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "7779fb4c-96e7-445f-920d-cd670630c854", "displayName": "fabcli000002", "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: - - '2883' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:36:08 GMT - Pragma: - - no-cache - RequestId: - - 235f6e24-a475-4684-8f08-b42f50cd74c5 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/7779fb4c-96e7-445f-920d-cd670630c854/items - response: - body: - string: '{"value": [{"id": "b057c2a9-912e-440a-be5c-7d662333eb0a", "type": "SparkJobDefinition", - "displayName": "fabcli000003", "workspaceId": - "7779fb4c-96e7-445f-920d-cd670630c854"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "5d29f875-aaf1-4af0-822f-e588622b138b", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1862eeea-8325-4424-b35d-0cb68632f0ae", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1301,15 +1218,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '185' + - '2692' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:36:08 GMT + - Wed, 20 May 2026 08:53:08 GMT Pragma: - no-cache RequestId: - - ad38dccb-b13b-4d96-8d4f-c15c9736feb6 + - 55a5e521-ea7f-4219-9e4f-aa5f4e1a68ee Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1335,12 +1252,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/7779fb4c-96e7-445f-920d-cd670630c854/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/1862eeea-8325-4424-b35d-0cb68632f0ae/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "3b3f273a-ea28-489a-9c62-eff031df79ee", "type": "SparkJobDefinition", + "displayName": "fabcli000003", "description": "", "workspaceId": "1862eeea-8325-4424-b35d-0cb68632f0ae"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1349,15 +1267,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '175' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:36:09 GMT + - Wed, 20 May 2026 08:53:09 GMT Pragma: - no-cache RequestId: - - 1693acdc-7216-4899-bf57-1e59655b17c9 + - 26b52dcd-9147-45db-88e8-de7d1f078096 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1383,16 +1301,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07ea752e-203c-480e-b358-c2a4c486ec3d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "7779fb4c-96e7-445f-920d-cd670630c854", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "5d29f875-aaf1-4af0-822f-e588622b138b", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1862eeea-8325-4424-b35d-0cb68632f0ae", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1401,15 +1322,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2883' + - '2692' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:36:10 GMT + - Wed, 20 May 2026 08:53:10 GMT Pragma: - no-cache RequestId: - - 4bcc486e-ac69-4512-87e8-be2f0b0d1c02 + - 7c3e2441-766d-43a0-8676-2223c04c6080 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1435,14 +1356,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/07ea752e-203c-480e-b358-c2a4c486ec3d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/5d29f875-aaf1-4af0-822f-e588622b138b/items response: body: - string: '{"value": [{"id": "f594427d-1f92-4994-9571-1a44af086fd0", "type": "SparkJobDefinition", - "displayName": "fabcli000003", "workspaceId": - "07ea752e-203c-480e-b358-c2a4c486ec3d"}]}' + string: '{"value": [{"id": "231ea84d-8585-4f9d-84df-62205c6d95f5", "type": "SparkJobDefinition", + "displayName": "fabcli000003", "description": "", "workspaceId": "5d29f875-aaf1-4af0-822f-e588622b138b"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1451,15 +1371,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '186' + - '175' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:36:11 GMT + - Wed, 20 May 2026 08:53:10 GMT Pragma: - no-cache RequestId: - - 99a683ab-3142-43dd-b528-2fce8ac8a7de + - 47c03993-9b2c-4e61-9636-87b2f9dd84ba Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1487,9 +1407,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/07ea752e-203c-480e-b358-c2a4c486ec3d/items/f594427d-1f92-4994-9571-1a44af086fd0 + uri: https://api.fabric.microsoft.com/v1/workspaces/5d29f875-aaf1-4af0-822f-e588622b138b/items/231ea84d-8585-4f9d-84df-62205c6d95f5 response: body: string: '' @@ -1505,11 +1425,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:36:12 GMT + - Wed, 20 May 2026 08:53:11 GMT Pragma: - no-cache RequestId: - - d4e833ed-4b35-4a81-bac7-175b86e45404 + - 32d1e4e3-6cc3-4f87-8625-1bc232c53c8c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1535,16 +1455,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07ea752e-203c-480e-b358-c2a4c486ec3d", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "7779fb4c-96e7-445f-920d-cd670630c854", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "5d29f875-aaf1-4af0-822f-e588622b138b", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1862eeea-8325-4424-b35d-0cb68632f0ae", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1553,15 +1476,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2883' + - '2692' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:36:12 GMT + - Wed, 20 May 2026 08:53:13 GMT Pragma: - no-cache RequestId: - - b36e3a8d-aa92-4b5a-901a-950b747217e7 + - bdf75cf9-46a5-4b13-b0e6-1488bbd92bfd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1587,9 +1510,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/07ea752e-203c-480e-b358-c2a4c486ec3d/items + uri: https://api.fabric.microsoft.com/v1/workspaces/5d29f875-aaf1-4af0-822f-e588622b138b/items response: body: string: '{"value": []}' @@ -1605,11 +1528,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:36:13 GMT + - Wed, 20 May 2026 08:53:13 GMT Pragma: - no-cache RequestId: - - 14ec31d9-7313-44a9-8c43-7f84c868e0da + - 1347d881-a2de-48dc-82bc-2fbdde9d4172 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1637,9 +1560,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/07ea752e-203c-480e-b358-c2a4c486ec3d + uri: https://api.fabric.microsoft.com/v1/workspaces/5d29f875-aaf1-4af0-822f-e588622b138b response: body: string: '' @@ -1655,11 +1578,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:36:14 GMT + - Wed, 20 May 2026 08:53:14 GMT Pragma: - no-cache RequestId: - - a5914a2d-b167-4f06-b2a4-d1c1afbb238a + - c8ef6e18-1e33-407d-9465-3ec1c8ac7867 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1685,15 +1608,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "7779fb4c-96e7-445f-920d-cd670630c854", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "1862eeea-8325-4424-b35d-0cb68632f0ae", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1702,15 +1627,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2843' + - '2657' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:36:15 GMT + - Wed, 20 May 2026 08:53:15 GMT Pragma: - no-cache RequestId: - - 29f75c7a-8fc6-4e59-b923-5072721dae93 + - 14e8fa88-2e4b-4203-9523-a824b2f1ba33 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1736,14 +1661,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/7779fb4c-96e7-445f-920d-cd670630c854/items + uri: https://api.fabric.microsoft.com/v1/workspaces/1862eeea-8325-4424-b35d-0cb68632f0ae/items response: body: - string: '{"value": [{"id": "b057c2a9-912e-440a-be5c-7d662333eb0a", "type": "SparkJobDefinition", - "displayName": "fabcli000003", "workspaceId": - "7779fb4c-96e7-445f-920d-cd670630c854"}]}' + string: '{"value": [{"id": "3b3f273a-ea28-489a-9c62-eff031df79ee", "type": "SparkJobDefinition", + "displayName": "fabcli000003", "description": "", "workspaceId": "1862eeea-8325-4424-b35d-0cb68632f0ae"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1752,15 +1676,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '185' + - '175' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:36:16 GMT + - Wed, 20 May 2026 08:53:16 GMT Pragma: - no-cache RequestId: - - bd124819-9549-4e10-8ac7-82e05006bca7 + - 0e12ccea-a31a-4f25-91e4-c43f78ce296a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1788,9 +1712,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/7779fb4c-96e7-445f-920d-cd670630c854 + uri: https://api.fabric.microsoft.com/v1/workspaces/1862eeea-8325-4424-b35d-0cb68632f0ae response: body: string: '' @@ -1806,11 +1730,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:36:17 GMT + - Wed, 20 May 2026 08:53:17 GMT Pragma: - no-cache RequestId: - - c89837e9-3448-4817-96f8-f0dec132e3b9 + - 758a6be1-93c2-4c0c-a04f-675bdaac2ac0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[UserDataFunction].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[UserDataFunction].yaml index 19ea9e887..c344b3d53 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[UserDataFunction].yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_success[UserDataFunction].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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:38:22 GMT + - Wed, 20 May 2026 08:55:18 GMT Pragma: - no-cache RequestId: - - 731d0def-1649-4e08-8600-d21a037a8035 + - 9a3ef654-b0d5-42b3-8351-bf42b77e3fa3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:38:23 GMT + - Wed, 20 May 2026 08:55:19 GMT Pragma: - no-cache RequestId: - - 198d8444-e89b-472d-8b0d-8fac0923da3a + - a14a9bd2-5df1-4be6-a30b-41b4176132db Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,7 +113,7 @@ 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/capacities response: @@ -127,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:38:28 GMT + - Wed, 20 May 2026 08:55:24 GMT Pragma: - no-cache RequestId: - - 3b50086e-5afc-4ee5-a041-ea3ebdf676d9 + - 41dfd315-5de6-4ab3-a085-567d7726e35d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -150,8 +152,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -160,16 +161,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "9cb06f84-9ff2-4c45-b0e9-e786ea616b29", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -178,17 +180,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:38:36 GMT + - Wed, 20 May 2026 08:55:35 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/9cb06f84-9ff2-4c45-b0e9-e786ea616b29 + - https://api.fabric.microsoft.com/v1/workspaces/dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975 Pragma: - no-cache RequestId: - - 08254c79-3616-4c80-b524-4eaebeb82bc1 + - a65cc70f-e642-4164-bef9-013a3e84c542 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,15 +216,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "9cb06f84-9ff2-4c45-b0e9-e786ea616b29", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -231,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2840' + - '2659' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:38:37 GMT + - Wed, 20 May 2026 08:55:36 GMT Pragma: - no-cache RequestId: - - 6830ba9d-82b2-4df4-ae4a-3acb71fd3ae8 + - dc75f492-8bd3-4112-b75a-615ffe15500d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,15 +269,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "9cb06f84-9ff2-4c45-b0e9-e786ea616b29", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -282,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2840' + - '2659' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:38:38 GMT + - Wed, 20 May 2026 08:55:37 GMT Pragma: - no-cache RequestId: - - 466375a5-7948-4952-86ff-eb42e54d0e56 + - 6b4f97b8-568e-4e76-bc7e-1f69237b5603 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,7 +322,7 @@ 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/capacities response: @@ -332,15 +338,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:38:42 GMT + - Wed, 20 May 2026 08:55:41 GMT Pragma: - no-cache RequestId: - - 75da4f73-875f-4fa1-93e8-c417603b306b + - b44b4d12-6c34-4384-b976-5161690597ed Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -355,8 +361,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000002", "capacityId": - "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -365,16 +370,17 @@ interactions: Connection: - keep-alive Content-Length: - - '122' + - '89' 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 response: body: - string: '{"id": "8680675b-f2db-4f7a-834e-0e72345c0615", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "a7cbcd77-7800-4e41-87ad-8780ff97acc9", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -383,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '154' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:38:51 GMT + - Wed, 20 May 2026 08:55:47 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/8680675b-f2db-4f7a-834e-0e72345c0615 + - https://api.fabric.microsoft.com/v1/workspaces/a7cbcd77-7800-4e41-87ad-8780ff97acc9 Pragma: - no-cache RequestId: - - e6c84330-c0f8-43d8-b564-183ccd4b2074 + - 4b46ec89-8cf3-4454-99e3-bc97eb0ed5d2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -419,16 +425,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "9cb06f84-9ff2-4c45-b0e9-e786ea616b29", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "8680675b-f2db-4f7a-834e-0e72345c0615", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a7cbcd77-7800-4e41-87ad-8780ff97acc9", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -437,15 +446,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2877' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:38:52 GMT + - Wed, 20 May 2026 08:55:48 GMT Pragma: - no-cache RequestId: - - 36104633-a280-4c52-9319-c0a67a831ea1 + - ab622376-9c8a-4381-9d51-630d11c3de20 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -471,9 +480,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/9cb06f84-9ff2-4c45-b0e9-e786ea616b29/items + uri: https://api.fabric.microsoft.com/v1/workspaces/dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975/items response: body: string: '{"value": []}' @@ -489,11 +498,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:38:53 GMT + - Wed, 20 May 2026 08:55:49 GMT Pragma: - no-cache RequestId: - - a2e5e9e2-d2d6-49b3-b23d-a090ffc5449c + - bee85674-7adb-40c7-955c-bbbee5ddb6a5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -519,9 +528,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/9cb06f84-9ff2-4c45-b0e9-e786ea616b29/items + uri: https://api.fabric.microsoft.com/v1/workspaces/dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975/items response: body: string: '{"value": []}' @@ -537,11 +546,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:38:54 GMT + - Wed, 20 May 2026 08:55:49 GMT Pragma: - no-cache RequestId: - - 7fe7d327-26fb-4986-a46b-4ce07ab43d75 + - 6d6e81a6-f03b-4cb8-b4db-4853b78e117e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -556,8 +565,8 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000003", "type": - "UserDataFunction", "folderId": null}' + body: '{"displayName": "fabcli000003", "type": "UserDataFunction", "folderId": + null}' headers: Accept: - '*/*' @@ -566,18 +575,17 @@ interactions: Connection: - keep-alive Content-Length: - - '114' + - '81' 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/9cb06f84-9ff2-4c45-b0e9-e786ea616b29/userdatafunctions + uri: https://api.fabric.microsoft.com/v1/workspaces/dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975/userdatafunctions response: body: - string: '{"id": "991726a0-ec32-46bd-9a4a-a34d2c938d3b", "type": "UserDataFunction", - "displayName": "fabcli000003", "workspaceId": - "9cb06f84-9ff2-4c45-b0e9-e786ea616b29"}' + string: '{"id": "be4a193c-a5e2-4186-ae4a-23036d81c0a6", "type": "UserDataFunction", + "displayName": "fabcli000003", "description": "", "workspaceId": "dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -586,17 +594,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '171' + - '163' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:38:58 GMT + - Wed, 20 May 2026 08:55:53 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 3b5b8ca3-10f5-4ae2-9638-f3a8ed9065f2 + - 37997deb-b0e9-4eb5-86a0-a0542cc753e8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -622,16 +630,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "9cb06f84-9ff2-4c45-b0e9-e786ea616b29", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "8680675b-f2db-4f7a-834e-0e72345c0615", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a7cbcd77-7800-4e41-87ad-8780ff97acc9", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -640,15 +651,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2877' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:38:58 GMT + - Wed, 20 May 2026 08:55:55 GMT Pragma: - no-cache RequestId: - - 5da4cabf-0c8b-4af9-b616-389177131713 + - 56366f44-ede3-4661-a80e-887b07df7475 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -674,14 +685,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/9cb06f84-9ff2-4c45-b0e9-e786ea616b29/items + uri: https://api.fabric.microsoft.com/v1/workspaces/dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975/items response: body: - string: '{"value": [{"id": "991726a0-ec32-46bd-9a4a-a34d2c938d3b", "type": "UserDataFunction", - "displayName": "fabcli000003", "workspaceId": - "9cb06f84-9ff2-4c45-b0e9-e786ea616b29"}]}' + string: '{"value": [{"id": "be4a193c-a5e2-4186-ae4a-23036d81c0a6", "type": "UserDataFunction", + "displayName": "fabcli000003", "description": "", "workspaceId": "dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -690,15 +700,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '183' + - '173' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:38:59 GMT + - Wed, 20 May 2026 08:55:55 GMT Pragma: - no-cache RequestId: - - e0f0010f-9d93-43be-9b69-c20b6afe9d3d + - a90c5b35-37be-4a50-b5a8-f00f059dfe10 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -724,16 +734,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "9cb06f84-9ff2-4c45-b0e9-e786ea616b29", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "8680675b-f2db-4f7a-834e-0e72345c0615", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a7cbcd77-7800-4e41-87ad-8780ff97acc9", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -742,15 +755,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2877' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:38:59 GMT + - Wed, 20 May 2026 08:55:56 GMT Pragma: - no-cache RequestId: - - 6620f6ef-b07f-42ba-ad47-bd8fd9c9728f + - 5a067c42-1f2e-44de-99e1-6e5b61940749 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -776,9 +789,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/8680675b-f2db-4f7a-834e-0e72345c0615/items + uri: https://api.fabric.microsoft.com/v1/workspaces/a7cbcd77-7800-4e41-87ad-8780ff97acc9/items response: body: string: '{"value": []}' @@ -794,11 +807,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:39:01 GMT + - Wed, 20 May 2026 08:55:57 GMT Pragma: - no-cache RequestId: - - dbe129ca-ccf5-4c2d-ba48-f6220966c701 + - 0ce331f7-8a3e-4821-b64e-68e17ef0d6ca Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -824,9 +837,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/8680675b-f2db-4f7a-834e-0e72345c0615/items + uri: https://api.fabric.microsoft.com/v1/workspaces/a7cbcd77-7800-4e41-87ad-8780ff97acc9/items response: body: string: '{"value": []}' @@ -842,11 +855,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:39:01 GMT + - Wed, 20 May 2026 08:55:58 GMT Pragma: - no-cache RequestId: - - 10d2f7d0-c09a-45ad-ae28-c02e32e1e840 + - 5b11be1f-b4c9-47f0-92e7-51311aa16488 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -872,9 +885,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/8680675b-f2db-4f7a-834e-0e72345c0615/items + uri: https://api.fabric.microsoft.com/v1/workspaces/a7cbcd77-7800-4e41-87ad-8780ff97acc9/items response: body: string: '{"value": []}' @@ -890,11 +903,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:39:02 GMT + - Wed, 20 May 2026 08:55:58 GMT Pragma: - no-cache RequestId: - - c7672055-d113-45e8-938a-da1fae7fa1e6 + - d7ae8baf-94fd-4c5a-afcf-686ff822838e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -920,14 +933,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/9cb06f84-9ff2-4c45-b0e9-e786ea616b29/items/991726a0-ec32-46bd-9a4a-a34d2c938d3b + uri: https://api.fabric.microsoft.com/v1/workspaces/dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975/items/be4a193c-a5e2-4186-ae4a-23036d81c0a6 response: body: - string: '{"id": "991726a0-ec32-46bd-9a4a-a34d2c938d3b", "type": "UserDataFunction", - "displayName": "fabcli000003", "workspaceId": - "9cb06f84-9ff2-4c45-b0e9-e786ea616b29"}' + string: '{"id": "be4a193c-a5e2-4186-ae4a-23036d81c0a6", "type": "UserDataFunction", + "displayName": "fabcli000003", "description": "", "workspaceId": "dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -936,17 +948,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '171' + - '163' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:39:03 GMT + - Wed, 20 May 2026 08:55:59 GMT ETag: - '""' Pragma: - no-cache RequestId: - - b8a1b130-aaa0-449c-936f-dd81a45a9629 + - d5aa2466-3e9f-4498-8d70-372d4fc76d5a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -974,9 +986,9 @@ interactions: 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/9cb06f84-9ff2-4c45-b0e9-e786ea616b29/items/991726a0-ec32-46bd-9a4a-a34d2c938d3b/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975/items/be4a193c-a5e2-4186-ae4a-23036d81c0a6/getDefinition response: body: string: 'null' @@ -992,13 +1004,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:39:04 GMT + - Wed, 20 May 2026 08:56:01 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ae313abf-4159-4df3-b08b-18b89a3c58d3 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8e8407a2-fa8e-46d3-9f0d-5cfb096104d6 Pragma: - no-cache RequestId: - - d3589676-2e21-4210-93b5-e252c5e5f691 + - 54d8bacf-b239-4eb8-b9ff-eaa2ef5b7f9f Retry-After: - '20' Strict-Transport-Security: @@ -1012,7 +1024,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - ae313abf-4159-4df3-b08b-18b89a3c58d3 + - 8e8407a2-fa8e-46d3-9f0d-5cfb096104d6 status: code: 202 message: Accepted @@ -1028,13 +1040,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ae313abf-4159-4df3-b08b-18b89a3c58d3 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8e8407a2-fa8e-46d3-9f0d-5cfb096104d6 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:39:04.7721707", - "lastUpdatedTimeUtc": "2026-02-06T07:39:04.9752816", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:56:01.585037", + "lastUpdatedTimeUtc": "2026-05-20T08:56:01.9348639", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1048,13 +1060,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:39:26 GMT + - Wed, 20 May 2026 08:56:21 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ae313abf-4159-4df3-b08b-18b89a3c58d3/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8e8407a2-fa8e-46d3-9f0d-5cfb096104d6/result Pragma: - no-cache RequestId: - - 3657bf84-0ebb-4bd1-93ed-39f0410d71b7 + - 0a257029-ab10-4696-8516-adb0b6c85dfe Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1062,7 +1074,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - ae313abf-4159-4df3-b08b-18b89a3c58d3 + - 8e8407a2-fa8e-46d3-9f0d-5cfb096104d6 status: code: 200 message: OK @@ -1078,13 +1090,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/ae313abf-4159-4df3-b08b-18b89a3c58d3/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8e8407a2-fa8e-46d3-9f0d-5cfb096104d6/result response: body: string: '{"definition": {"parts": [{"path": "definition.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS91c2VyRGF0YUZ1bmN0aW9uL2RlZmluaXRpb24vMS4xLjAvc2NoZW1hLmpzb24iLA0KICAicnVudGltZSI6ICJQWVRIT04iLA0KICAiY29ubmVjdGVkRGF0YVNvdXJjZXMiOiBbXSwNCiAgImZ1bmN0aW9ucyI6IFtdLA0KICAibGlicmFyaWVzIjogew0KICAgICJwdWJsaWMiOiBbXSwNCiAgICAicHJpdmF0ZSI6IFtdDQogIH0NCn0=", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlVzZXJEYXRhRnVuY3Rpb24iLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMyIsCiAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlVzZXJEYXRhRnVuY3Rpb24iLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMyIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -1096,11 +1108,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 07:39:27 GMT + - Wed, 20 May 2026 08:56:22 GMT Pragma: - no-cache RequestId: - - 29fc6620-a847-4933-a408-aec47556b0c7 + - 1665e631-95a8-414d-91f4-f052e0086fb1 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1113,10 +1125,9 @@ interactions: code: 200 message: OK - request: - body: '{"type": "UserDataFunction", "displayName": - "fabcli000003", "definition": {"parts": [{"path": "definition.json", "payload": - "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS91c2VyRGF0YUZ1bmN0aW9uL2RlZmluaXRpb24vMS4xLjAvc2NoZW1hLmpzb24iLA0KICAicnVudGltZSI6ICJQWVRIT04iLA0KICAiY29ubmVjdGVkRGF0YVNvdXJjZXMiOiBbXSwNCiAgImZ1bmN0aW9ucyI6IFtdLA0KICAibGlicmFyaWVzIjogew0KICAgICJwdWJsaWMiOiBbXSwNCiAgICAicHJpdmF0ZSI6IFtdDQogIH0NCn0=", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlVzZXJEYXRhRnVuY3Rpb24iLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMyIsCiAgICAiZGVzY3JpcHRpb24iOiAiQ3JlYXRlZCBieSBmYWIiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + body: '{"type": "UserDataFunction", "displayName": "fabcli000003", "definition": + {"parts": [{"path": "definition.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS91c2VyRGF0YUZ1bmN0aW9uL2RlZmluaXRpb24vMS4xLjAvc2NoZW1hLmpzb24iLA0KICAicnVudGltZSI6ICJQWVRIT04iLA0KICAiY29ubmVjdGVkRGF0YVNvdXJjZXMiOiBbXSwNCiAgImZ1bmN0aW9ucyI6IFtdLA0KICAibGlicmFyaWVzIjogew0KICAgICJwdWJsaWMiOiBbXSwNCiAgICAicHJpdmF0ZSI6IFtdDQogIH0NCn0=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlVzZXJEYXRhRnVuY3Rpb24iLAogICAgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMyIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", "payloadType": "InlineBase64"}]}, "folderId": null}' headers: Accept: @@ -1126,13 +1137,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1097' + - '1016' 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/8680675b-f2db-4f7a-834e-0e72345c0615/items + uri: https://api.fabric.microsoft.com/v1/workspaces/a7cbcd77-7800-4e41-87ad-8780ff97acc9/items response: body: string: 'null' @@ -1148,15 +1159,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:39:28 GMT + - Wed, 20 May 2026 08:56:24 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6f3e6431-bfc8-45a3-98a2-161ecb94fbe5 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8dfa3a18-90cd-499f-82bd-2cdc2f34dcc0 Pragma: - no-cache RequestId: - - e3a299a7-b7b8-433b-b583-e4129b0720ce + - dbecc5f7-46b1-4518-8ae6-e726af66e649 Retry-After: - '20' Strict-Transport-Security: @@ -1170,7 +1181,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 6f3e6431-bfc8-45a3-98a2-161ecb94fbe5 + - 8dfa3a18-90cd-499f-82bd-2cdc2f34dcc0 status: code: 202 message: Accepted @@ -1186,13 +1197,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6f3e6431-bfc8-45a3-98a2-161ecb94fbe5 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8dfa3a18-90cd-499f-82bd-2cdc2f34dcc0 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:39:28.8232287", - "lastUpdatedTimeUtc": "2026-02-06T07:39:33.0277271", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:56:23.9880505", + "lastUpdatedTimeUtc": "2026-05-20T08:56:27.2943526", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1206,13 +1217,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:39:50 GMT + - Wed, 20 May 2026 08:56:45 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6f3e6431-bfc8-45a3-98a2-161ecb94fbe5/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8dfa3a18-90cd-499f-82bd-2cdc2f34dcc0/result Pragma: - no-cache RequestId: - - 7ca50434-4bf1-4cdd-9c67-1df1d7f659a5 + - 316edf5a-123f-49a9-9f96-0514e64384de Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1220,7 +1231,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 6f3e6431-bfc8-45a3-98a2-161ecb94fbe5 + - 8dfa3a18-90cd-499f-82bd-2cdc2f34dcc0 status: code: 200 message: OK @@ -1236,14 +1247,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6f3e6431-bfc8-45a3-98a2-161ecb94fbe5/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8dfa3a18-90cd-499f-82bd-2cdc2f34dcc0/result response: body: - string: '{"id": "34d8a760-4c37-4fea-a3c2-5c0dd0b02911", "type": "UserDataFunction", - "displayName": "fabcli000003", "workspaceId": - "8680675b-f2db-4f7a-834e-0e72345c0615"}' + string: '{"id": "d896424a-999e-473a-a68f-5db1c1771f5e", "type": "UserDataFunction", + "displayName": "fabcli000003", "description": "", "workspaceId": "a7cbcd77-7800-4e41-87ad-8780ff97acc9"}' headers: Access-Control-Expose-Headers: - RequestId @@ -1254,11 +1264,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 07:39:52 GMT + - Wed, 20 May 2026 08:56:46 GMT Pragma: - no-cache RequestId: - - 94eb04f2-a181-4fbf-9d70-6c9e125a42e7 + - bed65fa4-d3db-4301-9575-cbb8b60cc081 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1282,16 +1292,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "9cb06f84-9ff2-4c45-b0e9-e786ea616b29", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "8680675b-f2db-4f7a-834e-0e72345c0615", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a7cbcd77-7800-4e41-87ad-8780ff97acc9", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1300,15 +1313,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2877' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:39:53 GMT + - Wed, 20 May 2026 08:56:47 GMT Pragma: - no-cache RequestId: - - 585db4f7-30fc-4e57-8d9e-01536488a27f + - 4cb93e0d-ef11-4982-a11e-08307756810b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1334,14 +1347,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/9cb06f84-9ff2-4c45-b0e9-e786ea616b29/items + uri: https://api.fabric.microsoft.com/v1/workspaces/dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975/items response: body: - string: '{"value": [{"id": "991726a0-ec32-46bd-9a4a-a34d2c938d3b", "type": "UserDataFunction", - "displayName": "fabcli000003", "workspaceId": - "9cb06f84-9ff2-4c45-b0e9-e786ea616b29"}]}' + string: '{"value": [{"id": "be4a193c-a5e2-4186-ae4a-23036d81c0a6", "type": "UserDataFunction", + "displayName": "fabcli000003", "description": "", "workspaceId": "dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1350,15 +1362,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '183' + - '173' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:39:53 GMT + - Wed, 20 May 2026 08:56:47 GMT Pragma: - no-cache RequestId: - - 8ed87415-b410-4527-adc1-552d90985b37 + - 06416f66-2420-496e-9e64-7d3b5fbaf4ae Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1384,64 +1396,19 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/9cb06f84-9ff2-4c45-b0e9-e786ea616b29/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: - - Fri, 06 Feb 2026 07:39:54 GMT - Pragma: - - no-cache - RequestId: - - c6198f42-15a8-4c29-b7c4-1762dc5d5eec - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "9cb06f84-9ff2-4c45-b0e9-e786ea616b29", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "8680675b-f2db-4f7a-834e-0e72345c0615", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a7cbcd77-7800-4e41-87ad-8780ff97acc9", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1450,15 +1417,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2877' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:39:55 GMT + - Wed, 20 May 2026 08:56:48 GMT Pragma: - no-cache RequestId: - - 3fbdf6f3-3ebe-4dd5-b7d7-ddba8ef1be81 + - 2a1f021f-cda9-492b-b30e-a153fe6aea8f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1484,14 +1451,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/8680675b-f2db-4f7a-834e-0e72345c0615/items + uri: https://api.fabric.microsoft.com/v1/workspaces/a7cbcd77-7800-4e41-87ad-8780ff97acc9/items response: body: - string: '{"value": [{"id": "34d8a760-4c37-4fea-a3c2-5c0dd0b02911", "type": "UserDataFunction", - "displayName": "fabcli000003", "workspaceId": - "8680675b-f2db-4f7a-834e-0e72345c0615"}]}' + string: '{"value": [{"id": "d896424a-999e-473a-a68f-5db1c1771f5e", "type": "UserDataFunction", + "displayName": "fabcli000003", "description": "", "workspaceId": "a7cbcd77-7800-4e41-87ad-8780ff97acc9"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1500,63 +1466,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '184' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:39:56 GMT - Pragma: - - no-cache - RequestId: - - 026860e4-a48a-4751-980d-812edc3764af - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/8680675b-f2db-4f7a-834e-0e72345c0615/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' + - '174' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:39:56 GMT + - Wed, 20 May 2026 08:56:49 GMT Pragma: - no-cache RequestId: - - 8eae2e15-ac0d-418f-ac13-5274cda5fba6 + - c7f207e3-ebbe-4143-80ec-84483ad64539 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1582,16 +1500,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "9cb06f84-9ff2-4c45-b0e9-e786ea616b29", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "8680675b-f2db-4f7a-834e-0e72345c0615", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a7cbcd77-7800-4e41-87ad-8780ff97acc9", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1600,15 +1521,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2877' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:39:58 GMT + - Wed, 20 May 2026 08:56:50 GMT Pragma: - no-cache RequestId: - - d728c501-7df6-4cc6-9256-061462059fda + - f694b542-50e6-42dd-ac13-5b01bbfcb743 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1634,14 +1555,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/9cb06f84-9ff2-4c45-b0e9-e786ea616b29/items + uri: https://api.fabric.microsoft.com/v1/workspaces/dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975/items response: body: - string: '{"value": [{"id": "991726a0-ec32-46bd-9a4a-a34d2c938d3b", "type": "UserDataFunction", - "displayName": "fabcli000003", "workspaceId": - "9cb06f84-9ff2-4c45-b0e9-e786ea616b29"}]}' + string: '{"value": [{"id": "be4a193c-a5e2-4186-ae4a-23036d81c0a6", "type": "UserDataFunction", + "displayName": "fabcli000003", "description": "", "workspaceId": "dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1650,15 +1570,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '183' + - '173' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:39:59 GMT + - Wed, 20 May 2026 08:56:51 GMT Pragma: - no-cache RequestId: - - c369270b-e67a-47eb-b006-831bd0e279ca + - 7471267b-b2ab-4e24-b21c-8716d7f816ea Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1686,9 +1606,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/9cb06f84-9ff2-4c45-b0e9-e786ea616b29/items/991726a0-ec32-46bd-9a4a-a34d2c938d3b + uri: https://api.fabric.microsoft.com/v1/workspaces/dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975/items/be4a193c-a5e2-4186-ae4a-23036d81c0a6 response: body: string: '' @@ -1704,11 +1624,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:40:00 GMT + - Wed, 20 May 2026 08:56:52 GMT Pragma: - no-cache RequestId: - - 2255d42b-3bc3-4f36-b0d8-0ae0510f76b0 + - 9911efec-2a44-4c4f-abfa-5c0e025ea1ef Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1734,16 +1654,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "9cb06f84-9ff2-4c45-b0e9-e786ea616b29", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "8680675b-f2db-4f7a-834e-0e72345c0615", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a7cbcd77-7800-4e41-87ad-8780ff97acc9", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1752,15 +1675,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2877' + - '2699' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:40:01 GMT + - Wed, 20 May 2026 08:56:52 GMT Pragma: - no-cache RequestId: - - 4320a3c7-6cf7-4391-a5cb-c7dc22a55736 + - fe86c6db-ea3c-4bb8-aeb6-732ff8f7159f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1786,9 +1709,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/9cb06f84-9ff2-4c45-b0e9-e786ea616b29/items + uri: https://api.fabric.microsoft.com/v1/workspaces/dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975/items response: body: string: '{"value": []}' @@ -1804,11 +1727,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:40:01 GMT + - Wed, 20 May 2026 08:56:53 GMT Pragma: - no-cache RequestId: - - 18f7985b-7fab-4c23-a89c-56cf8156b032 + - 5619ce5e-2ccd-4064-b6d0-ee8dd5b850ee Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1836,9 +1759,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/9cb06f84-9ff2-4c45-b0e9-e786ea616b29 + uri: https://api.fabric.microsoft.com/v1/workspaces/dfa8f3e6-3cbf-49f6-abb0-7b81ef52b975 response: body: string: '' @@ -1854,11 +1777,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:40:03 GMT + - Wed, 20 May 2026 08:56:55 GMT Pragma: - no-cache RequestId: - - 66b32509-e1b9-4e1a-8794-3c6e5f09d678 + - 185779ce-0eb7-445c-81ed-cf83a9e53e8b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1884,15 +1807,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "8680675b-f2db-4f7a-834e-0e72345c0615", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "a7cbcd77-7800-4e41-87ad-8780ff97acc9", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1901,15 +1826,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2841' + - '2661' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:40:04 GMT + - Wed, 20 May 2026 08:56:55 GMT Pragma: - no-cache RequestId: - - 0df3ec15-0275-4d42-8674-8ea8905d6920 + - 0edfaeb6-6706-4922-af7a-6f91abcf4164 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1935,14 +1860,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/8680675b-f2db-4f7a-834e-0e72345c0615/items + uri: https://api.fabric.microsoft.com/v1/workspaces/a7cbcd77-7800-4e41-87ad-8780ff97acc9/items response: body: - string: '{"value": [{"id": "34d8a760-4c37-4fea-a3c2-5c0dd0b02911", "type": "UserDataFunction", - "displayName": "fabcli000003", "workspaceId": - "8680675b-f2db-4f7a-834e-0e72345c0615"}]}' + string: '{"value": [{"id": "d896424a-999e-473a-a68f-5db1c1771f5e", "type": "UserDataFunction", + "displayName": "fabcli000003", "description": "", "workspaceId": "a7cbcd77-7800-4e41-87ad-8780ff97acc9"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1951,15 +1875,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '184' + - '174' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:40:04 GMT + - Wed, 20 May 2026 08:56:56 GMT Pragma: - no-cache RequestId: - - 4cc2d95c-cfab-4acf-bc78-195be9d03876 + - 66649861-bae8-4696-8499-3730873d40b3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1987,9 +1911,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/8680675b-f2db-4f7a-834e-0e72345c0615 + uri: https://api.fabric.microsoft.com/v1/workspaces/a7cbcd77-7800-4e41-87ad-8780ff97acc9 response: body: string: '' @@ -2005,11 +1929,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:40:04 GMT + - Wed, 20 May 2026 08:56:57 GMT Pragma: - no-cache RequestId: - - 6f645558-f897-474f-955a-3c8f3e04df4d + - e81becba-afe8-4e04-91ff-33e1862e53ce Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_type_mismatch_failure.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_type_mismatch_failure.yaml index 061bb53ad..0a59bb42e 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_type_mismatch_failure.yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_item_to_item_type_mismatch_failure.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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:40:40 GMT + - Wed, 20 May 2026 08:57:34 GMT Pragma: - no-cache RequestId: - - cb8efa72-2a56-4d36-8877-4d42be332be3 + - fff18d4f-1f18-40d4-b420-93d27de83360 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:40:42 GMT + - Wed, 20 May 2026 08:57:35 GMT Pragma: - no-cache RequestId: - - 9373babf-2682-4bb9-af0c-666241a19717 + - 26479000-4956-4fa6-a4ba-f2d224910ad3 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:40:42 GMT + - Wed, 20 May 2026 08:57:35 GMT Pragma: - no-cache RequestId: - - 2c2fb2e2-7ff4-4801-aab1-e22140359e57 + - 1882c167-294d-4345-abb9-1f7a1371bea9 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.3.1 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/notebooks + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/notebooks response: body: string: 'null' @@ -178,15 +180,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:40:47 GMT + - Wed, 20 May 2026 08:57:37 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/55e75295-85ee-498e-9fe3-f00c6a6fd41b + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b67f6f00-5ebe-4005-971f-fe005768ecf7 Pragma: - no-cache RequestId: - - 340298bb-36bb-4845-87a2-c3480c3c25a9 + - 148481d0-f489-4bba-9d51-b5dd1d52e7d9 Retry-After: - '20' Strict-Transport-Security: @@ -200,7 +202,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 55e75295-85ee-498e-9fe3-f00c6a6fd41b + - b67f6f00-5ebe-4005-971f-fe005768ecf7 status: code: 202 message: Accepted @@ -216,13 +218,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/55e75295-85ee-498e-9fe3-f00c6a6fd41b + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b67f6f00-5ebe-4005-971f-fe005768ecf7 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:40:45.0137656", - "lastUpdatedTimeUtc": "2026-02-06T07:40:48.7171108", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:57:37.3216133", + "lastUpdatedTimeUtc": "2026-05-20T08:57:38.8710729", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -232,17 +234,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '130' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:41:09 GMT + - Wed, 20 May 2026 08:57:58 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/55e75295-85ee-498e-9fe3-f00c6a6fd41b/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b67f6f00-5ebe-4005-971f-fe005768ecf7/result Pragma: - no-cache RequestId: - - e5c1d8ae-9991-4b16-a140-aa8f723881c3 + - 78afb80f-b9d0-4b1c-b976-49a1817ec4c2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -250,7 +252,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 55e75295-85ee-498e-9fe3-f00c6a6fd41b + - b67f6f00-5ebe-4005-971f-fe005768ecf7 status: code: 200 message: OK @@ -266,14 +268,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/55e75295-85ee-498e-9fe3-f00c6a6fd41b/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b67f6f00-5ebe-4005-971f-fe005768ecf7/result response: body: - string: '{"id": "e36e2c5f-fa28-40ed-a581-e21defe07945", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}' + string: '{"id": "e0aaa14e-c2cc-40dd-9ef8-bff0ffd5a82b", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}' headers: Access-Control-Expose-Headers: - RequestId @@ -284,11 +285,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 07:41:09 GMT + - Wed, 20 May 2026 08:57:59 GMT Pragma: - no-cache RequestId: - - 71e5c4fc-0e83-458b-a64e-f28a9782df93 + - 5139fd11-fc52-427e-bf4f-9d49ff14e945 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.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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:41:11 GMT + - Wed, 20 May 2026 08:58:00 GMT Pragma: - no-cache RequestId: - - ede1f287-f246-4cf5-8140-51bff5c011ee + - 44bbc229-b2c8-403b-a9c5-2d89cd01d52d 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.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "e36e2c5f-fa28-40ed-a581-e21defe07945", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "e0aaa14e-c2cc-40dd-9ef8-bff0ffd5a82b", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -378,15 +379,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '165' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:41:12 GMT + - Wed, 20 May 2026 08:58:00 GMT Pragma: - no-cache RequestId: - - 4c61dc57-12f8-4720-ae0e-4fe6ebbc54bf + - 71f7cc34-36d4-4168-978d-84cd9c93a6cd 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.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "e36e2c5f-fa28-40ed-a581-e21defe07945", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "e0aaa14e-c2cc-40dd-9ef8-bff0ffd5a82b", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -428,15 +428,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '165' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:41:13 GMT + - Wed, 20 May 2026 08:58:01 GMT Pragma: - no-cache RequestId: - - c14d3693-9107-4d09-9063-77a99225a75a + - 33598318-6d3e-4560-a9ec-6689efad3feb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -461,18 +461,16 @@ interactions: - keep-alive Content-Length: - '75' - 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/eventhouses + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/eventhouses response: body: - string: '{"id": "20f52829-d8a9-4903-b1d7-e700ee6efc52", "type": "Eventhouse", - "displayName": "fabcli000002", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}' + string: '{"id": "ba57b6a4-7a19-422e-a38b-7556ed8bdf2c", "type": "Eventhouse", + "displayName": "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -481,17 +479,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:41:16 GMT + - Wed, 20 May 2026 08:58:06 GMT ETag: - '""' Pragma: - no-cache RequestId: - - b29aaf4f-6a64-47b2-a9aa-23719b170c56 + - 70e8803a-82e5-4bce-995f-e32a69c27be7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -517,14 +515,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:41:17 GMT + - Wed, 20 May 2026 08:58:07 GMT Pragma: - no-cache RequestId: - - 3b4487eb-3eb8-495b-af8a-88e91be52322 + - 031c64e4-132f-403f-832b-95b55b4b1418 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -567,17 +566,17 @@ 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "e36e2c5f-fa28-40ed-a581-e21defe07945", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, {"id": "20f52829-d8a9-4903-b1d7-e700ee6efc52", - "type": "Eventhouse", "displayName": "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, {"id": "5da1151d-457f-4bf2-867f-690214ff9112", - "type": "KQLDatabase", "displayName": "fabcli000002", "description": "fabcli000002", - "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "e0aaa14e-c2cc-40dd-9ef8-bff0ffd5a82b", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "ba57b6a4-7a19-422e-a38b-7556ed8bdf2c", "type": "Eventhouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "257a2451-c6d8-43c8-8fbc-9eb2e54af0f0", "type": "KQLDatabase", "displayName": + "fabcli000002", "description": "fabcli000002", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -586,15 +585,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '271' + - '261' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:41:18 GMT + - Wed, 20 May 2026 08:58:08 GMT Pragma: - no-cache RequestId: - - 2437885a-db01-43e3-9dd7-6837246b3d4d + - dfe6612f-5b7e-4ff3-a3ff-c1d44bca7779 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -620,14 +619,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -636,15 +636,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:41:19 GMT + - Wed, 20 May 2026 08:58:09 GMT Pragma: - no-cache RequestId: - - a19d7633-f427-4fc2-9dbe-184de5290591 + - 1be49b59-bd1c-413c-b79a-1b93014d91e4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -670,17 +670,17 @@ 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "e36e2c5f-fa28-40ed-a581-e21defe07945", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, {"id": "20f52829-d8a9-4903-b1d7-e700ee6efc52", - "type": "Eventhouse", "displayName": "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, {"id": "5da1151d-457f-4bf2-867f-690214ff9112", - "type": "KQLDatabase", "displayName": "fabcli000002", "description": "fabcli000002", - "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "e0aaa14e-c2cc-40dd-9ef8-bff0ffd5a82b", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "ba57b6a4-7a19-422e-a38b-7556ed8bdf2c", "type": "Eventhouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "257a2451-c6d8-43c8-8fbc-9eb2e54af0f0", "type": "KQLDatabase", "displayName": + "fabcli000002", "description": "fabcli000002", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -689,15 +689,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '271' + - '261' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:41:20 GMT + - Wed, 20 May 2026 08:58:10 GMT Pragma: - no-cache RequestId: - - 35c484ab-3063-4807-9375-9034318db90a + - a6b2dc7a-145c-47b4-ae8a-7c8c1ed8aebb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -723,14 +723,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -739,15 +740,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:41:21 GMT + - Wed, 20 May 2026 08:58:11 GMT Pragma: - no-cache RequestId: - - 7035e7be-6a99-42d6-8ba5-1106f73a1647 + - c0fdd6e1-1bd6-467c-9ed2-67fe7c7d9ad0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -773,17 +774,17 @@ 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "e36e2c5f-fa28-40ed-a581-e21defe07945", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, {"id": "20f52829-d8a9-4903-b1d7-e700ee6efc52", - "type": "Eventhouse", "displayName": "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, {"id": "5da1151d-457f-4bf2-867f-690214ff9112", - "type": "KQLDatabase", "displayName": "fabcli000002", "description": "fabcli000002", - "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "e0aaa14e-c2cc-40dd-9ef8-bff0ffd5a82b", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "ba57b6a4-7a19-422e-a38b-7556ed8bdf2c", "type": "Eventhouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "257a2451-c6d8-43c8-8fbc-9eb2e54af0f0", "type": "KQLDatabase", "displayName": + "fabcli000002", "description": "fabcli000002", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -792,15 +793,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '271' + - '261' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:41:21 GMT + - Wed, 20 May 2026 08:58:12 GMT Pragma: - no-cache RequestId: - - 7c890b71-f095-4c52-a3cc-04280721e02a + - efec2243-349d-4b2b-8122-d2bc3c028574 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -828,9 +829,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items/20f52829-d8a9-4903-b1d7-e700ee6efc52 + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items/ba57b6a4-7a19-422e-a38b-7556ed8bdf2c response: body: string: '' @@ -846,11 +847,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:41:23 GMT + - Wed, 20 May 2026 08:58:13 GMT Pragma: - no-cache RequestId: - - 0d49bfee-bfe2-4655-b3a1-4059e324f312 + - 3fe0b27d-287d-49a6-bf06-dac89751a4f9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -876,14 +877,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -892,15 +894,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:41:23 GMT + - Wed, 20 May 2026 08:58:14 GMT Pragma: - no-cache RequestId: - - 18273152-1103-4f1c-bf3f-aa3ecde5b2e9 + - aecc4536-1a8b-4310-b011-28bf7a33a318 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -926,14 +928,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "e36e2c5f-fa28-40ed-a581-e21defe07945", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "e0aaa14e-c2cc-40dd-9ef8-bff0ffd5a82b", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -942,15 +943,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '165' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:41:25 GMT + - Wed, 20 May 2026 08:58:14 GMT Pragma: - no-cache RequestId: - - 253046cd-76cb-4732-b999-ebea59960c1f + - 078150b0-c193-4481-8163-2981872bc40a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -978,9 +979,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items/e36e2c5f-fa28-40ed-a581-e21defe07945 + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items/e0aaa14e-c2cc-40dd-9ef8-bff0ffd5a82b response: body: string: '' @@ -996,11 +997,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:41:25 GMT + - Wed, 20 May 2026 08:58:15 GMT Pragma: - no-cache RequestId: - - b91f69f7-9a55-407a-b8f8-3b7c058964ad + - 3ad9eb48-e14b-49db-9662-10d13983196b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_local_to_onelake_success.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_local_to_onelake_success.yaml index 69192f45d..7d9447019 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_local_to_onelake_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_local_to_onelake_success.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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:56 GMT + - Wed, 20 May 2026 09:00:26 GMT Pragma: - no-cache RequestId: - - 44ac7b39-19c5-4453-a8c3-b32ea397fee9 + - 505687cd-c511-4542-adc1-5bc9d24a2572 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:57 GMT + - Wed, 20 May 2026 09:00:27 GMT Pragma: - no-cache RequestId: - - 8a82fc1e-2c9b-40e1-aa4a-ee80a3d43fef + - d7b0967d-fd7f-4d77-9268-009643a804f6 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:58 GMT + - Wed, 20 May 2026 09:00:28 GMT Pragma: - no-cache RequestId: - - ca1587f6-11b2-44d5-a9cb-09e2f068c457 + - 8d65d492-cdf1-4b9f-82ba-09ae930e8267 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -156,18 +157,16 @@ interactions: - keep-alive Content-Length: - '74' - 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/lakehouses response: body: - string: '{"id": "77587e55-5a21-4da2-a8df-69aa9482fe5c", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}' + string: '{"id": "03356d11-46a1-4ef9-a225-0a04fa076335", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +175,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:45:01 GMT + - Wed, 20 May 2026 09:00:32 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 45eb2db2-0282-4973-b61e-97e9f5fe4ae7 + - 9287e257-0d45-4d8e-8753-a319c38d8f3e 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:45:01 GMT + - Wed, 20 May 2026 09:00:33 GMT Pragma: - no-cache RequestId: - - 63362886-a516-4e66-afef-adad76bd26de + - 59df14a0-d792-4e27-bcd7-62ac7568f4a3 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "77587e55-5a21-4da2-a8df-69aa9482fe5c", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "03356d11-46a1-4ef9-a225-0a04fa076335", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +277,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '167' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:45:02 GMT + - Wed, 20 May 2026 09:00:34 GMT Pragma: - no-cache RequestId: - - 3c81e695-9977-4b80-a67d-1cad0f6e1133 + - 6467b2b3-2397-4b50-996b-4c08a1917d5d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -314,9 +313,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PUT - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/77587e55-5a21-4da2-a8df-69aa9482fe5c/Files/test_cp_lo2ol.txt/?resource=file + uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/03356d11-46a1-4ef9-a225-0a04fa076335/Files/test_cp_lo2ol.txt/?resource=file response: body: string: '' @@ -332,13 +331,13 @@ interactions: Content-Length: - '0' Date: - - Fri, 06 Feb 2026 07:45:04 GMT + - Wed, 20 May 2026 09:00:35 GMT ETag: - - '"0x8DE6553A4A3A200"' + - '"0x8DEB64E422DCB28"' Last-Modified: - - Fri, 06 Feb 2026 07:45:05 GMT + - Wed, 20 May 2026 09:00:36 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -362,11 +361,11 @@ interactions: Content-Type: - text/plain User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 x-ms-content-type: - text/plain method: PATCH - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/77587e55-5a21-4da2-a8df-69aa9482fe5c/Files/test_cp_lo2ol.txt?action=append&position=0 + uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/03356d11-46a1-4ef9-a225-0a04fa076335/Files/test_cp_lo2ol.txt?action=append&position=0 response: body: string: '' @@ -382,9 +381,9 @@ interactions: Content-Length: - '0' Date: - - Fri, 06 Feb 2026 07:45:06 GMT + - Wed, 20 May 2026 09:00:36 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -406,11 +405,11 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 x-ms-content-type: - text/plain method: PATCH - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/77587e55-5a21-4da2-a8df-69aa9482fe5c/Files/test_cp_lo2ol.txt?action=flush&position=13 + uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/03356d11-46a1-4ef9-a225-0a04fa076335/Files/test_cp_lo2ol.txt?action=flush&position=13 response: body: string: '' @@ -426,13 +425,13 @@ interactions: Content-Length: - '0' Date: - - Fri, 06 Feb 2026 07:45:06 GMT + - Wed, 20 May 2026 09:00:39 GMT ETag: - - '"0x8DE6553A62D5F58"' + - '"0x8DEB64E43954720"' Last-Modified: - - Fri, 06 Feb 2026 07:45:07 GMT + - Wed, 20 May 2026 09:00:39 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -452,14 +451,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -468,15 +468,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:45:08 GMT + - Wed, 20 May 2026 09:00:39 GMT Pragma: - no-cache RequestId: - - 140e579a-b7af-4f0a-bd03-c59d151768fa + - a1cfd566-1eed-4299-bbe3-3671fe711cf1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -502,14 +502,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "77587e55-5a21-4da2-a8df-69aa9482fe5c", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "03356d11-46a1-4ef9-a225-0a04fa076335", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -518,15 +517,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '167' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:45:08 GMT + - Wed, 20 May 2026 09:00:40 GMT Pragma: - no-cache RequestId: - - c69f1ce6-d521-485d-b297-5b69df7433c1 + - b8c9572b-a4f2-40f8-bcc7-2cbd91d10b6d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -552,14 +551,14 @@ 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://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/?recursive=false&resource=filesystem&directory=77587e55-5a21-4da2-a8df-69aa9482fe5c%2FFiles&getShortcutMetadata=true + uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/?recursive=false&resource=filesystem&directory=03356d11-46a1-4ef9-a225-0a04fa076335%2FFiles&getShortcutMetadata=true response: body: - string: '{"paths": [{"name": "77587e55-5a21-4da2-a8df-69aa9482fe5c/Files/test_cp_lo2ol.txt", - "creationTime": "134148375052067328", "lastModified": "Fri, 06 Feb 2026 07:45:07 - GMT", "etag": "0x8DE6553A62D5F58", "contentLength": "13", "owner": "bdb39224-bd86-4d14-bc6e-18637e6902b0", + string: '{"paths": [{"name": "03356d11-46a1-4ef9-a225-0a04fa076335/Files/test_cp_lo2ol.txt", + "creationTime": "134237412367190824", "lastModified": "Wed, 20 May 2026 09:00:39 + GMT", "etag": "0x8DEB64E43954720", "contentLength": "13", "owner": "bdb39224-bd86-4d14-bc6e-18637e6902b0", "group": "bdb39224-bd86-4d14-bc6e-18637e6902b0", "permissions": "rw-r-----", "expiryTime": "0"}], "ContinuationToken": null}' headers: @@ -574,9 +573,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:45:09 GMT + - Wed, 20 May 2026 09:00:42 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -598,14 +597,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -614,15 +614,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:45:09 GMT + - Wed, 20 May 2026 09:00:43 GMT Pragma: - no-cache RequestId: - - 40caa10d-d84e-4c17-9f2c-15c845752fe1 + - 7952cb29-e0b9-405d-a46e-869f17c1a6b2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -648,14 +648,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "77587e55-5a21-4da2-a8df-69aa9482fe5c", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "3f629556-433f-487a-aad0-0807c4fd809a", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "03356d11-46a1-4ef9-a225-0a04fa076335", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -664,15 +665,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '213' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:45:10 GMT + - Wed, 20 May 2026 09:00:44 GMT Pragma: - no-cache RequestId: - - 5a4da0c8-cdf8-4fab-bcad-9a663e9ec237 + - c5c8c422-7283-44a7-bba8-151780e7b3e4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -698,9 +699,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/77587e55-5a21-4da2-a8df-69aa9482fe5c/Files/renamed_test_cp_lo2ol.txt + uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/03356d11-46a1-4ef9-a225-0a04fa076335/Files/renamed_test_cp_lo2ol.txt response: body: string: '' @@ -714,9 +715,9 @@ interactions: Access-Control-Expose-Headers: - '*,Authorization' Date: - - Fri, 06 Feb 2026 07:45:12 GMT + - Wed, 20 May 2026 09:00:46 GMT Server: - - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -724,10 +725,10 @@ interactions: X-Content-Type-Options: - nosniff x-ms-error-code: - - BlobNotFound + - PathNotFound status: code: 404 - message: The specified blob does not exist. + message: The specified path does not exist. - request: body: null headers: @@ -740,9 +741,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/77587e55-5a21-4da2-a8df-69aa9482fe5c/Files/renamed_test_cp_lo2ol.txt + uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/03356d11-46a1-4ef9-a225-0a04fa076335/Files/renamed_test_cp_lo2ol.txt response: body: string: '' @@ -756,9 +757,9 @@ interactions: Access-Control-Expose-Headers: - '*,Authorization' Date: - - Fri, 06 Feb 2026 07:45:13 GMT + - Wed, 20 May 2026 09:00:48 GMT Server: - - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -766,10 +767,10 @@ interactions: X-Content-Type-Options: - nosniff x-ms-error-code: - - BlobNotFound + - PathNotFound status: code: 404 - message: The specified blob does not exist. + message: The specified path does not exist. - request: body: null headers: @@ -784,9 +785,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PUT - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/77587e55-5a21-4da2-a8df-69aa9482fe5c/Files/renamed_test_cp_lo2ol.txt/?resource=file + uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/03356d11-46a1-4ef9-a225-0a04fa076335/Files/renamed_test_cp_lo2ol.txt/?resource=file response: body: string: '' @@ -802,13 +803,13 @@ interactions: Content-Length: - '0' Date: - - Fri, 06 Feb 2026 07:45:15 GMT + - Wed, 20 May 2026 09:00:49 GMT ETag: - - '"0x8DE6553AB1CAE90"' + - '"0x8DEB64E49F78784"' Last-Modified: - - Fri, 06 Feb 2026 07:45:16 GMT + - Wed, 20 May 2026 09:00:49 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -832,11 +833,11 @@ interactions: Content-Type: - text/plain User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 x-ms-content-type: - text/plain method: PATCH - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/77587e55-5a21-4da2-a8df-69aa9482fe5c/Files/renamed_test_cp_lo2ol.txt?action=append&position=0 + uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/03356d11-46a1-4ef9-a225-0a04fa076335/Files/renamed_test_cp_lo2ol.txt?action=append&position=0 response: body: string: '' @@ -852,9 +853,9 @@ interactions: Content-Length: - '0' Date: - - Fri, 06 Feb 2026 07:45:17 GMT + - Wed, 20 May 2026 09:00:51 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -876,11 +877,11 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 x-ms-content-type: - text/plain method: PATCH - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/77587e55-5a21-4da2-a8df-69aa9482fe5c/Files/renamed_test_cp_lo2ol.txt?action=flush&position=13 + uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/03356d11-46a1-4ef9-a225-0a04fa076335/Files/renamed_test_cp_lo2ol.txt?action=flush&position=13 response: body: string: '' @@ -896,13 +897,13 @@ interactions: Content-Length: - '0' Date: - - Fri, 06 Feb 2026 07:45:19 GMT + - Wed, 20 May 2026 09:00:53 GMT ETag: - - '"0x8DE6553AD45B320"' + - '"0x8DEB64E4C74F278"' Last-Modified: - - Fri, 06 Feb 2026 07:45:19 GMT + - Wed, 20 May 2026 09:00:53 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -922,14 +923,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -938,15 +940,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:45:19 GMT + - Wed, 20 May 2026 09:00:54 GMT Pragma: - no-cache RequestId: - - 6165edc3-d2f0-476a-8994-31ba24b0470f + - 201c432b-2ae1-4a15-80a6-7c6fd29acfc8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -972,15 +974,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "081dc588-a6f7-42da-ae4f-32bdf7314f9a", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "77587e55-5a21-4da2-a8df-69aa9482fe5c", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "3f629556-433f-487a-aad0-0807c4fd809a", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "03356d11-46a1-4ef9-a225-0a04fa076335", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -989,15 +991,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '227' + - '213' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:45:21 GMT + - Wed, 20 May 2026 09:00:55 GMT Pragma: - no-cache RequestId: - - b68bf9e2-b6de-4857-9c5c-af251750474b + - 49509fe6-9efd-4f7d-9284-c645075bab29 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1023,18 +1025,18 @@ 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://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/?recursive=false&resource=filesystem&directory=77587e55-5a21-4da2-a8df-69aa9482fe5c%2FFiles&getShortcutMetadata=true + uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/?recursive=false&resource=filesystem&directory=03356d11-46a1-4ef9-a225-0a04fa076335%2FFiles&getShortcutMetadata=true response: body: - string: '{"paths": [{"name": "77587e55-5a21-4da2-a8df-69aa9482fe5c/Files/renamed_test_cp_lo2ol.txt", - "creationTime": "134148375160663696", "lastModified": "Fri, 06 Feb 2026 07:45:19 - GMT", "etag": "0x8DE6553AD45B320", "contentLength": "13", "owner": "bdb39224-bd86-4d14-bc6e-18637e6902b0", + string: '{"paths": [{"name": "03356d11-46a1-4ef9-a225-0a04fa076335/Files/renamed_test_cp_lo2ol.txt", + "creationTime": "134237412497852292", "lastModified": "Wed, 20 May 2026 09:00:53 + GMT", "etag": "0x8DEB64E4C74F278", "contentLength": "13", "owner": "bdb39224-bd86-4d14-bc6e-18637e6902b0", "group": "bdb39224-bd86-4d14-bc6e-18637e6902b0", "permissions": "rw-r-----", - "expiryTime": "0"}, {"name": "77587e55-5a21-4da2-a8df-69aa9482fe5c/Files/test_cp_lo2ol.txt", - "creationTime": "134148375052067328", "lastModified": "Fri, 06 Feb 2026 07:45:07 - GMT", "etag": "0x8DE6553A62D5F58", "contentLength": "13", "owner": "bdb39224-bd86-4d14-bc6e-18637e6902b0", + "expiryTime": "0"}, {"name": "03356d11-46a1-4ef9-a225-0a04fa076335/Files/test_cp_lo2ol.txt", + "creationTime": "134237412367190824", "lastModified": "Wed, 20 May 2026 09:00:39 + GMT", "etag": "0x8DEB64E43954720", "contentLength": "13", "owner": "bdb39224-bd86-4d14-bc6e-18637e6902b0", "group": "bdb39224-bd86-4d14-bc6e-18637e6902b0", "permissions": "rw-r-----", "expiryTime": "0"}], "ContinuationToken": null}' headers: @@ -1049,9 +1051,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:45:23 GMT + - Wed, 20 May 2026 09:00:57 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1073,14 +1075,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1089,15 +1092,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:45:23 GMT + - Wed, 20 May 2026 09:00:58 GMT Pragma: - no-cache RequestId: - - 0d01f793-3489-4d89-a33a-8e13d0514f2f + - 79ed667b-3225-45d2-893b-eb97658ccffc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1123,15 +1126,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "081dc588-a6f7-42da-ae4f-32bdf7314f9a", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "77587e55-5a21-4da2-a8df-69aa9482fe5c", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "3f629556-433f-487a-aad0-0807c4fd809a", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "03356d11-46a1-4ef9-a225-0a04fa076335", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1140,15 +1143,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '227' + - '213' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:45:25 GMT + - Wed, 20 May 2026 09:00:59 GMT Pragma: - no-cache RequestId: - - 7ed7b2a2-9ab6-4c76-b453-a51c8501c8ef + - 80c4b300-ba03-48af-8eeb-1417f8dfe9ae Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1176,9 +1179,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items/77587e55-5a21-4da2-a8df-69aa9482fe5c + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items/03356d11-46a1-4ef9-a225-0a04fa076335 response: body: string: '' @@ -1194,11 +1197,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:45:26 GMT + - Wed, 20 May 2026 09:01:00 GMT Pragma: - no-cache RequestId: - - dfcc78a0-cdcb-45e1-9b70-3198fce134f5 + - 5fd5a11c-a9e1-4f07-bab9-f33733079be0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_operations_success.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_operations_success.yaml index de06ff5c8..690ca462a 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_operations_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_operations_success.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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:45:26 GMT + - Wed, 20 May 2026 09:01:00 GMT Pragma: - no-cache RequestId: - - adc6ec94-2bbe-4c09-845a-3e0b723c852c + - 4a4342ce-26f3-4a3a-82d7-255dd5f675b4 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:45:27 GMT + - Wed, 20 May 2026 09:01:02 GMT Pragma: - no-cache RequestId: - - d2e715e2-a7ee-4175-8d32-c1eafef44d35 + - f1896087-eeb8-4daa-9ab3-a955cc1eb200 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:45:28 GMT + - Wed, 20 May 2026 09:01:03 GMT Pragma: - no-cache RequestId: - - a7886141-eca4-4cda-b1af-b5ddf65fef2c + - 2faee5ef-8fff-46cd-b0bc-9beaa4faf87c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -146,8 +147,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 +156,17 @@ interactions: Connection: - keep-alive Content-Length: - - '107' + - '74' 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/lakehouses response: body: - string: '{"id": "0307fe75-5816-46fd-b988-179f3c6c6722", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}' + string: '{"id": "a99d6f9a-0e12-4880-8fcc-e2275b958147", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +175,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '157' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:45:30 GMT + - Wed, 20 May 2026 09:01:06 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 91001a23-d1f0-426c-845c-020d5ee9995f + - 61e120b5-2752-47ac-b63a-007678078449 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:45:32 GMT + - Wed, 20 May 2026 09:01:08 GMT Pragma: - no-cache RequestId: - - 8b7e1846-9d55-4500-b763-96607bef04cc + - 51f8ad99-9057-4104-b850-b216f471181d 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "0307fe75-5816-46fd-b988-179f3c6c6722", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "a99d6f9a-0e12-4880-8fcc-e2275b958147", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +277,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '179' + - '167' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:45:32 GMT + - Wed, 20 May 2026 09:01:08 GMT Pragma: - no-cache RequestId: - - 95954359-7a26-448e-b42d-bf9024607bcf + - 112ba88e-5dd7-47d9-84c9-26a36291ee42 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.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "0307fe75-5816-46fd-b988-179f3c6c6722", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "a99d6f9a-0e12-4880-8fcc-e2275b958147", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -328,15 +326,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '179' + - '167' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:45:32 GMT + - Wed, 20 May 2026 09:01:09 GMT Pragma: - no-cache RequestId: - - 01e0ce6f-dc66-41fd-ba6a-33e26bb310f1 + - 3905352b-3865-436f-b586-2889dfe45c5d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -351,8 +349,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000002", "type": - "Lakehouse", "folderId": null}' + body: '{"displayName": "fabcli000002", "type": "Lakehouse", "folderId": null}' headers: Accept: - '*/*' @@ -361,18 +358,17 @@ interactions: Connection: - keep-alive Content-Length: - - '107' + - '74' 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/lakehouses response: body: - string: '{"id": "c1d00b8c-19e9-46cf-a67f-1edd42b2e1d7", "type": "Lakehouse", - "displayName": "fabcli000002", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}' + string: '{"id": "3824ce88-cbe7-4150-9bf8-8fbad03567e4", "type": "Lakehouse", + "displayName": "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -381,17 +377,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '158' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:45:34 GMT + - Wed, 20 May 2026 09:01:14 GMT ETag: - '""' Pragma: - no-cache RequestId: - - fba0f39a-4115-45ed-a40b-19269c3e9db3 + - afccc122-7239-420b-a5cc-d12a31e7e00a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -417,14 +413,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -433,15 +430,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:45:35 GMT + - Wed, 20 May 2026 09:01:15 GMT Pragma: - no-cache RequestId: - - 15b96c6f-2626-45a9-8ab3-ce70b7fa291a + - 765bca53-1ba7-43c3-8e93-e973251ea542 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -467,15 +464,17 @@ 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "0307fe75-5816-46fd-b988-179f3c6c6722", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, {"id": "c1d00b8c-19e9-46cf-a67f-1edd42b2e1d7", - "type": "Lakehouse", "displayName": "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "beed31b5-8ddc-4146-945f-b8fa5dfe9cf6", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "a99d6f9a-0e12-4880-8fcc-e2275b958147", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "3824ce88-cbe7-4150-9bf8-8fbad03567e4", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -484,15 +483,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '221' + - '253' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:45:36 GMT + - Wed, 20 May 2026 09:01:15 GMT Pragma: - no-cache RequestId: - - acd13cb9-3712-4859-9ac5-6c91859ef06f + - b28ae3c5-ac66-4eac-91c6-cfb5f2a9c1cc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -518,9 +517,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/0307fe75-5816-46fd-b988-179f3c6c6722/Files/test_cp_lakehouse.txt + uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/a99d6f9a-0e12-4880-8fcc-e2275b958147/Files/test_cp_lakehouse.txt response: body: string: '' @@ -534,9 +533,9 @@ interactions: Access-Control-Expose-Headers: - '*,Authorization' Date: - - Fri, 06 Feb 2026 07:45:38 GMT + - Wed, 20 May 2026 09:01:17 GMT Server: - - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -544,10 +543,10 @@ interactions: X-Content-Type-Options: - nosniff x-ms-error-code: - - BlobNotFound + - PathNotFound status: code: 404 - message: The specified blob does not exist. + message: The specified path does not exist. - request: body: null headers: @@ -560,9 +559,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/0307fe75-5816-46fd-b988-179f3c6c6722/Files/test_cp_lakehouse.txt + uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/a99d6f9a-0e12-4880-8fcc-e2275b958147/Files/test_cp_lakehouse.txt response: body: string: '' @@ -576,9 +575,9 @@ interactions: Access-Control-Expose-Headers: - '*,Authorization' Date: - - Fri, 06 Feb 2026 07:45:40 GMT + - Wed, 20 May 2026 09:01:19 GMT Server: - - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -586,10 +585,10 @@ interactions: X-Content-Type-Options: - nosniff x-ms-error-code: - - BlobNotFound + - PathNotFound status: code: 404 - message: The specified blob does not exist. + message: The specified path does not exist. - request: body: null headers: @@ -604,9 +603,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PUT - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/0307fe75-5816-46fd-b988-179f3c6c6722/Files/test_cp_lakehouse.txt/?resource=file + uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/a99d6f9a-0e12-4880-8fcc-e2275b958147/Files/test_cp_lakehouse.txt/?resource=file response: body: string: '' @@ -622,13 +621,13 @@ interactions: Content-Length: - '0' Date: - - Fri, 06 Feb 2026 07:45:43 GMT + - Wed, 20 May 2026 09:01:20 GMT ETag: - - '"0x8DE6553BB3ADE2C"' + - '"0x8DEB64E5CE30BAC"' Last-Modified: - - Fri, 06 Feb 2026 07:45:43 GMT + - Wed, 20 May 2026 09:01:21 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -652,11 +651,11 @@ interactions: Content-Type: - text/plain User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 x-ms-content-type: - text/plain method: PATCH - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/0307fe75-5816-46fd-b988-179f3c6c6722/Files/test_cp_lakehouse.txt?action=append&position=0 + uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/a99d6f9a-0e12-4880-8fcc-e2275b958147/Files/test_cp_lakehouse.txt?action=append&position=0 response: body: string: '' @@ -672,9 +671,9 @@ interactions: Content-Length: - '0' Date: - - Fri, 06 Feb 2026 07:45:44 GMT + - Wed, 20 May 2026 09:01:22 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -696,11 +695,11 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 x-ms-content-type: - text/plain method: PATCH - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/0307fe75-5816-46fd-b988-179f3c6c6722/Files/test_cp_lakehouse.txt?action=flush&position=13 + uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/a99d6f9a-0e12-4880-8fcc-e2275b958147/Files/test_cp_lakehouse.txt?action=flush&position=13 response: body: string: '' @@ -716,13 +715,13 @@ interactions: Content-Length: - '0' Date: - - Fri, 06 Feb 2026 07:45:45 GMT + - Wed, 20 May 2026 09:01:23 GMT ETag: - - '"0x8DE6553BD143964"' + - '"0x8DEB64E5EAEBB54"' Last-Modified: - - Fri, 06 Feb 2026 07:45:46 GMT + - Wed, 20 May 2026 09:01:24 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -742,14 +741,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -758,15 +758,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:45:46 GMT + - Wed, 20 May 2026 09:01:24 GMT Pragma: - no-cache RequestId: - - 3f4b5e8e-eb5a-4a58-bcbe-876bfa71c737 + - bf44f725-cd0a-4804-b962-f31a0a295950 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -792,19 +792,19 @@ 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "b0fef1a9-d996-4364-a640-73bb834a696e", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "6eb751c9-ddc6-4977-8643-8f38a7f84c79", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "0307fe75-5816-46fd-b988-179f3c6c6722", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "c1d00b8c-19e9-46cf-a67f-1edd42b2e1d7", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "beed31b5-8ddc-4146-945f-b8fa5dfe9cf6", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "205f3844-4eb2-4a90-9390-85db6ac3ef51", "type": "SQLEndpoint", "displayName": + "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "a99d6f9a-0e12-4880-8fcc-e2275b958147", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "3824ce88-cbe7-4150-9bf8-8fbad03567e4", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -813,15 +813,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '293' + - '282' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:45:47 GMT + - Wed, 20 May 2026 09:01:25 GMT Pragma: - no-cache RequestId: - - f2fe838a-e801-4f5b-8e14-a213f7a3755f + - 4b3f209a-a00f-457a-957f-4157f943b45c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -847,9 +847,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/0307fe75-5816-46fd-b988-179f3c6c6722/Files/test_cp_lakehouse.txt + uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/a99d6f9a-0e12-4880-8fcc-e2275b958147/Files/test_cp_lakehouse.txt response: body: string: '' @@ -869,13 +869,13 @@ interactions: Content-Type: - text/plain Date: - - Fri, 06 Feb 2026 07:45:48 GMT + - Wed, 20 May 2026 09:01:27 GMT ETag: - - '"0x8DE6553BD143964"' + - '"0x8DEB64E5EAEBB54"' Last-Modified: - - Fri, 06 Feb 2026 07:45:46 GMT + - Wed, 20 May 2026 09:01:24 GMT Server: - - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -897,14 +897,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -913,15 +914,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:45:49 GMT + - Wed, 20 May 2026 09:01:27 GMT Pragma: - no-cache RequestId: - - e5bd75ea-d812-4d07-9bab-3f0eadf10fb6 + - 47dd1a2e-513f-413e-9103-ad8a37257f5f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -947,19 +948,19 @@ 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "b0fef1a9-d996-4364-a640-73bb834a696e", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "6eb751c9-ddc6-4977-8643-8f38a7f84c79", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "0307fe75-5816-46fd-b988-179f3c6c6722", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "c1d00b8c-19e9-46cf-a67f-1edd42b2e1d7", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "beed31b5-8ddc-4146-945f-b8fa5dfe9cf6", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "205f3844-4eb2-4a90-9390-85db6ac3ef51", "type": "SQLEndpoint", "displayName": + "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "a99d6f9a-0e12-4880-8fcc-e2275b958147", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "3824ce88-cbe7-4150-9bf8-8fbad03567e4", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -968,15 +969,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '293' + - '282' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:45:49 GMT + - Wed, 20 May 2026 09:01:28 GMT Pragma: - no-cache RequestId: - - 779bfe4f-f284-4d00-b12d-63ee80a15686 + - 61346ab4-d73c-452f-a71f-0a88c7f35b80 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1002,9 +1003,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://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/0307fe75-5816-46fd-b988-179f3c6c6722/Files/test_cp_lakehouse.txt + uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/a99d6f9a-0e12-4880-8fcc-e2275b958147/Files/test_cp_lakehouse.txt response: body: string: 'Hello world! @@ -1026,13 +1027,13 @@ interactions: Content-Type: - text/plain Date: - - Fri, 06 Feb 2026 07:45:51 GMT + - Wed, 20 May 2026 09:01:30 GMT ETag: - - '"0x8DE6553BD143964"' + - '"0x8DEB64E5EAEBB54"' Last-Modified: - - Fri, 06 Feb 2026 07:45:46 GMT + - Wed, 20 May 2026 09:01:24 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1056,9 +1057,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PUT - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/c1d00b8c-19e9-46cf-a67f-1edd42b2e1d7/Files/test_cp_lakehouse.txt/?resource=file + uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/3824ce88-cbe7-4150-9bf8-8fbad03567e4/Files/test_cp_lakehouse.txt/?resource=file response: body: string: '' @@ -1074,13 +1075,13 @@ interactions: Content-Length: - '0' Date: - - Fri, 06 Feb 2026 07:45:52 GMT + - Wed, 20 May 2026 09:01:31 GMT ETag: - - '"0x8DE6553C12D9E18"' + - '"0x8DEB64E62ECD634"' Last-Modified: - - Fri, 06 Feb 2026 07:45:53 GMT + - Wed, 20 May 2026 09:01:31 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1104,11 +1105,11 @@ interactions: Content-Type: - text/plain User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 x-ms-content-type: - text/plain method: PATCH - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/c1d00b8c-19e9-46cf-a67f-1edd42b2e1d7/Files/test_cp_lakehouse.txt?action=append&position=0 + uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/3824ce88-cbe7-4150-9bf8-8fbad03567e4/Files/test_cp_lakehouse.txt?action=append&position=0 response: body: string: '' @@ -1124,9 +1125,9 @@ interactions: Content-Length: - '0' Date: - - Fri, 06 Feb 2026 07:45:53 GMT + - Wed, 20 May 2026 09:01:31 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1148,11 +1149,11 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 x-ms-content-type: - text/plain method: PATCH - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/c1d00b8c-19e9-46cf-a67f-1edd42b2e1d7/Files/test_cp_lakehouse.txt?action=flush&position=13 + uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/3824ce88-cbe7-4150-9bf8-8fbad03567e4/Files/test_cp_lakehouse.txt?action=flush&position=13 response: body: string: '' @@ -1168,13 +1169,13 @@ interactions: Content-Length: - '0' Date: - - Fri, 06 Feb 2026 07:45:54 GMT + - Wed, 20 May 2026 09:01:31 GMT ETag: - - '"0x8DE6553C26175DC"' + - '"0x8DEB64E638C1FD8"' Last-Modified: - - Fri, 06 Feb 2026 07:45:55 GMT + - Wed, 20 May 2026 09:01:32 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1194,14 +1195,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1210,15 +1212,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:45:55 GMT + - Wed, 20 May 2026 09:01:33 GMT Pragma: - no-cache RequestId: - - 82137f97-e8e4-4b56-88b0-705ba59f7fee + - 7db3d9e9-e1ea-401f-ae5a-4a6808205519 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1244,19 +1246,19 @@ 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "b0fef1a9-d996-4364-a640-73bb834a696e", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "6eb751c9-ddc6-4977-8643-8f38a7f84c79", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "0307fe75-5816-46fd-b988-179f3c6c6722", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "c1d00b8c-19e9-46cf-a67f-1edd42b2e1d7", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "beed31b5-8ddc-4146-945f-b8fa5dfe9cf6", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "205f3844-4eb2-4a90-9390-85db6ac3ef51", "type": "SQLEndpoint", "displayName": + "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "a99d6f9a-0e12-4880-8fcc-e2275b958147", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "3824ce88-cbe7-4150-9bf8-8fbad03567e4", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1265,15 +1267,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '293' + - '282' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:45:56 GMT + - Wed, 20 May 2026 09:01:33 GMT Pragma: - no-cache RequestId: - - 12f2d1da-214f-435f-b5d6-19e72fd4d01f + - cd727475-7b5e-4451-aa23-15201ab28977 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1299,14 +1301,14 @@ 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://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/?recursive=false&resource=filesystem&directory=c1d00b8c-19e9-46cf-a67f-1edd42b2e1d7%2FFiles&getShortcutMetadata=true + uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/?recursive=false&resource=filesystem&directory=3824ce88-cbe7-4150-9bf8-8fbad03567e4%2FFiles&getShortcutMetadata=true response: body: - string: '{"paths": [{"name": "c1d00b8c-19e9-46cf-a67f-1edd42b2e1d7/Files/test_cp_lakehouse.txt", - "creationTime": "134148375530872344", "lastModified": "Fri, 06 Feb 2026 07:45:55 - GMT", "etag": "0x8DE6553C26175DC", "contentLength": "13", "owner": "bdb39224-bd86-4d14-bc6e-18637e6902b0", + string: '{"paths": [{"name": "3824ce88-cbe7-4150-9bf8-8fbad03567e4/Files/test_cp_lakehouse.txt", + "creationTime": "134237412916581940", "lastModified": "Wed, 20 May 2026 09:01:32 + GMT", "etag": "0x8DEB64E638C1FD8", "contentLength": "13", "owner": "bdb39224-bd86-4d14-bc6e-18637e6902b0", "group": "bdb39224-bd86-4d14-bc6e-18637e6902b0", "permissions": "rw-r-----", "expiryTime": "0"}], "ContinuationToken": null}' headers: @@ -1321,9 +1323,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:45:57 GMT + - Wed, 20 May 2026 09:01:34 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1345,14 +1347,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1361,15 +1364,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:45:58 GMT + - Wed, 20 May 2026 09:01:35 GMT Pragma: - no-cache RequestId: - - 27b13b4b-e7b6-4eb0-889e-c78b9f194d96 + - 55c8096c-e7ae-4b6d-b536-a02e60b4da6f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1395,19 +1398,19 @@ 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "b0fef1a9-d996-4364-a640-73bb834a696e", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "6eb751c9-ddc6-4977-8643-8f38a7f84c79", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "0307fe75-5816-46fd-b988-179f3c6c6722", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "c1d00b8c-19e9-46cf-a67f-1edd42b2e1d7", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "beed31b5-8ddc-4146-945f-b8fa5dfe9cf6", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "205f3844-4eb2-4a90-9390-85db6ac3ef51", "type": "SQLEndpoint", "displayName": + "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "a99d6f9a-0e12-4880-8fcc-e2275b958147", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "3824ce88-cbe7-4150-9bf8-8fbad03567e4", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1416,15 +1419,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '293' + - '282' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:00 GMT + - Wed, 20 May 2026 09:01:35 GMT Pragma: - no-cache RequestId: - - 26a5f5fc-49d1-42e5-a37e-b597589a3402 + - 790726a2-357e-489b-93d5-7d2b3f8733f0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1452,9 +1455,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items/c1d00b8c-19e9-46cf-a67f-1edd42b2e1d7 + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items/3824ce88-cbe7-4150-9bf8-8fbad03567e4 response: body: string: '' @@ -1470,11 +1473,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:46:00 GMT + - Wed, 20 May 2026 09:01:36 GMT Pragma: - no-cache RequestId: - - d44e4679-207a-4b0d-9168-4c101c082bb1 + - ade86b00-2d3f-49ff-b5c4-ea46638d4e11 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1500,14 +1503,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1516,15 +1520,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:00 GMT + - Wed, 20 May 2026 09:01:36 GMT Pragma: - no-cache RequestId: - - 589caed3-8de6-4854-938f-ceceee3a75ff + - 0c416df6-a260-4157-9e77-beee697b9e7d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1550,15 +1554,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "b0fef1a9-d996-4364-a640-73bb834a696e", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "0307fe75-5816-46fd-b988-179f3c6c6722", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "beed31b5-8ddc-4146-945f-b8fa5dfe9cf6", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "a99d6f9a-0e12-4880-8fcc-e2275b958147", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1567,15 +1571,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '226' + - '214' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:01 GMT + - Wed, 20 May 2026 09:01:36 GMT Pragma: - no-cache RequestId: - - 2c4328cf-fe9f-4219-be58-0b2504e15dfb + - a4c85e61-8c24-4b1a-925a-b37044e405eb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1603,9 +1607,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items/0307fe75-5816-46fd-b988-179f3c6c6722 + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items/a99d6f9a-0e12-4880-8fcc-e2275b958147 response: body: string: '' @@ -1621,11 +1625,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:46:02 GMT + - Wed, 20 May 2026 09:01:37 GMT Pragma: - no-cache RequestId: - - 7119a362-ca92-4dc7-95f0-fe0ec803a4c5 + - c5ffae71-cba6-4635-9b22-4898e7d42057 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_to_local_parquet_binary_success.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_to_local_parquet_binary_success.yaml index 9c06da620..26a18ec4d 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_to_local_parquet_binary_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_to_local_parquet_binary_success.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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:37 GMT + - Wed, 20 May 2026 09:02:06 GMT Pragma: - no-cache RequestId: - - bf204ed6-362c-499f-9709-3c80aa62362b + - 913c84dc-b155-4ac1-b69d-adb19a823e03 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:38 GMT + - Wed, 20 May 2026 09:02:07 GMT Pragma: - no-cache RequestId: - - 3a1c2550-e8a1-4792-a615-47b9c5974f7a + - 5c83d586-5b23-4ca2-8e9d-01346f8eb135 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:39 GMT + - Wed, 20 May 2026 09:02:08 GMT Pragma: - no-cache RequestId: - - 9eb90d5e-2221-4e3e-9ab1-c476c694f2a5 + - 2848743a-feac-4316-84bd-24dad35669cd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -156,18 +157,16 @@ interactions: - keep-alive Content-Length: - '74' - 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/lakehouses response: body: - string: '{"id": "82f099dd-b351-4ff4-8043-302176061d65", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}' + string: '{"id": "99456fdc-83d0-4259-958a-e19b2d7c9549", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +175,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:41 GMT + - Wed, 20 May 2026 09:02:11 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 8afb6745-38ac-4607-abbe-df506856a9c3 + - 602aee7d-4363-47ae-beaa-f8a650a7769e 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:41 GMT + - Wed, 20 May 2026 09:02:12 GMT Pragma: - no-cache RequestId: - - 2f3e083f-df30-4044-9eba-21e1e445959c + - 3e4b928f-b3b7-4009-a59e-59e72ff717e0 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "82f099dd-b351-4ff4-8043-302176061d65", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "99456fdc-83d0-4259-958a-e19b2d7c9549", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' 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: - - Fri, 06 Feb 2026 07:46:42 GMT + - Wed, 20 May 2026 09:02:13 GMT Pragma: - no-cache RequestId: - - 759a3908-9a84-471c-b4e0-8100477b979f + - 57994dcf-c45c-4332-89dd-83baa2c59283 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -314,9 +313,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PUT - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/82f099dd-b351-4ff4-8043-302176061d65/Files/test.parquet/?resource=file + uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/99456fdc-83d0-4259-958a-e19b2d7c9549/Files/test.parquet/?resource=file response: body: string: '' @@ -332,13 +331,13 @@ interactions: Content-Length: - '0' Date: - - Fri, 06 Feb 2026 07:46:45 GMT + - Wed, 20 May 2026 09:02:14 GMT ETag: - - '"0x8DE6553E06BDA04"' + - '"0x8DEB64E7CB0AA50"' Last-Modified: - - Fri, 06 Feb 2026 07:46:45 GMT + - Wed, 20 May 2026 09:02:14 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -369,11 +368,11 @@ interactions: Content-Type: - application/octet-stream User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 x-ms-content-type: - application/octet-stream method: PATCH - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/82f099dd-b351-4ff4-8043-302176061d65/Files/test.parquet?action=append&position=0 + uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/99456fdc-83d0-4259-958a-e19b2d7c9549/Files/test.parquet?action=append&position=0 response: body: string: '' @@ -389,9 +388,9 @@ interactions: Content-Length: - '0' Date: - - Fri, 06 Feb 2026 07:46:45 GMT + - Wed, 20 May 2026 09:02:16 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -413,11 +412,11 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 x-ms-content-type: - application/octet-stream method: PATCH - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/82f099dd-b351-4ff4-8043-302176061d65/Files/test.parquet?action=flush&position=471 + uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/99456fdc-83d0-4259-958a-e19b2d7c9549/Files/test.parquet?action=flush&position=471 response: body: string: '' @@ -433,13 +432,13 @@ interactions: Content-Length: - '0' Date: - - Fri, 06 Feb 2026 07:46:46 GMT + - Wed, 20 May 2026 09:02:17 GMT ETag: - - '"0x8DE6553E11C76A4"' + - '"0x8DEB64E7EFFD828"' Last-Modified: - - Fri, 06 Feb 2026 07:46:46 GMT + - Wed, 20 May 2026 09:02:18 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -459,14 +458,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -475,15 +475,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:46 GMT + - Wed, 20 May 2026 09:02:19 GMT Pragma: - no-cache RequestId: - - e85bea68-469c-4d2b-b688-c7666702ee9a + - 91a87deb-0acc-4412-888d-3b61292148a0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -509,14 +509,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "82f099dd-b351-4ff4-8043-302176061d65", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "99456fdc-83d0-4259-958a-e19b2d7c9549", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -525,15 +524,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '168' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:48 GMT + - Wed, 20 May 2026 09:02:20 GMT Pragma: - no-cache RequestId: - - 5c386e01-6d84-4542-9249-ed926853709d + - 1dcc981a-0eff-439f-92a5-2d6a2e03db29 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -559,9 +558,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/82f099dd-b351-4ff4-8043-302176061d65/Files/test.parquet + uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/99456fdc-83d0-4259-958a-e19b2d7c9549/Files/test.parquet response: body: string: '' @@ -581,13 +580,13 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:46:49 GMT + - Wed, 20 May 2026 09:02:22 GMT ETag: - - '"0x8DE6553E11C76A4"' + - '"0x8DEB64E7EFFD828"' Last-Modified: - - Fri, 06 Feb 2026 07:46:46 GMT + - Wed, 20 May 2026 09:02:18 GMT Server: - - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -609,9 +608,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://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/82f099dd-b351-4ff4-8043-302176061d65/Files/test.parquet + uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/99456fdc-83d0-4259-958a-e19b2d7c9549/Files/test.parquet response: body: string: !!binary | @@ -640,13 +639,13 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:46:52 GMT + - Wed, 20 May 2026 09:02:23 GMT ETag: - - '"0x8DE6553E11C76A4"' + - '"0x8DEB64E7EFFD828"' Last-Modified: - - Fri, 06 Feb 2026 07:46:46 GMT + - Wed, 20 May 2026 09:02:18 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -668,14 +667,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -684,15 +684,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:53 GMT + - Wed, 20 May 2026 09:02:25 GMT Pragma: - no-cache RequestId: - - aed38ded-7273-4886-9d81-7ca8e31d62c4 + - e3de4434-e20b-4a58-b576-86d4f1b5d584 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -718,14 +718,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "82f099dd-b351-4ff4-8043-302176061d65", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "99456fdc-83d0-4259-958a-e19b2d7c9549", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -734,15 +733,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '168' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:53 GMT + - Wed, 20 May 2026 09:02:25 GMT Pragma: - no-cache RequestId: - - 53b0f683-a1b0-41e5-970d-64a9071734b4 + - 26ecf122-b4c3-4d47-a60b-b6ea8282115c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -770,9 +769,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items/82f099dd-b351-4ff4-8043-302176061d65 + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items/99456fdc-83d0-4259-958a-e19b2d7c9549 response: body: string: '' @@ -788,11 +787,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:46:54 GMT + - Wed, 20 May 2026 09:02:27 GMT Pragma: - no-cache RequestId: - - 733f9eb7-d34a-4826-9f20-ccf8f136fa69 + - 62c4718e-6a96-4338-abe1-5e746679091f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_to_local_success.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_to_local_success.yaml index c0c534634..ba0e3ba8d 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_to_local_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_to_local_success.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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:12 GMT + - Wed, 20 May 2026 09:01:48 GMT Pragma: - no-cache RequestId: - - 0a1f8d8b-f459-4469-9023-3a3da5c3df9d + - 0632cec4-3747-40a4-8ace-0ed4807580c7 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:13 GMT + - Wed, 20 May 2026 09:01:48 GMT Pragma: - no-cache RequestId: - - 3b546293-f425-4764-8552-3ff748eab7c5 + - 28d355cb-9253-4c30-b744-1668b4cdd3ff 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:14 GMT + - Wed, 20 May 2026 09:01:50 GMT Pragma: - no-cache RequestId: - - 3ff6e9bc-25b1-4b73-b7e9-37c742cfa6fe + - afc003c8-2525-4c44-9486-0b43b4737f72 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -156,18 +157,16 @@ interactions: - keep-alive Content-Length: - '74' - 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/lakehouses response: body: - string: '{"id": "88caa18f-7ddf-46d4-b509-041c5bb80695", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}' + string: '{"id": "898f919f-2dbf-4fb1-8dbf-5f301ba5ef28", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +175,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:16 GMT + - Wed, 20 May 2026 09:01:53 GMT ETag: - '""' Pragma: - no-cache RequestId: - - d496efb3-0d89-411c-baf2-99b6e9980c96 + - e86255b9-f696-4cc7-86cf-a0a2674482e9 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:18 GMT + - Wed, 20 May 2026 09:01:53 GMT Pragma: - no-cache RequestId: - - bcf29f92-9730-4e93-b322-effea383f616 + - 679ae1d8-8ef4-4b3e-8881-01d6d2be56dd 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "88caa18f-7ddf-46d4-b509-041c5bb80695", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "898f919f-2dbf-4fb1-8dbf-5f301ba5ef28", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +277,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '167' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:18 GMT + - Wed, 20 May 2026 09:01:55 GMT Pragma: - no-cache RequestId: - - 6fcbb3e0-2003-47d1-8bc2-2d543e63f3af + - a0742527-cc0b-4a46-8342-5506a6c6da90 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -314,9 +313,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PUT - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/88caa18f-7ddf-46d4-b509-041c5bb80695/Files/test_cp_ol2lo.txt/?resource=file + uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/898f919f-2dbf-4fb1-8dbf-5f301ba5ef28/Files/test_cp_ol2lo.txt/?resource=file response: body: string: '' @@ -332,13 +331,13 @@ interactions: Content-Length: - '0' Date: - - Fri, 06 Feb 2026 07:46:19 GMT + - Wed, 20 May 2026 09:01:55 GMT ETag: - - '"0x8DE6553D1474360"' + - '"0x8DEB64E7161B400"' Last-Modified: - - Fri, 06 Feb 2026 07:46:20 GMT + - Wed, 20 May 2026 09:01:55 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -362,11 +361,11 @@ interactions: Content-Type: - text/plain User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 x-ms-content-type: - text/plain method: PATCH - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/88caa18f-7ddf-46d4-b509-041c5bb80695/Files/test_cp_ol2lo.txt?action=append&position=0 + uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/898f919f-2dbf-4fb1-8dbf-5f301ba5ef28/Files/test_cp_ol2lo.txt?action=append&position=0 response: body: string: '' @@ -382,9 +381,9 @@ interactions: Content-Length: - '0' Date: - - Fri, 06 Feb 2026 07:46:21 GMT + - Wed, 20 May 2026 09:01:56 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -406,11 +405,11 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 x-ms-content-type: - text/plain method: PATCH - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/88caa18f-7ddf-46d4-b509-041c5bb80695/Files/test_cp_ol2lo.txt?action=flush&position=13 + uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/898f919f-2dbf-4fb1-8dbf-5f301ba5ef28/Files/test_cp_ol2lo.txt?action=flush&position=13 response: body: string: '' @@ -426,13 +425,13 @@ interactions: Content-Length: - '0' Date: - - Fri, 06 Feb 2026 07:46:23 GMT + - Wed, 20 May 2026 09:01:56 GMT ETag: - - '"0x8DE6553D35CC2FC"' + - '"0x8DEB64E72052EB4"' Last-Modified: - - Fri, 06 Feb 2026 07:46:23 GMT + - Wed, 20 May 2026 09:01:56 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -452,14 +451,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -468,15 +468,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:24 GMT + - Wed, 20 May 2026 09:01:57 GMT Pragma: - no-cache RequestId: - - d798d02a-8fc0-4406-97ef-6c44409adc6b + - f18cbe27-40b0-4549-bd83-f2982585a32f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -502,15 +502,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "3d67541b-579f-4621-a6df-e2be3321e684", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "88caa18f-7ddf-46d4-b509-041c5bb80695", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "53c22e80-6849-4cbb-9f39-419472d926b2", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "898f919f-2dbf-4fb1-8dbf-5f301ba5ef28", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -519,15 +519,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '228' + - '214' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:24 GMT + - Wed, 20 May 2026 09:01:57 GMT Pragma: - no-cache RequestId: - - 675da539-f1c0-493e-9979-a078e322397b + - 7cbeece6-3dab-42a2-bbad-4d2511318542 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -553,9 +553,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/88caa18f-7ddf-46d4-b509-041c5bb80695/Files/test_cp_ol2lo.txt + uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/898f919f-2dbf-4fb1-8dbf-5f301ba5ef28/Files/test_cp_ol2lo.txt response: body: string: '' @@ -575,13 +575,13 @@ interactions: Content-Type: - text/plain Date: - - Fri, 06 Feb 2026 07:46:27 GMT + - Wed, 20 May 2026 09:02:00 GMT ETag: - - '"0x8DE6553D35CC2FC"' + - '"0x8DEB64E72052EB4"' Last-Modified: - - Fri, 06 Feb 2026 07:46:23 GMT + - Wed, 20 May 2026 09:01:56 GMT Server: - - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -603,9 +603,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://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/88caa18f-7ddf-46d4-b509-041c5bb80695/Files/test_cp_ol2lo.txt + uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/898f919f-2dbf-4fb1-8dbf-5f301ba5ef28/Files/test_cp_ol2lo.txt response: body: string: 'Hello world! @@ -627,13 +627,13 @@ interactions: Content-Type: - text/plain Date: - - Fri, 06 Feb 2026 07:46:28 GMT + - Wed, 20 May 2026 09:02:00 GMT ETag: - - '"0x8DE6553D35CC2FC"' + - '"0x8DEB64E72052EB4"' Last-Modified: - - Fri, 06 Feb 2026 07:46:23 GMT + - Wed, 20 May 2026 09:01:56 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -655,14 +655,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -671,15 +672,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:28 GMT + - Wed, 20 May 2026 09:02:01 GMT Pragma: - no-cache RequestId: - - b5f365ad-03ef-4f17-8599-44e298a76427 + - 5fe82abc-c5f7-4496-b040-514fe0f69ec3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -705,15 +706,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "3d67541b-579f-4621-a6df-e2be3321e684", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "88caa18f-7ddf-46d4-b509-041c5bb80695", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "53c22e80-6849-4cbb-9f39-419472d926b2", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "898f919f-2dbf-4fb1-8dbf-5f301ba5ef28", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -722,15 +723,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '228' + - '214' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:30 GMT + - Wed, 20 May 2026 09:02:02 GMT Pragma: - no-cache RequestId: - - eb2783dd-9b03-4e9b-b892-1e68e53b0aab + - 0767bf92-8672-4a02-bfdd-550adff58017 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -756,9 +757,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/88caa18f-7ddf-46d4-b509-041c5bb80695/Files/test_cp_ol2lo.txt + uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/898f919f-2dbf-4fb1-8dbf-5f301ba5ef28/Files/test_cp_ol2lo.txt response: body: string: '' @@ -778,13 +779,13 @@ interactions: Content-Type: - text/plain Date: - - Fri, 06 Feb 2026 07:46:32 GMT + - Wed, 20 May 2026 09:02:03 GMT ETag: - - '"0x8DE6553D35CC2FC"' + - '"0x8DEB64E72052EB4"' Last-Modified: - - Fri, 06 Feb 2026 07:46:23 GMT + - Wed, 20 May 2026 09:01:56 GMT Server: - - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -806,9 +807,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://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/88caa18f-7ddf-46d4-b509-041c5bb80695/Files/test_cp_ol2lo.txt + uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/898f919f-2dbf-4fb1-8dbf-5f301ba5ef28/Files/test_cp_ol2lo.txt response: body: string: 'Hello world! @@ -830,13 +831,13 @@ interactions: Content-Type: - text/plain Date: - - Fri, 06 Feb 2026 07:46:34 GMT + - Wed, 20 May 2026 09:02:03 GMT ETag: - - '"0x8DE6553D35CC2FC"' + - '"0x8DEB64E72052EB4"' Last-Modified: - - Fri, 06 Feb 2026 07:46:23 GMT + - Wed, 20 May 2026 09:01:56 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -858,14 +859,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -874,15 +876,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:34 GMT + - Wed, 20 May 2026 09:02:04 GMT Pragma: - no-cache RequestId: - - 44459ade-ed76-462b-8377-9e8524f6a666 + - 5a359574-dfa5-4ed9-98bb-65f02716268b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -908,15 +910,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "3d67541b-579f-4621-a6df-e2be3321e684", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "88caa18f-7ddf-46d4-b509-041c5bb80695", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "53c22e80-6849-4cbb-9f39-419472d926b2", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "898f919f-2dbf-4fb1-8dbf-5f301ba5ef28", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -925,15 +927,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '228' + - '214' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:46:35 GMT + - Wed, 20 May 2026 09:02:04 GMT Pragma: - no-cache RequestId: - - 31fcfd98-4437-493b-869d-1b998079c61b + - eff9ecf3-6102-4952-9ce9-6365e247a815 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -961,9 +963,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items/88caa18f-7ddf-46d4-b509-041c5bb80695 + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items/898f919f-2dbf-4fb1-8dbf-5f301ba5ef28 response: body: string: '' @@ -979,11 +981,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:46:36 GMT + - Wed, 20 May 2026 09:02:05 GMT Pragma: - no-cache RequestId: - - d5aa9012-8a22-426b-ac54-0da298e73028 + - 5a0e4473-9321-4083-bceb-f00e213b04a3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_to_onelake_success.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_to_onelake_success.yaml index 77e30ec3e..470247ba9 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_to_onelake_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_onelake_to_onelake_success.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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:43:23 GMT + - Wed, 20 May 2026 08:58:56 GMT Pragma: - no-cache RequestId: - - f46f165f-834e-4232-b9d0-b7feecf91ad5 + - 30ae77a2-a06e-4baf-9326-e6a5c7b6da57 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:43:24 GMT + - Wed, 20 May 2026 08:58:57 GMT Pragma: - no-cache RequestId: - - 0ed599a8-e19b-40be-8c91-f79ab7a676b1 + - eb8bf435-e72b-4d56-9914-a64d8762d662 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:43:25 GMT + - Wed, 20 May 2026 08:58:58 GMT Pragma: - no-cache RequestId: - - 11ce88f5-bdbb-413d-91a6-236e34549695 + - aa923843-ab27-461b-bdcb-1def52fe7f94 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -156,18 +157,16 @@ interactions: - keep-alive Content-Length: - '74' - 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/lakehouses response: body: - string: '{"id": "13bda1b9-2d2d-4f15-96b6-954cd95441ce", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}' + string: '{"id": "892f596b-02a6-44a5-8258-01c45ab45d12", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +175,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:43:31 GMT + - Wed, 20 May 2026 08:59:03 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 42b3162b-8f12-4dfe-8c41-aa515fa9878c + - fcbedb3b-1e67-44ca-b87f-67f3932dc3f4 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:43:31 GMT + - Wed, 20 May 2026 08:59:04 GMT Pragma: - no-cache RequestId: - - b6d1bfa5-0dc9-46dd-a5dc-2b6d17498323 + - 3a91d50e-8273-4f90-8bb0-336573267d07 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "13bda1b9-2d2d-4f15-96b6-954cd95441ce", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "892f596b-02a6-44a5-8258-01c45ab45d12", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +277,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '179' + - '167' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:43:32 GMT + - Wed, 20 May 2026 08:59:05 GMT Pragma: - no-cache RequestId: - - 4b1d0ecd-255a-489e-8779-1b36b8c355bb + - bed7eada-ea08-408f-97df-763541b6aa4a 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.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "13bda1b9-2d2d-4f15-96b6-954cd95441ce", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "892f596b-02a6-44a5-8258-01c45ab45d12", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -328,15 +326,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '179' + - '167' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:43:33 GMT + - Wed, 20 May 2026 08:59:05 GMT Pragma: - no-cache RequestId: - - 10bc92c3-2fab-482c-a0a0-7315de37c85d + - 041d2d0c-af85-434f-b330-06f017387f4c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -361,18 +359,16 @@ interactions: - keep-alive Content-Length: - '74' - 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/lakehouses response: body: - string: '{"id": "fd446a4d-bff4-44f3-994f-fc04b426f76f", "type": "Lakehouse", - "displayName": "fabcli000002", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}' + string: '{"id": "78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd", "type": "Lakehouse", + "displayName": "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -381,17 +377,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '157' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:43:39 GMT + - Wed, 20 May 2026 08:59:09 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 846d88b0-0471-4cf0-a83e-507fc1f57e46 + - 2e9d7c07-e28f-4479-9583-98144c4738c6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -417,14 +413,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -433,15 +430,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:43:40 GMT + - Wed, 20 May 2026 08:59:10 GMT Pragma: - no-cache RequestId: - - 97aae3cd-28f7-4113-b2f4-62ae7613f2e2 + - 1bdf9033-5510-4fb8-ab83-cf339e9b620f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -467,15 +464,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "13bda1b9-2d2d-4f15-96b6-954cd95441ce", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, {"id": "fd446a4d-bff4-44f3-994f-fc04b426f76f", - "type": "Lakehouse", "displayName": "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "892f596b-02a6-44a5-8258-01c45ab45d12", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -484,15 +481,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '223' + - '211' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:43:42 GMT + - Wed, 20 May 2026 08:59:11 GMT Pragma: - no-cache RequestId: - - 71f7ad01-aaf4-4f0d-bae7-8f862bbc0ece + - 25bf895d-087f-43df-bd49-bf9246e6e1da Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -518,9 +515,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/13bda1b9-2d2d-4f15-96b6-954cd95441ce/Files/test_cp_ol2ol.txt + uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/892f596b-02a6-44a5-8258-01c45ab45d12/Files/test_cp_ol2ol.txt response: body: string: '' @@ -534,20 +531,18 @@ interactions: Access-Control-Expose-Headers: - '*,Authorization' Date: - - Fri, 06 Feb 2026 07:43:45 GMT + - Wed, 20 May 2026 08:59:13 GMT Server: - - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Strict-Transport-Security: - max-age=31536000; includeSubDomains - Transfer-Encoding: - - chunked X-Content-Type-Options: - nosniff x-ms-error-code: - - BlobNotFound + - PathNotFound status: code: 404 - message: The specified blob does not exist. + message: The specified path does not exist. - request: body: null headers: @@ -560,9 +555,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/13bda1b9-2d2d-4f15-96b6-954cd95441ce/Files/test_cp_ol2ol.txt + uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/892f596b-02a6-44a5-8258-01c45ab45d12/Files/test_cp_ol2ol.txt response: body: string: '' @@ -576,9 +571,9 @@ interactions: Access-Control-Expose-Headers: - '*,Authorization' Date: - - Fri, 06 Feb 2026 07:43:47 GMT + - Wed, 20 May 2026 08:59:15 GMT Server: - - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -586,10 +581,10 @@ interactions: X-Content-Type-Options: - nosniff x-ms-error-code: - - BlobNotFound + - PathNotFound status: code: 404 - message: The specified blob does not exist. + message: The specified path does not exist. - request: body: null headers: @@ -604,9 +599,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PUT - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/13bda1b9-2d2d-4f15-96b6-954cd95441ce/Files/test_cp_ol2ol.txt/?resource=file + uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/892f596b-02a6-44a5-8258-01c45ab45d12/Files/test_cp_ol2ol.txt/?resource=file response: body: string: '' @@ -622,13 +617,13 @@ interactions: Content-Length: - '0' Date: - - Fri, 06 Feb 2026 07:43:50 GMT + - Wed, 20 May 2026 08:59:17 GMT ETag: - - '"0x8DE655377ED3E60"' + - '"0x8DEB64E12BBBD08"' Last-Modified: - - Fri, 06 Feb 2026 07:43:50 GMT + - Wed, 20 May 2026 08:59:17 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -652,11 +647,11 @@ interactions: Content-Type: - text/plain User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 x-ms-content-type: - text/plain method: PATCH - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/13bda1b9-2d2d-4f15-96b6-954cd95441ce/Files/test_cp_ol2ol.txt?action=append&position=0 + uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/892f596b-02a6-44a5-8258-01c45ab45d12/Files/test_cp_ol2ol.txt?action=append&position=0 response: body: string: '' @@ -672,9 +667,9 @@ interactions: Content-Length: - '0' Date: - - Fri, 06 Feb 2026 07:43:52 GMT + - Wed, 20 May 2026 08:59:18 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -696,11 +691,11 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 x-ms-content-type: - text/plain method: PATCH - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/13bda1b9-2d2d-4f15-96b6-954cd95441ce/Files/test_cp_ol2ol.txt?action=flush&position=13 + uri: https://onelake.dfs.fabric.microsoft.com//b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/892f596b-02a6-44a5-8258-01c45ab45d12/Files/test_cp_ol2ol.txt?action=flush&position=13 response: body: string: '' @@ -716,13 +711,13 @@ interactions: Content-Length: - '0' Date: - - Fri, 06 Feb 2026 07:43:54 GMT + - Wed, 20 May 2026 08:59:21 GMT ETag: - - '"0x8DE65537A6749CC"' + - '"0x8DEB64E1559A254"' Last-Modified: - - Fri, 06 Feb 2026 07:43:54 GMT + - Wed, 20 May 2026 08:59:21 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -742,14 +737,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -758,15 +754,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:43:55 GMT + - Wed, 20 May 2026 08:59:21 GMT Pragma: - no-cache RequestId: - - 1161f5d7-8279-45d2-a237-0b064cc121e4 + - 938681ee-21b3-4d78-9866-0a3de73a663f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -792,19 +788,19 @@ 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "59db32a1-fe0e-4e37-9911-0c434267190d", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "30458c50-2456-479c-8e15-4aed29d9b293", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "13bda1b9-2d2d-4f15-96b6-954cd95441ce", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "fd446a4d-bff4-44f3-994f-fc04b426f76f", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "863e6caf-e081-473b-a293-44ea70521459", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "480f0a7b-eebe-46d4-93fc-741fffb68dcd", "type": "SQLEndpoint", "displayName": + "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "892f596b-02a6-44a5-8258-01c45ab45d12", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -813,15 +809,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '296' + - '279' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:43:55 GMT + - Wed, 20 May 2026 08:59:22 GMT Pragma: - no-cache RequestId: - - ac029495-de2f-44c9-b39c-1a57a4aab3b6 + - b9b5bae2-a20d-48b2-b5df-351e12b906ac Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -847,9 +843,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/13bda1b9-2d2d-4f15-96b6-954cd95441ce/Files/test_cp_ol2ol.txt + uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/892f596b-02a6-44a5-8258-01c45ab45d12/Files/test_cp_ol2ol.txt response: body: string: '' @@ -869,13 +865,13 @@ interactions: Content-Type: - text/plain Date: - - Fri, 06 Feb 2026 07:43:56 GMT + - Wed, 20 May 2026 08:59:24 GMT ETag: - - '"0x8DE65537A6749CC"' + - '"0x8DEB64E1559A254"' Last-Modified: - - Fri, 06 Feb 2026 07:43:54 GMT + - Wed, 20 May 2026 08:59:21 GMT Server: - - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -897,14 +893,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -913,15 +910,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:43:57 GMT + - Wed, 20 May 2026 08:59:25 GMT Pragma: - no-cache RequestId: - - 62fd1ebb-c21b-409d-a830-3abb78439f1f + - c8929cad-3034-42fa-9e92-692bc65373a5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -947,19 +944,19 @@ 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "59db32a1-fe0e-4e37-9911-0c434267190d", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "30458c50-2456-479c-8e15-4aed29d9b293", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "13bda1b9-2d2d-4f15-96b6-954cd95441ce", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "fd446a4d-bff4-44f3-994f-fc04b426f76f", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "863e6caf-e081-473b-a293-44ea70521459", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "480f0a7b-eebe-46d4-93fc-741fffb68dcd", "type": "SQLEndpoint", "displayName": + "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "892f596b-02a6-44a5-8258-01c45ab45d12", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -968,15 +965,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '296' + - '279' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:43:58 GMT + - Wed, 20 May 2026 08:59:25 GMT Pragma: - no-cache RequestId: - - b4e15818-86ab-4320-9ca3-a04d947c11ba + - 4cab7fc2-25f5-48f7-8c90-7fa07ed93b10 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1002,9 +999,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://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/13bda1b9-2d2d-4f15-96b6-954cd95441ce/Files/test_cp_ol2ol.txt + uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/892f596b-02a6-44a5-8258-01c45ab45d12/Files/test_cp_ol2ol.txt response: body: string: 'Hello world! @@ -1026,13 +1023,13 @@ interactions: Content-Type: - text/plain Date: - - Fri, 06 Feb 2026 07:44:00 GMT + - Wed, 20 May 2026 08:59:28 GMT ETag: - - '"0x8DE65537A6749CC"' + - '"0x8DEB64E1559A254"' Last-Modified: - - Fri, 06 Feb 2026 07:43:54 GMT + - Wed, 20 May 2026 08:59:21 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1056,9 +1053,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PUT - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/fd446a4d-bff4-44f3-994f-fc04b426f76f/Files/test_cp_ol2ol.txt/?resource=file + uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd/Files/test_cp_ol2ol.txt/?resource=file response: body: string: '' @@ -1074,13 +1071,13 @@ interactions: Content-Length: - '0' Date: - - Fri, 06 Feb 2026 07:44:03 GMT + - Wed, 20 May 2026 08:59:31 GMT ETag: - - '"0x8DE65537FB8DC64"' + - '"0x8DEB64E1ADBEC30"' Last-Modified: - - Fri, 06 Feb 2026 07:44:03 GMT + - Wed, 20 May 2026 08:59:30 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1104,11 +1101,11 @@ interactions: Content-Type: - text/plain User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 x-ms-content-type: - text/plain method: PATCH - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/fd446a4d-bff4-44f3-994f-fc04b426f76f/Files/test_cp_ol2ol.txt?action=append&position=0 + uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd/Files/test_cp_ol2ol.txt?action=append&position=0 response: body: string: '' @@ -1124,9 +1121,9 @@ interactions: Content-Length: - '0' Date: - - Fri, 06 Feb 2026 07:44:05 GMT + - Wed, 20 May 2026 08:59:31 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1148,11 +1145,11 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 x-ms-content-type: - text/plain method: PATCH - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/fd446a4d-bff4-44f3-994f-fc04b426f76f/Files/test_cp_ol2ol.txt?action=flush&position=13 + uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd/Files/test_cp_ol2ol.txt?action=flush&position=13 response: body: string: '' @@ -1168,13 +1165,13 @@ interactions: Content-Length: - '0' Date: - - Fri, 06 Feb 2026 07:44:07 GMT + - Wed, 20 May 2026 08:59:33 GMT ETag: - - '"0x8DE65538241BEB0"' + - '"0x8DEB64E1CE0D47C"' Last-Modified: - - Fri, 06 Feb 2026 07:44:07 GMT + - Wed, 20 May 2026 08:59:34 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1194,14 +1191,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1210,15 +1208,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:07 GMT + - Wed, 20 May 2026 08:59:35 GMT Pragma: - no-cache RequestId: - - f8230566-e09d-4cf4-a1f3-5d53c50fc977 + - 684d132d-545a-456e-86a5-cb8b8834dacd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1244,19 +1242,19 @@ 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "59db32a1-fe0e-4e37-9911-0c434267190d", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "30458c50-2456-479c-8e15-4aed29d9b293", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "13bda1b9-2d2d-4f15-96b6-954cd95441ce", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "fd446a4d-bff4-44f3-994f-fc04b426f76f", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "863e6caf-e081-473b-a293-44ea70521459", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "480f0a7b-eebe-46d4-93fc-741fffb68dcd", "type": "SQLEndpoint", "displayName": + "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "892f596b-02a6-44a5-8258-01c45ab45d12", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1265,15 +1263,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '296' + - '279' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:09 GMT + - Wed, 20 May 2026 08:59:35 GMT Pragma: - no-cache RequestId: - - d10b8a62-c982-424a-92b6-b683ae1379dd + - efc78d69-e03e-454c-bdfb-8db5754433b7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1299,14 +1297,14 @@ 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://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/?recursive=false&resource=filesystem&directory=fd446a4d-bff4-44f3-994f-fc04b426f76f%2FFiles&getShortcutMetadata=true + uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/?recursive=false&resource=filesystem&directory=78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd%2FFiles&getShortcutMetadata=true response: body: - string: '{"paths": [{"name": "fd446a4d-bff4-44f3-994f-fc04b426f76f/Files/test_cp_ol2ol.txt", - "creationTime": "134148374432701540", "lastModified": "Fri, 06 Feb 2026 07:44:07 - GMT", "etag": "0x8DE65538241BEB0", "contentLength": "13", "owner": "bdb39224-bd86-4d14-bc6e-18637e6902b0", + string: '{"paths": [{"name": "78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd/Files/test_cp_ol2ol.txt", + "creationTime": "134237411707513904", "lastModified": "Wed, 20 May 2026 08:59:34 + GMT", "etag": "0x8DEB64E1CE0D47C", "contentLength": "13", "owner": "bdb39224-bd86-4d14-bc6e-18637e6902b0", "group": "bdb39224-bd86-4d14-bc6e-18637e6902b0", "permissions": "rw-r-----", "expiryTime": "0"}], "ContinuationToken": null}' headers: @@ -1321,9 +1319,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:10 GMT + - Wed, 20 May 2026 08:59:37 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1345,14 +1343,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1361,15 +1360,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:11 GMT + - Wed, 20 May 2026 08:59:38 GMT Pragma: - no-cache RequestId: - - 5b5c47e6-4c6d-4e2c-adcc-c489cfea9e4c + - 2c8b3b77-bc2e-4d9b-bcdd-9bdb26a967df Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1395,19 +1394,19 @@ 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "59db32a1-fe0e-4e37-9911-0c434267190d", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "30458c50-2456-479c-8e15-4aed29d9b293", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "13bda1b9-2d2d-4f15-96b6-954cd95441ce", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "fd446a4d-bff4-44f3-994f-fc04b426f76f", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "863e6caf-e081-473b-a293-44ea70521459", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "480f0a7b-eebe-46d4-93fc-741fffb68dcd", "type": "SQLEndpoint", "displayName": + "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "892f596b-02a6-44a5-8258-01c45ab45d12", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1416,15 +1415,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '296' + - '279' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:12 GMT + - Wed, 20 May 2026 08:59:39 GMT Pragma: - no-cache RequestId: - - 2613494e-7d70-4794-a85f-1810b11673ba + - 0417bd94-b17f-4875-a7e4-6ef18c07dea0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1450,9 +1449,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/13bda1b9-2d2d-4f15-96b6-954cd95441ce/Files/test_cp_ol2ol.txt + uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/892f596b-02a6-44a5-8258-01c45ab45d12/Files/test_cp_ol2ol.txt response: body: string: '' @@ -1472,13 +1471,13 @@ interactions: Content-Type: - text/plain Date: - - Fri, 06 Feb 2026 07:44:14 GMT + - Wed, 20 May 2026 08:59:40 GMT ETag: - - '"0x8DE65537A6749CC"' + - '"0x8DEB64E1559A254"' Last-Modified: - - Fri, 06 Feb 2026 07:43:54 GMT + - Wed, 20 May 2026 08:59:21 GMT Server: - - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1500,14 +1499,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1516,15 +1516,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:15 GMT + - Wed, 20 May 2026 08:59:42 GMT Pragma: - no-cache RequestId: - - 4b244b54-9831-4545-95e5-c209fced7306 + - 18eb6280-1472-4089-a9fb-44112ea99577 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1550,19 +1550,19 @@ 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "59db32a1-fe0e-4e37-9911-0c434267190d", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "30458c50-2456-479c-8e15-4aed29d9b293", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "13bda1b9-2d2d-4f15-96b6-954cd95441ce", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "fd446a4d-bff4-44f3-994f-fc04b426f76f", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "863e6caf-e081-473b-a293-44ea70521459", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "480f0a7b-eebe-46d4-93fc-741fffb68dcd", "type": "SQLEndpoint", "displayName": + "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "892f596b-02a6-44a5-8258-01c45ab45d12", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1571,15 +1571,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '296' + - '279' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:15 GMT + - Wed, 20 May 2026 08:59:42 GMT Pragma: - no-cache RequestId: - - 665f99f3-5305-4524-a229-f43c0ce95198 + - 87cca82b-cab9-4526-bfb7-ea4121bbb052 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1605,9 +1605,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/fd446a4d-bff4-44f3-994f-fc04b426f76f/Files/renamed_test_cp_ol2ol.txt + uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd/Files/renamed_test_cp_ol2ol.txt response: body: string: '' @@ -1621,9 +1621,9 @@ interactions: Access-Control-Expose-Headers: - '*,Authorization' Date: - - Fri, 06 Feb 2026 07:44:18 GMT + - Wed, 20 May 2026 08:59:45 GMT Server: - - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1631,10 +1631,10 @@ interactions: X-Content-Type-Options: - nosniff x-ms-error-code: - - BlobNotFound + - PathNotFound status: code: 404 - message: The specified blob does not exist. + message: The specified path does not exist. - request: body: null headers: @@ -1647,9 +1647,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/fd446a4d-bff4-44f3-994f-fc04b426f76f/Files/renamed_test_cp_ol2ol.txt + uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd/Files/renamed_test_cp_ol2ol.txt response: body: string: '' @@ -1663,9 +1663,9 @@ interactions: Access-Control-Expose-Headers: - '*,Authorization' Date: - - Fri, 06 Feb 2026 07:44:20 GMT + - Wed, 20 May 2026 08:59:47 GMT Server: - - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1673,10 +1673,10 @@ interactions: X-Content-Type-Options: - nosniff x-ms-error-code: - - BlobNotFound + - PathNotFound status: code: 404 - message: The specified blob does not exist. + message: The specified path does not exist. - request: body: null headers: @@ -1689,9 +1689,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://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/13bda1b9-2d2d-4f15-96b6-954cd95441ce/Files/test_cp_ol2ol.txt + uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/892f596b-02a6-44a5-8258-01c45ab45d12/Files/test_cp_ol2ol.txt response: body: string: 'Hello world! @@ -1713,13 +1713,13 @@ interactions: Content-Type: - text/plain Date: - - Fri, 06 Feb 2026 07:44:22 GMT + - Wed, 20 May 2026 08:59:49 GMT ETag: - - '"0x8DE65537A6749CC"' + - '"0x8DEB64E1559A254"' Last-Modified: - - Fri, 06 Feb 2026 07:43:54 GMT + - Wed, 20 May 2026 08:59:21 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1743,9 +1743,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PUT - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/fd446a4d-bff4-44f3-994f-fc04b426f76f/Files/renamed_test_cp_ol2ol.txt/?resource=file + uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd/Files/renamed_test_cp_ol2ol.txt/?resource=file response: body: string: '' @@ -1761,13 +1761,13 @@ interactions: Content-Length: - '0' Date: - - Fri, 06 Feb 2026 07:44:24 GMT + - Wed, 20 May 2026 08:59:51 GMT ETag: - - '"0x8DE65538CBD08CC"' + - '"0x8DEB64E27476C6C"' Last-Modified: - - Fri, 06 Feb 2026 07:44:25 GMT + - Wed, 20 May 2026 08:59:51 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1791,11 +1791,11 @@ interactions: Content-Type: - text/plain User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 x-ms-content-type: - text/plain method: PATCH - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/fd446a4d-bff4-44f3-994f-fc04b426f76f/Files/renamed_test_cp_ol2ol.txt?action=append&position=0 + uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd/Files/renamed_test_cp_ol2ol.txt?action=append&position=0 response: body: string: '' @@ -1811,9 +1811,9 @@ interactions: Content-Length: - '0' Date: - - Fri, 06 Feb 2026 07:44:26 GMT + - Wed, 20 May 2026 08:59:53 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1835,11 +1835,11 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 x-ms-content-type: - text/plain method: PATCH - uri: https://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/fd446a4d-bff4-44f3-994f-fc04b426f76f/Files/renamed_test_cp_ol2ol.txt?action=flush&position=13 + uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd/Files/renamed_test_cp_ol2ol.txt?action=flush&position=13 response: body: string: '' @@ -1855,13 +1855,13 @@ interactions: Content-Length: - '0' Date: - - Fri, 06 Feb 2026 07:44:29 GMT + - Wed, 20 May 2026 08:59:55 GMT ETag: - - '"0x8DE65538F3C2EC8"' + - '"0x8DEB64E29F1D6EC"' Last-Modified: - - Fri, 06 Feb 2026 07:44:29 GMT + - Wed, 20 May 2026 08:59:56 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1881,14 +1881,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1897,15 +1898,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:29 GMT + - Wed, 20 May 2026 08:59:56 GMT Pragma: - no-cache RequestId: - - bedc0479-360b-47d9-b561-746ec9ce88cd + - 73ea9b92-ac65-447b-9907-b8a1555c52f2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1931,19 +1932,19 @@ 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "59db32a1-fe0e-4e37-9911-0c434267190d", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "30458c50-2456-479c-8e15-4aed29d9b293", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "13bda1b9-2d2d-4f15-96b6-954cd95441ce", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "fd446a4d-bff4-44f3-994f-fc04b426f76f", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "863e6caf-e081-473b-a293-44ea70521459", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "480f0a7b-eebe-46d4-93fc-741fffb68dcd", "type": "SQLEndpoint", "displayName": + "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "892f596b-02a6-44a5-8258-01c45ab45d12", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1952,15 +1953,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '296' + - '279' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:30 GMT + - Wed, 20 May 2026 08:59:57 GMT Pragma: - no-cache RequestId: - - eb85b15e-6871-4fce-94f5-3f82b75a3536 + - 347d9910-982d-4c2f-880c-890635aadf6f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1986,18 +1987,18 @@ 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://onelake.dfs.fabric.microsoft.com/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/?recursive=false&resource=filesystem&directory=fd446a4d-bff4-44f3-994f-fc04b426f76f%2FFiles&getShortcutMetadata=true + uri: https://onelake.dfs.fabric.microsoft.com/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/?recursive=false&resource=filesystem&directory=78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd%2FFiles&getShortcutMetadata=true response: body: - string: '{"paths": [{"name": "fd446a4d-bff4-44f3-994f-fc04b426f76f/Files/renamed_test_cp_ol2ol.txt", - "creationTime": "134148374651078860", "lastModified": "Fri, 06 Feb 2026 07:44:29 - GMT", "etag": "0x8DE65538F3C2EC8", "contentLength": "13", "owner": "bdb39224-bd86-4d14-bc6e-18637e6902b0", + string: '{"paths": [{"name": "78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd/Files/renamed_test_cp_ol2ol.txt", + "creationTime": "134237411915885676", "lastModified": "Wed, 20 May 2026 08:59:56 + GMT", "etag": "0x8DEB64E29F1D6EC", "contentLength": "13", "owner": "bdb39224-bd86-4d14-bc6e-18637e6902b0", "group": "bdb39224-bd86-4d14-bc6e-18637e6902b0", "permissions": "rw-r-----", - "expiryTime": "0"}, {"name": "fd446a4d-bff4-44f3-994f-fc04b426f76f/Files/test_cp_ol2ol.txt", - "creationTime": "134148374432701540", "lastModified": "Fri, 06 Feb 2026 07:44:07 - GMT", "etag": "0x8DE65538241BEB0", "contentLength": "13", "owner": "bdb39224-bd86-4d14-bc6e-18637e6902b0", + "expiryTime": "0"}, {"name": "78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd/Files/test_cp_ol2ol.txt", + "creationTime": "134237411707513904", "lastModified": "Wed, 20 May 2026 08:59:34 + GMT", "etag": "0x8DEB64E1CE0D47C", "contentLength": "13", "owner": "bdb39224-bd86-4d14-bc6e-18637e6902b0", "group": "bdb39224-bd86-4d14-bc6e-18637e6902b0", "permissions": "rw-r-----", "expiryTime": "0"}], "ContinuationToken": null}' headers: @@ -2012,9 +2013,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:32 GMT + - Wed, 20 May 2026 08:59:58 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Kestrel Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -2036,14 +2037,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2052,15 +2054,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:33 GMT + - Wed, 20 May 2026 09:00:00 GMT Pragma: - no-cache RequestId: - - 9da45682-62d3-49a4-b6d5-a8bdf204b6bd + - d37d81c7-f33c-4b67-804a-835fdf515bbc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2086,19 +2088,19 @@ 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "59db32a1-fe0e-4e37-9911-0c434267190d", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "30458c50-2456-479c-8e15-4aed29d9b293", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "13bda1b9-2d2d-4f15-96b6-954cd95441ce", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "fd446a4d-bff4-44f3-994f-fc04b426f76f", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "863e6caf-e081-473b-a293-44ea70521459", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "480f0a7b-eebe-46d4-93fc-741fffb68dcd", "type": "SQLEndpoint", "displayName": + "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "892f596b-02a6-44a5-8258-01c45ab45d12", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2107,15 +2109,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '296' + - '279' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:34 GMT + - Wed, 20 May 2026 09:00:01 GMT Pragma: - no-cache RequestId: - - 38f47cfb-1c4b-40ec-b9eb-9fd61ed75f67 + - 1db5e677-f34f-46c7-859e-c08f225c044e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2143,9 +2145,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items/fd446a4d-bff4-44f3-994f-fc04b426f76f + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items/78cf7b9b-2d0f-4792-9ba8-5d7fded11ddd response: body: string: '' @@ -2161,11 +2163,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:44:35 GMT + - Wed, 20 May 2026 09:00:02 GMT Pragma: - no-cache RequestId: - - 942c7a63-f93e-487a-adb8-6d0fef405bbe + - fd0ae4ce-e83e-4a16-9525-a8c60bd40654 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2191,14 +2193,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2207,15 +2210,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:36 GMT + - Wed, 20 May 2026 09:00:02 GMT Pragma: - no-cache RequestId: - - 2281d6f5-add2-4d48-92dc-f913aec1b383 + - 8782780c-98d8-4bf5-8a65-256a54c92a7f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2241,15 +2244,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "59db32a1-fe0e-4e37-9911-0c434267190d", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}, - {"id": "13bda1b9-2d2d-4f15-96b6-954cd95441ce", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "863e6caf-e081-473b-a293-44ea70521459", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}, + {"id": "892f596b-02a6-44a5-8258-01c45ab45d12", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2258,15 +2261,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '228' + - '214' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:44:36 GMT + - Wed, 20 May 2026 09:00:03 GMT Pragma: - no-cache RequestId: - - c12e9128-2041-45c3-8a65-21f022ddc5de + - cc99c6c6-805e-4427-959f-b75ad91702a7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2294,9 +2297,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items/13bda1b9-2d2d-4f15-96b6-954cd95441ce + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items/892f596b-02a6-44a5-8258-01c45ab45d12 response: body: string: '' @@ -2312,11 +2315,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:44:38 GMT + - Wed, 20 May 2026 09:00:04 GMT Pragma: - no-cache RequestId: - - 10b722c1-b200-41f7-a031-332a3907f043 + - ee6e258f-5425-4f28-b012-9f52e453562a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_virtual_workspace_item_not_supported_failure[.domains].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_virtual_workspace_item_not_supported_failure[.domains].yaml index ba9fa41e1..719655873 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_virtual_workspace_item_not_supported_failure[.domains].yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_virtual_workspace_item_not_supported_failure[.domains].yaml @@ -11,7 +11,7 @@ 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/admin/domains response: @@ -29,11 +29,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:41:26 GMT + - Wed, 20 May 2026 08:58:16 GMT Pragma: - no-cache RequestId: - - f5ce672d-020a-4697-8116-88d416a6f8ce + - 40454280-f704-41c1-b1e7-c494fd3e0b3f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,12 +61,12 @@ interactions: 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/admin/domains response: body: - string: '{"contributorsScope": "AllTenant", "id": "13b0ce95-dc6a-429e-bf62-40caa6ee444a", + string: '{"contributorsScope": "AllTenant", "id": "a70cfe11-735d-40a8-9e34-70c03d7276fb", "displayName": "fabcli000001", "description": ""}' headers: Access-Control-Expose-Headers: @@ -80,13 +80,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:41:26 GMT + - Wed, 20 May 2026 08:58:17 GMT Location: - - https://api.fabric.microsoft.com/v1/admin/domains/13b0ce95-dc6a-429e-bf62-40caa6ee444a + - https://api.fabric.microsoft.com/v1/admin/domains/a70cfe11-735d-40a8-9e34-70c03d7276fb Pragma: - no-cache RequestId: - - 8fbe93df-31f8-49bd-9545-6b8d96aadca1 + - 7c7fb0c7-96d9-4f47-aa34-52887b0a1b72 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -112,12 +112,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/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AllTenant", "id": "13b0ce95-dc6a-429e-bf62-40caa6ee444a", + string: '{"domains": [{"contributorsScope": "AllTenant", "id": "a70cfe11-735d-40a8-9e34-70c03d7276fb", "displayName": "fabcli000001", "description": ""}]}' headers: Access-Control-Expose-Headers: @@ -127,15 +127,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '225' + - '227' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:41:28 GMT + - Wed, 20 May 2026 08:58:18 GMT Pragma: - no-cache RequestId: - - 34975b56-5b4b-4497-b3b3-3769cabb4d56 + - d7c64d82-96e5-49aa-a444-277774d58c4f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -161,12 +161,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/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AllTenant", "id": "13b0ce95-dc6a-429e-bf62-40caa6ee444a", + string: '{"domains": [{"contributorsScope": "AllTenant", "id": "a70cfe11-735d-40a8-9e34-70c03d7276fb", "displayName": "fabcli000001", "description": ""}]}' headers: Access-Control-Expose-Headers: @@ -176,15 +176,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '225' + - '227' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:41:29 GMT + - Wed, 20 May 2026 08:58:19 GMT Pragma: - no-cache RequestId: - - adbf91c4-3458-4b87-bc9b-534f82b0f80a + - 3903d9e1-4222-434e-bccf-f424becd9cbd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -210,12 +210,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/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AllTenant", "id": "13b0ce95-dc6a-429e-bf62-40caa6ee444a", + string: '{"domains": [{"contributorsScope": "AllTenant", "id": "a70cfe11-735d-40a8-9e34-70c03d7276fb", "displayName": "fabcli000001", "description": ""}]}' headers: Access-Control-Expose-Headers: @@ -225,15 +225,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '225' + - '227' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:41:30 GMT + - Wed, 20 May 2026 08:58:20 GMT Pragma: - no-cache RequestId: - - 440d17ac-f50a-4ff0-b7c9-f7b41ba096e3 + - 9f08b98e-57a1-440f-98a8-a03e3e7d907e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -261,9 +261,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/admin/domains/13b0ce95-dc6a-429e-bf62-40caa6ee444a + uri: https://api.fabric.microsoft.com/v1/admin/domains/a70cfe11-735d-40a8-9e34-70c03d7276fb response: body: string: '' @@ -279,11 +279,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:41:30 GMT + - Wed, 20 May 2026 08:58:21 GMT Pragma: - no-cache RequestId: - - d2c55b8f-6c79-4c09-830e-bf4dc92f1eb5 + - 9298408c-b40f-4d6b-a881-26166179181c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_virtual_workspace_item_not_supported_failure[.gateways].yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_virtual_workspace_item_not_supported_failure[.gateways].yaml index 7c3be1a11..bdb917eb5 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_virtual_workspace_item_not_supported_failure[.gateways].yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_virtual_workspace_item_not_supported_failure[.gateways].yaml @@ -11,7 +11,7 @@ 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/gateways response: @@ -25,15 +25,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1263' + - '1460' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:42:55 GMT + - Wed, 20 May 2026 08:58:22 GMT Pragma: - no-cache RequestId: - - ed7a5671-412d-4875-8c54-34a5d2509680 + - fcdcc84d-c999-4194-84c7-5a73b14be9c6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -59,7 +59,7 @@ 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/capacities response: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '427' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:42:59 GMT + - Wed, 20 May 2026 08:58:28 GMT Pragma: - no-cache RequestId: - - 83502241-b0f2-47c4-a88f-00fb14834aff + - afa8beb0-14dd-4464-b5f8-324d2e817583 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-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions?api-version=2022-12-01 response: @@ -124,7 +124,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:43:00 GMT + - Wed, 20 May 2026 08:58:29 GMT Expires: - '-1' Pragma: @@ -150,7 +150,7 @@ 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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/virtualNetworks?api-version=2024-05-01 response: @@ -162,11 +162,11 @@ interactions: Cache-Control: - no-cache Content-Length: - - '2758' + - '2962' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:43:01 GMT + - Wed, 20 May 2026 08:58:30 GMT Expires: - '-1' Pragma: @@ -198,7 +198,7 @@ interactions: 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/gateways response: @@ -207,7 +207,7 @@ interactions: "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "6e0da460-ac99-41af-bf36-ef238a4d9dee", + 30, "numberOfMemberGateways": 1, "id": "c9b66737-5f93-4315-8f16-3bde89a86a82", "type": "VirtualNetwork"}' headers: Access-Control-Expose-Headers: @@ -221,13 +221,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:43:16 GMT + - Wed, 20 May 2026 08:58:49 GMT Location: - - https://api.fabric.microsoft.com/v1/gateways/6e0da460-ac99-41af-bf36-ef238a4d9dee + - https://api.fabric.microsoft.com/v1/gateways/c9b66737-5f93-4315-8f16-3bde89a86a82 Pragma: - no-cache RequestId: - - 6ab61a30-bdd2-4950-985a-2e074ef19a78 + - 7efd4d74-dbd6-4bb5-ab38-b80c730fd4dd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -253,7 +253,7 @@ 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/gateways response: @@ -262,7 +262,7 @@ interactions: "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "6e0da460-ac99-41af-bf36-ef238a4d9dee", + 30, "numberOfMemberGateways": 1, "id": "c9b66737-5f93-4315-8f16-3bde89a86a82", "type": "VirtualNetwork"}]}' headers: Access-Control-Expose-Headers: @@ -272,15 +272,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1304' + - '1500' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:43:17 GMT + - Wed, 20 May 2026 08:58:50 GMT Pragma: - no-cache RequestId: - - ed94b2cd-c3b8-4db0-85df-aae3a748ab0e + - 1d514a35-43e5-497f-b75b-815afa7961b2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -306,7 +306,7 @@ 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/gateways response: @@ -315,7 +315,7 @@ interactions: "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "6e0da460-ac99-41af-bf36-ef238a4d9dee", + 30, "numberOfMemberGateways": 1, "id": "c9b66737-5f93-4315-8f16-3bde89a86a82", "type": "VirtualNetwork"}]}' headers: Access-Control-Expose-Headers: @@ -325,15 +325,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1304' + - '1500' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:43:18 GMT + - Wed, 20 May 2026 08:58:52 GMT Pragma: - no-cache RequestId: - - 173d4f4e-9c48-4bf0-9cb6-c85d283f0c81 + - e8ea558d-4f77-4539-a64b-9b83161ff01d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -359,7 +359,7 @@ 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/gateways response: @@ -368,7 +368,7 @@ interactions: "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "6e0da460-ac99-41af-bf36-ef238a4d9dee", + 30, "numberOfMemberGateways": 1, "id": "c9b66737-5f93-4315-8f16-3bde89a86a82", "type": "VirtualNetwork"}]}' headers: Access-Control-Expose-Headers: @@ -378,15 +378,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1304' + - '1500' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:43:19 GMT + - Wed, 20 May 2026 08:58:53 GMT Pragma: - no-cache RequestId: - - d824b543-967b-4aa5-a85d-02b50694e4d8 + - 107460b2-82fc-4e44-876e-34894d421c3f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -414,9 +414,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/gateways/6e0da460-ac99-41af-bf36-ef238a4d9dee + uri: https://api.fabric.microsoft.com/v1/gateways/c9b66737-5f93-4315-8f16-3bde89a86a82 response: body: string: '' @@ -432,11 +432,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:43:22 GMT + - Wed, 20 May 2026 08:58:56 GMT Pragma: - no-cache RequestId: - - 94e86e4e-8dd9-4d20-a011-14ebb11b1ae1 + - e4584b6e-4bbb-431f-92f8-a4e93ccd4d98 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_folder_success.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_folder_success.yaml index b1935b416..61ded8066 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_folder_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_folder_success.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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:24:53 GMT + - Wed, 20 May 2026 08:42:57 GMT Pragma: - no-cache RequestId: - - 5d7893be-2ade-4bc4-8eb9-21c0e5e95404 + - 56ee9a17-7018-41d7-94e5-e8d266c31bde Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:24:54 GMT + - Wed, 20 May 2026 08:42:57 GMT Pragma: - no-cache RequestId: - - 7598bfe0-1a8b-41bc-9260-f702c7b6d3bb + - 49a377d5-be48-48e3-b361-93949f00b9ef Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,7 +113,7 @@ 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/capacities response: @@ -127,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '425' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:25:00 GMT + - Wed, 20 May 2026 08:43:02 GMT Pragma: - no-cache RequestId: - - 3516858b-1855-43de-a9c4-35ab7f4fb374 + - ae7dafde-28d6-4d27-92b2-cef25a07dc7e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -160,16 +162,16 @@ interactions: - keep-alive Content-Length: - '89' - 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 response: body: - string: '{"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -178,17 +180,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '154' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:25:09 GMT + - Wed, 20 May 2026 08:43:10 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/1da9d768-e2c2-494b-9eea-755c6a674b9a + - https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c Pragma: - no-cache RequestId: - - e41453d2-017f-4e03-bbf8-bce5f0ade240 + - 9a43f582-ea00-4630-8728-736e5087354b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,15 +216,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -231,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2844' + - '2659' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:25:09 GMT + - Wed, 20 May 2026 08:43:12 GMT Pragma: - no-cache RequestId: - - 2cfb6a06-fdce-496c-9fa8-d1da244b6a4e + - f82465f2-f669-4025-a1ab-95ad0a9c6f36 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,15 +269,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -282,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2844' + - '2659' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:25:10 GMT + - Wed, 20 May 2026 08:43:12 GMT Pragma: - no-cache RequestId: - - 1d9dac71-49aa-40e5-82e8-93626343ad18 + - 219cab12-db7e-495a-aa86-8c828d07fc75 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,7 +322,7 @@ 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/capacities response: @@ -332,15 +338,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:25:14 GMT + - Wed, 20 May 2026 08:43:15 GMT Pragma: - no-cache RequestId: - - 3b3800cc-f432-4172-8716-7461ac404b7c + - dd6b0eb1-24da-42d5-abe4-66e1c2b5ba50 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -365,16 +371,16 @@ interactions: - keep-alive Content-Length: - '89' - 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 response: body: - string: '{"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -383,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '163' + - '153' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:25:22 GMT + - Wed, 20 May 2026 08:43:23 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2 + - https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4 Pragma: - no-cache RequestId: - - 88e0511b-28d4-45d8-a5b8-da5bc8112c7e + - c54e2cbf-c0dd-4dfa-8201-41f9e57719c0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -419,16 +425,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -437,15 +446,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:25:22 GMT + - Wed, 20 May 2026 08:43:25 GMT Pragma: - no-cache RequestId: - - 7c6f577d-700e-4d58-8d19-13e48581b6fc + - a0556e96-19e5-4bd6-96b7-ba131f2b77a3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -471,9 +480,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/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True response: body: string: '{"value": []}' @@ -489,11 +498,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:25:23 GMT + - Wed, 20 May 2026 08:43:25 GMT Pragma: - no-cache RequestId: - - bcc87c81-7c84-4d9a-aadb-497079ef8e1e + - 9e5a0e02-2817-459e-b2ff-33d4e0193dcd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -519,49 +528,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/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True - response: - body: - string: '{"requestId": "00e414cc-a48a-4bbd-a3ff-077d3143d085", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 7:25:36 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:25:23 GMT - RequestId: - - 00e414cc-a48a-4bbd-a3ff-077d3143d085 - Retry-After: - - '12' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True response: body: string: '{"value": []}' @@ -577,11 +546,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:25:37 GMT + - Wed, 20 May 2026 08:43:26 GMT Pragma: - no-cache RequestId: - - afcac472-8963-47e9-8dcd-151e47826f52 + - 9eef1d94-fc53-4dec-860e-6440f2a51855 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -605,17 +574,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders response: body: - string: '{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName": "fabcli000003", - "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}' + string: '{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName": "fabcli000003", + "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -624,17 +593,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '133' + - '132' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:25:38 GMT + - Wed, 20 May 2026 08:43:26 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders/e0125fd8-b9c7-48ba-bf91-7d8f33273566 + - https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders/63b4dc3b-8cfd-46d9-9310-8a78fd751ff5 Pragma: - no-cache RequestId: - - 2c26e161-e9c6-4a6b-bbe7-2126487e7a55 + - ab6b4e6e-618c-49fe-9712-752cc2f803af Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -660,16 +629,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -678,15 +650,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:25:38 GMT + - Wed, 20 May 2026 08:43:27 GMT Pragma: - no-cache RequestId: - - c3bff748-2bf9-4497-8ece-4a49499c5e7e + - 9b540d3e-62da-4d3b-818d-0f45bc008e3f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -712,9 +684,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/1da9d768-e2c2-494b-9eea-755c6a674b9a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/items response: body: string: '{"value": []}' @@ -730,11 +702,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:25:39 GMT + - Wed, 20 May 2026 08:43:28 GMT Pragma: - no-cache RequestId: - - a4f25696-f2a5-4f64-99b8-c8e9c5ef7edd + - c9b272ff-259c-40af-8038-e394c0a8b323 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -760,9 +732,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/1da9d768-e2c2-494b-9eea-755c6a674b9a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/items response: body: string: '{"value": []}' @@ -778,11 +750,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:25:40 GMT + - Wed, 20 May 2026 08:43:28 GMT Pragma: - no-cache RequestId: - - 33239db3-f603-45d7-89c2-c80e59c1b6de + - 78edede9-f93f-40cb-8d7f-ee30fcd2493a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -797,7 +769,9 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000004", "type": "Notebook", "folderId": null, "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", "payloadType": "InlineBase64"}]}}' + body: '{"displayName": "fabcli000004", "type": "Notebook", "folderId": null, "definition": + {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", + "payloadType": "InlineBase64"}]}}' headers: Accept: - '*/*' @@ -807,13 +781,12 @@ interactions: - keep-alive Content-Length: - '731' - 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/1da9d768-e2c2-494b-9eea-755c6a674b9a/notebooks + uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/notebooks response: body: string: 'null' @@ -829,15 +802,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:25:43 GMT + - Wed, 20 May 2026 08:43:31 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f24194d3-9947-4492-ab70-ab12cb174e0d + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d016ea19-1c6d-4c62-a06b-ddfa7296acb3 Pragma: - no-cache RequestId: - - 21920e0d-b125-4be1-93b9-7e82ba8315f8 + - bb7f9314-e34c-4e7f-9567-d143b3108edd Retry-After: - '20' Strict-Transport-Security: @@ -851,7 +824,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - f24194d3-9947-4492-ab70-ab12cb174e0d + - d016ea19-1c6d-4c62-a06b-ddfa7296acb3 status: code: 202 message: Accepted @@ -867,13 +840,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f24194d3-9947-4492-ab70-ab12cb174e0d + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d016ea19-1c6d-4c62-a06b-ddfa7296acb3 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:25:42.2991393", - "lastUpdatedTimeUtc": "2026-02-06T07:25:44.1274767", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:43:30.3514019", + "lastUpdatedTimeUtc": "2026-05-20T08:43:31.8524048", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -887,13 +860,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:26:04 GMT + - Wed, 20 May 2026 08:43:51 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f24194d3-9947-4492-ab70-ab12cb174e0d/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d016ea19-1c6d-4c62-a06b-ddfa7296acb3/result Pragma: - no-cache RequestId: - - 4c78501a-ab3a-4979-b40b-eabdb81d5103 + - f19ec93f-9cc0-48f0-8f9f-c89536b9aef5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -901,7 +874,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - f24194d3-9947-4492-ab70-ab12cb174e0d + - d016ea19-1c6d-4c62-a06b-ddfa7296acb3 status: code: 200 message: OK @@ -917,14 +890,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f24194d3-9947-4492-ab70-ab12cb174e0d/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d016ea19-1c6d-4c62-a06b-ddfa7296acb3/result response: body: - string: '{"id": "89030c7d-37d9-4bb7-8008-e2e01f6983f9", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "1da9d768-e2c2-494b-9eea-755c6a674b9a"}' + string: '{"id": "a12d237a-af9e-4300-8e53-2acb181fd1b9", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c"}' headers: Access-Control-Expose-Headers: - RequestId @@ -935,11 +907,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 07:26:05 GMT + - Wed, 20 May 2026 08:43:52 GMT Pragma: - no-cache RequestId: - - ba49db75-923a-49e0-ac57-fe7c37c6a0a6 + - d51fe363-2096-4a64-b4e9-e7ab63cad260 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -963,16 +935,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -981,15 +956,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:26:06 GMT + - Wed, 20 May 2026 08:43:52 GMT Pragma: - no-cache RequestId: - - e5641686-2455-483e-8aa3-e8d979593495 + - a4c484c5-15d6-4ee2-a4ff-a5f4f8b5bc91 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1015,14 +990,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/1da9d768-e2c2-494b-9eea-755c6a674b9a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/items response: body: - string: '{"value": [{"id": "89030c7d-37d9-4bb7-8008-e2e01f6983f9", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "1da9d768-e2c2-494b-9eea-755c6a674b9a"}]}' + string: '{"value": [{"id": "a12d237a-af9e-4300-8e53-2acb181fd1b9", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1031,15 +1005,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '164' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:26:07 GMT + - Wed, 20 May 2026 08:43:53 GMT Pragma: - no-cache RequestId: - - a426fd75-0e5a-43c5-bad8-69d228a3e411 + - 280f3ef9-119b-4404-a29b-62eb5e0fa00b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1065,14 +1039,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/1da9d768-e2c2-494b-9eea-755c6a674b9a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/items response: body: - string: '{"value": [{"id": "89030c7d-37d9-4bb7-8008-e2e01f6983f9", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "1da9d768-e2c2-494b-9eea-755c6a674b9a"}]}' + string: '{"value": [{"id": "a12d237a-af9e-4300-8e53-2acb181fd1b9", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1081,15 +1054,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '164' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:26:07 GMT + - Wed, 20 May 2026 08:43:54 GMT Pragma: - no-cache RequestId: - - a7dfd9c2-0e7a-4eff-a013-a8fd8ad8e479 + - 153d4903-b8a3-4972-87b1-1ec24c3e459f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1114,18 +1087,16 @@ interactions: - keep-alive Content-Length: - '77' - 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/1da9d768-e2c2-494b-9eea-755c6a674b9a/dataPipelines + uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/dataPipelines response: body: - string: '{"id": "af747ab6-475e-462c-912e-5599efb31307", "type": "DataPipeline", - "displayName": "fabcli000005", "workspaceId": - "1da9d768-e2c2-494b-9eea-755c6a674b9a"}' + string: '{"id": "b93e315e-2c42-4433-8224-de473412064a", "type": "DataPipeline", + "displayName": "fabcli000005", "description": "", "workspaceId": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1134,17 +1105,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '158' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:26:13 GMT + - Wed, 20 May 2026 08:44:00 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 308cab5d-e0e8-4d8c-a94f-5553b65445f6 + - 25681abb-bc8e-4d08-a47c-3a33a485e573 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1170,16 +1141,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1188,15 +1162,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:26:14 GMT + - Wed, 20 May 2026 08:44:01 GMT Pragma: - no-cache RequestId: - - e0af35cc-184b-4477-98d1-228703e64f81 + - 8ef0a6ee-68c0-4563-ac31-2ce64bb4e73e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1222,16 +1196,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1240,15 +1217,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:26:15 GMT + - Wed, 20 May 2026 08:44:01 GMT Pragma: - no-cache RequestId: - - a6c92590-3969-4880-aa11-f9f7f83675ef + - 406f0e1b-9d85-4f7d-9f60-baf9df2ac2ff Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1274,13 +1251,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/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True response: body: - string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName": - "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}' + string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName": + "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1293,11 +1270,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:26:16 GMT + - Wed, 20 May 2026 08:44:02 GMT Pragma: - no-cache RequestId: - - f2d5833d-fa71-47a7-82f1-da24472bc95b + - 25cf2235-771d-4284-897f-3827c7ea7d7c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1323,15 +1300,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/1da9d768-e2c2-494b-9eea-755c6a674b9a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/items response: body: - string: '{"value": [{"id": "89030c7d-37d9-4bb7-8008-e2e01f6983f9", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "1da9d768-e2c2-494b-9eea-755c6a674b9a"}, {"id": "af747ab6-475e-462c-912e-5599efb31307", - "type": "DataPipeline", "displayName": "fabcli000005", "workspaceId": "1da9d768-e2c2-494b-9eea-755c6a674b9a"}]}' + string: '{"value": [{"id": "a12d237a-af9e-4300-8e53-2acb181fd1b9", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c"}, + {"id": "b93e315e-2c42-4433-8224-de473412064a", "type": "DataPipeline", "displayName": + "fabcli000005", "description": "", "workspaceId": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1340,15 +1317,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '230' + - '220' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:26:17 GMT + - Wed, 20 May 2026 08:44:03 GMT Pragma: - no-cache RequestId: - - a69d3c9d-c0c6-4adb-9bad-1218dfaf20d9 + - 4111b8a6-5856-4240-b8df-e4bf96778651 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1374,9 +1351,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/1da9d768-e2c2-494b-9eea-755c6a674b9a/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/folders?recursive=True response: body: string: '{"value": []}' @@ -1392,11 +1369,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:26:18 GMT + - Wed, 20 May 2026 08:44:04 GMT Pragma: - no-cache RequestId: - - 6a1fab08-e862-48a3-9d58-ab2d694631fc + - 2779ef4b-e22a-4f52-82e8-27d6f6b4c601 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1422,16 +1399,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1440,15 +1420,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:26:18 GMT + - Wed, 20 May 2026 08:44:05 GMT Pragma: - no-cache RequestId: - - b2b56267-6346-4404-9a78-f08978121547 + - ac533ce4-7fbc-4ac5-a46b-29cee783ef34 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1474,13 +1454,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/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True response: body: - string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName": - "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}' + string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName": + "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1493,11 +1473,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:26:19 GMT + - Wed, 20 May 2026 08:44:06 GMT Pragma: - no-cache RequestId: - - 97ff1e94-90d0-4128-a3a3-e526c8593b6c + - 68f59b0f-53e0-4fce-bb54-926bb95569d3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1523,9 +1503,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/07c9486c-6ebb-4741-a86d-407baefbf5e2/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/items response: body: string: '{"value": []}' @@ -1541,11 +1521,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:26:20 GMT + - Wed, 20 May 2026 08:44:07 GMT Pragma: - no-cache RequestId: - - 06f0d0dd-520f-4de7-8b39-c095017ff231 + - 200e8ea9-4e28-445c-9333-f3ca2da5c3a4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1571,9 +1551,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/07c9486c-6ebb-4741-a86d-407baefbf5e2/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/items response: body: string: '{"value": []}' @@ -1589,11 +1569,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:26:21 GMT + - Wed, 20 May 2026 08:44:07 GMT Pragma: - no-cache RequestId: - - a0fdf06d-8aaf-43ab-ba5f-152209f48ce9 + - ddcd8c77-e3a5-48ce-8780-c3b91482c81a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1619,9 +1599,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/07c9486c-6ebb-4741-a86d-407baefbf5e2/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/items response: body: string: '{"value": []}' @@ -1637,11 +1617,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:26:22 GMT + - Wed, 20 May 2026 08:44:08 GMT Pragma: - no-cache RequestId: - - 897821e0-381c-46e3-bd06-7c89e5223ca6 + - 6aa6c9e3-1c71-4dc7-9435-f68e48920ea8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1667,14 +1647,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/1da9d768-e2c2-494b-9eea-755c6a674b9a/items/89030c7d-37d9-4bb7-8008-e2e01f6983f9 + uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/items/a12d237a-af9e-4300-8e53-2acb181fd1b9 response: body: - string: '{"id": "89030c7d-37d9-4bb7-8008-e2e01f6983f9", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "1da9d768-e2c2-494b-9eea-755c6a674b9a"}' + string: '{"id": "a12d237a-af9e-4300-8e53-2acb181fd1b9", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1683,17 +1662,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '164' + - '152' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:26:22 GMT + - Wed, 20 May 2026 08:44:09 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 91d085fe-7dff-4f56-9b90-eb262f4d35a0 + - a342b90a-07a0-4cc1-9cd1-d19906fd14e0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1721,9 +1700,9 @@ interactions: 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/1da9d768-e2c2-494b-9eea-755c6a674b9a/items/89030c7d-37d9-4bb7-8008-e2e01f6983f9/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/items/a12d237a-af9e-4300-8e53-2acb181fd1b9/getDefinition response: body: string: 'null' @@ -1739,13 +1718,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:26:22 GMT + - Wed, 20 May 2026 08:44:10 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3694b858-3f2b-4f9e-aec4-d7cd51918e68 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a71b9692-3717-4f0d-984c-2cbbc86bdd37 Pragma: - no-cache RequestId: - - cbea8e16-4b65-4a1c-b83d-ebd371c94bdf + - ebf498d7-03d4-40a7-b893-73551f36e291 Retry-After: - '20' Strict-Transport-Security: @@ -1759,7 +1738,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 3694b858-3f2b-4f9e-aec4-d7cd51918e68 + - a71b9692-3717-4f0d-984c-2cbbc86bdd37 status: code: 202 message: Accepted @@ -1775,13 +1754,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3694b858-3f2b-4f9e-aec4-d7cd51918e68 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a71b9692-3717-4f0d-984c-2cbbc86bdd37 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:26:23.8243461", - "lastUpdatedTimeUtc": "2026-02-06T07:26:24.1534572", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:44:11.3323096", + "lastUpdatedTimeUtc": "2026-05-20T08:44:12.0707731", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1795,13 +1774,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:26:45 GMT + - Wed, 20 May 2026 08:44:32 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3694b858-3f2b-4f9e-aec4-d7cd51918e68/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a71b9692-3717-4f0d-984c-2cbbc86bdd37/result Pragma: - no-cache RequestId: - - 07fadf32-80c1-427c-9dd1-59c748de5eb1 + - 948768b6-5261-4311-b8c7-c7b31c27ded5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1809,7 +1788,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 3694b858-3f2b-4f9e-aec4-d7cd51918e68 + - a71b9692-3717-4f0d-984c-2cbbc86bdd37 status: code: 200 message: OK @@ -1825,14 +1804,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3694b858-3f2b-4f9e-aec4-d7cd51918e68/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a71b9692-3717-4f0d-984c-2cbbc86bdd37/result response: body: string: '{"definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -1844,11 +1823,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 07:26:45 GMT + - Wed, 20 May 2026 08:44:32 GMT Pragma: - no-cache RequestId: - - 0251b27a-d025-4176-b2c1-7bdbcf440958 + - 4ceaf0f7-9413-4025-bb11-e93e94540774 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1861,10 +1840,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "Notebook", "displayName": "fabcli000004", - "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", - "payloadType": "InlineBase64"}]}, "folderId": "e0125fd8-b9c7-48ba-bf91-7d8f33273566"}' + body: '{"type": "Notebook", "displayName": "fabcli000004", "definition": {"parts": + [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDQiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}]}, "folderId": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5"}' headers: Accept: - '*/*' @@ -1873,14 +1852,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1286' - + - '1238' 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/07c9486c-6ebb-4741-a86d-407baefbf5e2/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/items response: body: string: 'null' @@ -1896,15 +1874,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:26:48 GMT + - Wed, 20 May 2026 08:44:34 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1bd7a048-e1c9-4b1f-8c7a-621ca89f1332 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cc86124f-6ee0-4874-8342-edae249b8a50 Pragma: - no-cache RequestId: - - d6c5bee6-4268-4ba8-a444-8a4bc5dbb090 + - 7bc6de06-56b5-4482-a563-82957bfb2910 Retry-After: - '20' Strict-Transport-Security: @@ -1918,7 +1896,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 1bd7a048-e1c9-4b1f-8c7a-621ca89f1332 + - cc86124f-6ee0-4874-8342-edae249b8a50 status: code: 202 message: Accepted @@ -1934,13 +1912,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1bd7a048-e1c9-4b1f-8c7a-621ca89f1332 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cc86124f-6ee0-4874-8342-edae249b8a50 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:26:47.7201897", - "lastUpdatedTimeUtc": "2026-02-06T07:26:49.5642741", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:44:34.2063211", + "lastUpdatedTimeUtc": "2026-05-20T08:44:35.6979496", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1954,13 +1932,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:27:09 GMT + - Wed, 20 May 2026 08:44:54 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1bd7a048-e1c9-4b1f-8c7a-621ca89f1332/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cc86124f-6ee0-4874-8342-edae249b8a50/result Pragma: - no-cache RequestId: - - 6d01796a-7cf1-43b0-b46e-e92cf786133b + - 2f81e4b1-5703-4f2f-8690-2ff40f941a9d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1968,7 +1946,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 1bd7a048-e1c9-4b1f-8c7a-621ca89f1332 + - cc86124f-6ee0-4874-8342-edae249b8a50 status: code: 200 message: OK @@ -1984,14 +1962,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/1bd7a048-e1c9-4b1f-8c7a-621ca89f1332/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cc86124f-6ee0-4874-8342-edae249b8a50/result response: body: - string: '{"id": "974586fe-2df8-4778-9b64-a44b2df06ec8", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "07c9486c-6ebb-4741-a86d-407baefbf5e2", "folderId": "e0125fd8-b9c7-48ba-bf91-7d8f33273566"}' + string: '{"id": "3e210ca4-03bc-48ef-9e62-332319146bc2", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", + "folderId": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5"}' headers: Access-Control-Expose-Headers: - RequestId @@ -2002,11 +1980,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 07:27:11 GMT + - Wed, 20 May 2026 08:44:56 GMT Pragma: - no-cache RequestId: - - 5b2046a4-02b3-4872-91b3-76259a740489 + - 4d577bf7-58cc-44a3-8a71-e26955ca388f Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -2030,16 +2008,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2048,15 +2029,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:27:11 GMT + - Wed, 20 May 2026 08:44:57 GMT Pragma: - no-cache RequestId: - - 3da8fc87-5baa-4f6e-9e7e-11b9a5668f34 + - 6999cc4f-ee25-4f0a-b605-03e1fd2c0109 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2082,13 +2063,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/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True response: body: - string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName": - "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}' + string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName": + "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2101,11 +2082,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:27:12 GMT + - Wed, 20 May 2026 08:44:57 GMT Pragma: - no-cache RequestId: - - 3f8897e1-0bf3-4324-894b-745da609d161 + - dea4bd53-e19b-4e4d-bc67-13c409822232 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2131,14 +2112,14 @@ 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/07c9486c-6ebb-4741-a86d-407baefbf5e2/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/items response: body: - string: '{"value": [{"id": "974586fe-2df8-4778-9b64-a44b2df06ec8", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "07c9486c-6ebb-4741-a86d-407baefbf5e2", "folderId": "e0125fd8-b9c7-48ba-bf91-7d8f33273566"}]}' + string: '{"value": [{"id": "3e210ca4-03bc-48ef-9e62-332319146bc2", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", + "folderId": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2147,15 +2128,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '207' + - '197' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:27:13 GMT + - Wed, 20 May 2026 08:44:59 GMT Pragma: - no-cache RequestId: - - 99d13d17-9efb-4103-ba27-e8e9b01d890c + - b87b710e-5258-4b97-838f-b0a151678989 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2181,13 +2162,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/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True response: body: - string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName": - "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}' + string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName": + "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2200,11 +2181,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:27:13 GMT + - Wed, 20 May 2026 08:45:00 GMT Pragma: - no-cache RequestId: - - 0d63ae38-73e5-4370-9dd7-ca16666af64b + - 699ef376-1e3b-4878-9baa-55da5c2397bd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2230,14 +2211,14 @@ 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/07c9486c-6ebb-4741-a86d-407baefbf5e2/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/items response: body: - string: '{"value": [{"id": "974586fe-2df8-4778-9b64-a44b2df06ec8", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "07c9486c-6ebb-4741-a86d-407baefbf5e2", "folderId": "e0125fd8-b9c7-48ba-bf91-7d8f33273566"}]}' + string: '{"value": [{"id": "3e210ca4-03bc-48ef-9e62-332319146bc2", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", + "folderId": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2246,15 +2227,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '207' + - '197' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:27:14 GMT + - Wed, 20 May 2026 08:45:01 GMT Pragma: - no-cache RequestId: - - cf59df05-59ef-454a-a63a-dca56c632c27 + - 8999c9a4-0e1d-4fbf-9725-143fd26c1d4b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2280,13 +2261,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/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True response: body: - string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName": - "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}' + string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName": + "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2299,11 +2280,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:27:15 GMT + - Wed, 20 May 2026 08:45:02 GMT Pragma: - no-cache RequestId: - - cc7d8cc3-ebcb-42f3-a707-7c0ae9d1d38d + - ff3f355c-04af-4f63-8719-8efbf674073e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2329,14 +2310,14 @@ 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/07c9486c-6ebb-4741-a86d-407baefbf5e2/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/items response: body: - string: '{"value": [{"id": "974586fe-2df8-4778-9b64-a44b2df06ec8", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "07c9486c-6ebb-4741-a86d-407baefbf5e2", "folderId": "e0125fd8-b9c7-48ba-bf91-7d8f33273566"}]}' + string: '{"value": [{"id": "3e210ca4-03bc-48ef-9e62-332319146bc2", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", + "folderId": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2345,15 +2326,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '207' + - '197' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:27:16 GMT + - Wed, 20 May 2026 08:45:02 GMT Pragma: - no-cache RequestId: - - dc089a16-d19a-481f-b842-73557ae84066 + - bca88811-93eb-4615-8481-49d0aad15d67 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2379,13 +2360,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/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True response: body: - string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName": - "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}' + string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName": + "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2398,11 +2379,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:27:16 GMT + - Wed, 20 May 2026 08:45:03 GMT Pragma: - no-cache RequestId: - - 5bb7b362-eda1-42c1-b67c-81102404aeb1 + - bce55272-b76a-4645-a114-5c1d6c160b58 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2428,14 +2409,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/1da9d768-e2c2-494b-9eea-755c6a674b9a/items/af747ab6-475e-462c-912e-5599efb31307 + uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/items/b93e315e-2c42-4433-8224-de473412064a response: body: - string: '{"id": "af747ab6-475e-462c-912e-5599efb31307", "type": "DataPipeline", - "displayName": "fabcli000005", "workspaceId": - "1da9d768-e2c2-494b-9eea-755c6a674b9a"}' + string: '{"id": "b93e315e-2c42-4433-8224-de473412064a", "type": "DataPipeline", + "displayName": "fabcli000005", "description": "", "workspaceId": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -2444,17 +2424,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '158' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:27:18 GMT + - Wed, 20 May 2026 08:45:04 GMT ETag: - '""' Pragma: - no-cache RequestId: - - bc7d101d-4b7c-4eb1-a414-c6be84915070 + - bc430f8a-8eff-436b-ab1f-1c4376d4eac1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2482,14 +2462,14 @@ interactions: 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/1da9d768-e2c2-494b-9eea-755c6a674b9a/items/af747ab6-475e-462c-912e-5599efb31307/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/items/b93e315e-2c42-4433-8224-de473412064a/getDefinition response: body: string: '{"definition": {"parts": [{"path": "pipeline-content.json", "payload": "ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==", "payloadType": - "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA1IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA1IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -2499,15 +2479,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '457' + - '440' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:27:18 GMT + - Wed, 20 May 2026 08:45:05 GMT Pragma: - no-cache RequestId: - - e8bc3c4c-6fbf-41ff-8254-0c9ab7bae10b + - 8e9050e2-45ea-4019-87cb-e52979dc6879 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2522,11 +2502,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "DataPipeline", "displayName": - "fabcli000005", "definition": {"parts": [{"path": "pipeline-content.json", "payload": - "ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==", "payloadType": - "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA1IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", - "payloadType": "InlineBase64"}]}, "folderId": "e0125fd8-b9c7-48ba-bf91-7d8f33273566"}' + body: '{"type": "DataPipeline", "displayName": "fabcli000005", "definition": {"parts": + [{"path": "pipeline-content.json", "payload": "ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA1IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "payloadType": "InlineBase64"}]}, "folderId": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5"}' headers: Accept: - '*/*' @@ -2535,19 +2514,18 @@ interactions: Connection: - keep-alive Content-Length: - - '812' - + - '760' 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/07c9486c-6ebb-4741-a86d-407baefbf5e2/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/items response: body: - string: '{"id": "835cd2cc-6db6-4d2c-b8f0-5ad7b8f58afe", "type": "DataPipeline", - "displayName": "fabcli000005", "workspaceId": - "07c9486c-6ebb-4741-a86d-407baefbf5e2", "folderId": "e0125fd8-b9c7-48ba-bf91-7d8f33273566"}' + string: '{"id": "d0c5f464-3d38-4f8e-b7c4-9afc8be801b0", "type": "DataPipeline", + "displayName": "fabcli000005", "description": "", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", + "folderId": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -2556,17 +2534,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '196' + - '186' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:27:23 GMT + - Wed, 20 May 2026 08:45:12 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 7ee9b83c-0fbb-4aa7-98fa-a4bd9d9a0d19 + - 8b8528b7-648d-4fa4-9d21-2b81d81f03ad Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2592,16 +2570,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2610,15 +2591,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:27:25 GMT + - Wed, 20 May 2026 08:45:13 GMT Pragma: - no-cache RequestId: - - 0e04f4ab-cb59-4ee2-a3ac-78e3d9ebcb30 + - 8ef40ea2-434f-4800-a088-2e6ae8a9b14b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2644,15 +2625,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/1da9d768-e2c2-494b-9eea-755c6a674b9a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/items response: body: - string: '{"value": [{"id": "89030c7d-37d9-4bb7-8008-e2e01f6983f9", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "1da9d768-e2c2-494b-9eea-755c6a674b9a"}, {"id": "af747ab6-475e-462c-912e-5599efb31307", - "type": "DataPipeline", "displayName": "fabcli000005", "workspaceId": "1da9d768-e2c2-494b-9eea-755c6a674b9a"}]}' + string: '{"value": [{"id": "a12d237a-af9e-4300-8e53-2acb181fd1b9", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c"}, + {"id": "b93e315e-2c42-4433-8224-de473412064a", "type": "DataPipeline", "displayName": + "fabcli000005", "description": "", "workspaceId": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2661,15 +2642,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '230' + - '220' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:27:25 GMT + - Wed, 20 May 2026 08:45:13 GMT Pragma: - no-cache RequestId: - - 67a802d4-479f-48d0-b5e1-67313e7aecfc + - c7552109-bb67-4e19-b50d-47cb52f8fb18 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2695,9 +2676,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/1da9d768-e2c2-494b-9eea-755c6a674b9a/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/folders?recursive=True response: body: string: '{"value": []}' @@ -2713,11 +2694,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:27:26 GMT + - Wed, 20 May 2026 08:45:14 GMT Pragma: - no-cache RequestId: - - de156314-bee4-4f8e-ab41-5bffaf8f9b8a + - 4f8af41f-adc0-47bf-9f9f-ad053accc57f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2743,16 +2724,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2761,15 +2745,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:27:27 GMT + - Wed, 20 May 2026 08:45:15 GMT Pragma: - no-cache RequestId: - - 0bb14726-78e2-4003-8605-5da0abf5b078 + - 44566df5-1094-446f-b06d-24bc2ca7f902 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2795,17 +2779,16 @@ 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/07c9486c-6ebb-4741-a86d-407baefbf5e2/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/items response: body: - string: '{"value": [{"id": "974586fe-2df8-4778-9b64-a44b2df06ec8", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "07c9486c-6ebb-4741-a86d-407baefbf5e2", "folderId": "e0125fd8-b9c7-48ba-bf91-7d8f33273566"}, - {"id": "835cd2cc-6db6-4d2c-b8f0-5ad7b8f58afe", "type": "DataPipeline", "displayName": - "fabcli000005", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2", - "folderId": "e0125fd8-b9c7-48ba-bf91-7d8f33273566"}]}' + string: '{"value": [{"id": "3e210ca4-03bc-48ef-9e62-332319146bc2", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", + "folderId": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5"}, {"id": "d0c5f464-3d38-4f8e-b7c4-9afc8be801b0", + "type": "DataPipeline", "displayName": "fabcli000005", "description": "", + "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "folderId": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2814,15 +2797,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '259' + - '250' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:27:27 GMT + - Wed, 20 May 2026 08:45:15 GMT Pragma: - no-cache RequestId: - - afe96f7d-f22b-48cb-9f57-355c410b36d4 + - 3bb16283-336f-48c4-9cff-ca9252b31e37 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2848,13 +2831,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/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True response: body: - string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName": - "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}' + string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName": + "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2867,11 +2850,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:27:28 GMT + - Wed, 20 May 2026 08:45:17 GMT Pragma: - no-cache RequestId: - - f00aa269-1638-4f3f-a9ff-2f748187d65c + - 5943c00f-c9c7-4076-9ca0-e82368b3478a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2897,13 +2880,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/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True response: body: - string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName": - "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}' + string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName": + "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2916,11 +2899,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:27:30 GMT + - Wed, 20 May 2026 08:45:17 GMT Pragma: - no-cache RequestId: - - 8b97a35c-f534-49c9-a853-1ffab4a32978 + - 460f1a9a-89a8-4204-a13a-251e02831c10 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2946,13 +2929,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/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True response: body: - string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName": - "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}' + string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName": + "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2965,11 +2948,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:27:30 GMT + - Wed, 20 May 2026 08:45:18 GMT Pragma: - no-cache RequestId: - - 69df5121-33eb-4194-a0ed-5d763ff7b6eb + - 14d016d8-c3d8-4a83-8043-ba961a1b9440 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2995,16 +2978,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3013,15 +2999,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:27:31 GMT + - Wed, 20 May 2026 08:45:20 GMT Pragma: - no-cache RequestId: - - d34adf68-f7b2-4711-bdeb-7a13b962a680 + - 7863a6e8-83b7-449f-9d4b-c0e23fc3d706 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3047,13 +3033,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/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True response: body: - string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName": - "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}' + string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName": + "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3066,11 +3052,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:27:31 GMT + - Wed, 20 May 2026 08:45:20 GMT Pragma: - no-cache RequestId: - - ce1884a7-8e54-4176-a34a-8468fa68cb06 + - f3c4837f-62d4-4747-976d-26edd0cf0327 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3096,17 +3082,16 @@ 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/07c9486c-6ebb-4741-a86d-407baefbf5e2/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/items response: body: - string: '{"value": [{"id": "974586fe-2df8-4778-9b64-a44b2df06ec8", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "07c9486c-6ebb-4741-a86d-407baefbf5e2", "folderId": "e0125fd8-b9c7-48ba-bf91-7d8f33273566"}, - {"id": "835cd2cc-6db6-4d2c-b8f0-5ad7b8f58afe", "type": "DataPipeline", "displayName": - "fabcli000005", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2", - "folderId": "e0125fd8-b9c7-48ba-bf91-7d8f33273566"}]}' + string: '{"value": [{"id": "3e210ca4-03bc-48ef-9e62-332319146bc2", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", + "folderId": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5"}, {"id": "d0c5f464-3d38-4f8e-b7c4-9afc8be801b0", + "type": "DataPipeline", "displayName": "fabcli000005", "description": "", + "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "folderId": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3115,15 +3100,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '259' + - '250' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:27:32 GMT + - Wed, 20 May 2026 08:45:21 GMT Pragma: - no-cache RequestId: - - 4a10befe-8ab1-4679-a28f-e36cc0a4d475 + - 456c4054-20a0-427d-b454-683b3705d687 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3149,13 +3134,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/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True response: body: - string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName": - "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}' + string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName": + "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3168,11 +3153,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:27:33 GMT + - Wed, 20 May 2026 08:45:21 GMT Pragma: - no-cache RequestId: - - 465627b3-771c-40df-8bca-bf7740d9e30a + - 48bcd49a-5352-426b-81d1-af0803e678d1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3198,53 +3183,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/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True response: body: - string: '{"requestId": "15a3e6d4-bbf4-4106-a9ff-47074d49e7e0", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 7:28:13 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:27:33 GMT - RequestId: - - 15a3e6d4-bbf4-4106-a9ff-47074d49e7e0 - Retry-After: - - '39' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True - response: - body: - string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName": - "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}' + string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName": + "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3257,11 +3202,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:28:15 GMT + - Wed, 20 May 2026 08:45:22 GMT Pragma: - no-cache RequestId: - - d71d7df4-72e9-436e-857c-fd3fe5ed58a6 + - 553e026e-8906-46d1-9fd4-4c99d6758d39 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3287,13 +3232,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/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True response: body: - string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName": - "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}' + string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName": + "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3306,11 +3251,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:28:16 GMT + - Wed, 20 May 2026 08:45:24 GMT Pragma: - no-cache RequestId: - - 8dce992a-a41e-423c-88c1-fcc3f34fd9b1 + - 5373bfdd-2a4f-4bc8-9477-f82fd39f2c38 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3336,16 +3281,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3354,15 +3302,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:28:17 GMT + - Wed, 20 May 2026 08:45:24 GMT Pragma: - no-cache RequestId: - - 1f52b7cf-84f6-4ef4-8139-aa527ba7fc90 + - b31f5b0d-b704-445f-b0df-0df8e270adf3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3388,13 +3336,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/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True response: body: - string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName": - "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}' + string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName": + "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3407,11 +3355,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:28:18 GMT + - Wed, 20 May 2026 08:45:25 GMT Pragma: - no-cache RequestId: - - 5a98f235-64dd-4c5f-894f-981ba67afffb + - 990949da-7217-4cc8-b700-c5d06bac6d4a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3437,17 +3385,16 @@ 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/07c9486c-6ebb-4741-a86d-407baefbf5e2/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/items response: body: - string: '{"value": [{"id": "974586fe-2df8-4778-9b64-a44b2df06ec8", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "07c9486c-6ebb-4741-a86d-407baefbf5e2", "folderId": "e0125fd8-b9c7-48ba-bf91-7d8f33273566"}, - {"id": "835cd2cc-6db6-4d2c-b8f0-5ad7b8f58afe", "type": "DataPipeline", "displayName": - "fabcli000005", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2", - "folderId": "e0125fd8-b9c7-48ba-bf91-7d8f33273566"}]}' + string: '{"value": [{"id": "3e210ca4-03bc-48ef-9e62-332319146bc2", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", + "folderId": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5"}, {"id": "d0c5f464-3d38-4f8e-b7c4-9afc8be801b0", + "type": "DataPipeline", "displayName": "fabcli000005", "description": "", + "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "folderId": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3456,15 +3403,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '259' + - '250' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:28:18 GMT + - Wed, 20 May 2026 08:45:26 GMT Pragma: - no-cache RequestId: - - bdc18190-8c12-4f47-a2fc-0f1dbc892397 + - e2309044-e23b-4ec4-974f-97783809a115 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3490,13 +3437,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/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True response: body: - string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName": - "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}' + string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName": + "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3509,11 +3456,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:28:20 GMT + - Wed, 20 May 2026 08:45:27 GMT Pragma: - no-cache RequestId: - - 550f2ce1-09dc-4364-b934-be1b81181acf + - 76ba1dd7-44e8-4aa9-a693-b05855f749f7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3539,13 +3486,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/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True response: body: - string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName": - "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}' + string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName": + "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3558,11 +3505,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:28:20 GMT + - Wed, 20 May 2026 08:45:28 GMT Pragma: - no-cache RequestId: - - 65eefc11-005b-4557-bc26-987141b88d52 + - 759064c6-021f-4b89-a8c8-dc694293c78e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3590,9 +3537,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/07c9486c-6ebb-4741-a86d-407baefbf5e2/items/974586fe-2df8-4778-9b64-a44b2df06ec8 + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/items/3e210ca4-03bc-48ef-9e62-332319146bc2 response: body: string: '' @@ -3608,11 +3555,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:28:22 GMT + - Wed, 20 May 2026 08:45:29 GMT Pragma: - no-cache RequestId: - - 34572e24-f930-402a-a8cb-09274c04bcb4 + - c646b13e-c6fc-445d-8547-a13f9abb43db Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3638,16 +3585,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3656,15 +3606,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:28:22 GMT + - Wed, 20 May 2026 08:45:29 GMT Pragma: - no-cache RequestId: - - 15c95059-d4d5-4502-94bd-11fd0e8f99ab + - 07e9e837-2e5c-452a-abc1-b1aa6325e8d5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3690,13 +3640,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/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True response: body: - string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName": - "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}' + string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName": + "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3709,11 +3659,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:28:22 GMT + - Wed, 20 May 2026 08:45:30 GMT Pragma: - no-cache RequestId: - - 157d2938-53d0-408c-815f-2937b27c4db0 + - 4dc9e44c-9da4-48e8-99a6-970a1300c8ba Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3739,14 +3689,14 @@ 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/07c9486c-6ebb-4741-a86d-407baefbf5e2/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/items response: body: - string: '{"value": [{"id": "835cd2cc-6db6-4d2c-b8f0-5ad7b8f58afe", "type": "DataPipeline", - "displayName": "fabcli000005", "workspaceId": - "07c9486c-6ebb-4741-a86d-407baefbf5e2", "folderId": "e0125fd8-b9c7-48ba-bf91-7d8f33273566"}]}' + string: '{"value": [{"id": "d0c5f464-3d38-4f8e-b7c4-9afc8be801b0", "type": "DataPipeline", + "displayName": "fabcli000005", "description": "", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", + "folderId": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3755,15 +3705,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '210' + - '200' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:28:23 GMT + - Wed, 20 May 2026 08:45:32 GMT Pragma: - no-cache RequestId: - - fee10ed9-4b53-42c3-b927-07d86b1e03af + - 442908fa-2aeb-4a6e-9044-913b18f06712 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3789,13 +3739,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/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True response: body: - string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName": - "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}' + string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName": + "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3808,11 +3758,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:28:24 GMT + - Wed, 20 May 2026 08:45:32 GMT Pragma: - no-cache RequestId: - - 0a6c700d-baae-4158-ad79-331925b5a219 + - ab4fe604-e2c5-44d9-8164-cfb656c10f2e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3840,9 +3790,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/07c9486c-6ebb-4741-a86d-407baefbf5e2/items/835cd2cc-6db6-4d2c-b8f0-5ad7b8f58afe + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/items/d0c5f464-3d38-4f8e-b7c4-9afc8be801b0 response: body: string: '' @@ -3858,11 +3808,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:28:24 GMT + - Wed, 20 May 2026 08:45:33 GMT Pragma: - no-cache RequestId: - - 53355089-ab65-4942-9ebe-fd96fb854e54 + - 8871f2d9-df27-4f0e-a88a-c1742a7f3b77 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3888,16 +3838,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3906,15 +3859,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:28:26 GMT + - Wed, 20 May 2026 08:45:33 GMT Pragma: - no-cache RequestId: - - 1654f8d4-54e5-4a90-a027-27c86900eb04 + - f16e7420-aba3-449a-96de-30ed4ba69e74 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3940,15 +3893,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/1da9d768-e2c2-494b-9eea-755c6a674b9a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/items response: body: - string: '{"value": [{"id": "89030c7d-37d9-4bb7-8008-e2e01f6983f9", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "1da9d768-e2c2-494b-9eea-755c6a674b9a"}, {"id": "af747ab6-475e-462c-912e-5599efb31307", - "type": "DataPipeline", "displayName": "fabcli000005", "workspaceId": "1da9d768-e2c2-494b-9eea-755c6a674b9a"}]}' + string: '{"value": [{"id": "a12d237a-af9e-4300-8e53-2acb181fd1b9", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c"}, + {"id": "b93e315e-2c42-4433-8224-de473412064a", "type": "DataPipeline", "displayName": + "fabcli000005", "description": "", "workspaceId": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3957,15 +3910,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '230' + - '220' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:28:26 GMT + - Wed, 20 May 2026 08:45:34 GMT Pragma: - no-cache RequestId: - - 517ddb90-c5c9-4e98-80fd-74510ceb4fd9 + - bfa5b12b-b6e3-43bb-b75a-1d5c791fcfb7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3993,9 +3946,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/1da9d768-e2c2-494b-9eea-755c6a674b9a/items/af747ab6-475e-462c-912e-5599efb31307 + uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/items/b93e315e-2c42-4433-8224-de473412064a response: body: string: '' @@ -4011,11 +3964,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:28:27 GMT + - Wed, 20 May 2026 08:45:35 GMT Pragma: - no-cache RequestId: - - 57530013-ca66-4635-883b-477f76b343b7 + - c3fed764-238d-4a64-bc86-1a97b16a6db1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4041,16 +3994,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4059,15 +4015,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:28:29 GMT + - Wed, 20 May 2026 08:45:36 GMT Pragma: - no-cache RequestId: - - 4ece2973-0214-45f5-acf1-5fbdef4cc824 + - 9cb688ef-7e00-47d8-a960-546edef86180 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4093,14 +4049,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/1da9d768-e2c2-494b-9eea-755c6a674b9a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/items response: body: - string: '{"value": [{"id": "89030c7d-37d9-4bb7-8008-e2e01f6983f9", "type": "Notebook", - "displayName": "fabcli000004", "workspaceId": - "1da9d768-e2c2-494b-9eea-755c6a674b9a"}]}' + string: '{"value": [{"id": "a12d237a-af9e-4300-8e53-2acb181fd1b9", "type": "Notebook", + "displayName": "fabcli000004", "description": "", "workspaceId": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4109,15 +4064,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '164' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:28:29 GMT + - Wed, 20 May 2026 08:45:37 GMT Pragma: - no-cache RequestId: - - 3ffd7887-1c78-437c-a843-e3064dccf3f9 + - 90cd9693-c8b8-4437-8461-1ad647bb4bc6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4145,9 +4100,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/1da9d768-e2c2-494b-9eea-755c6a674b9a/items/89030c7d-37d9-4bb7-8008-e2e01f6983f9 + uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/items/a12d237a-af9e-4300-8e53-2acb181fd1b9 response: body: string: '' @@ -4163,11 +4118,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:28:30 GMT + - Wed, 20 May 2026 08:45:37 GMT Pragma: - no-cache RequestId: - - dc884192-5aea-484c-8ee4-bb8e51889d9b + - 7e593eb0-ca2b-42fe-ab8f-baad361e01fd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4193,16 +4148,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4211,15 +4169,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:28:31 GMT + - Wed, 20 May 2026 08:45:38 GMT Pragma: - no-cache RequestId: - - 673d0dcd-95c8-4ff6-9eb3-d3a916676cc4 + - 0b1cb55f-1128-4056-9782-a8583ce02e26 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4245,13 +4203,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/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders?recursive=True response: body: - string: '{"value": [{"id": "e0125fd8-b9c7-48ba-bf91-7d8f33273566", "displayName": - "fabcli000003", "workspaceId": "07c9486c-6ebb-4741-a86d-407baefbf5e2"}]}' + string: '{"value": [{"id": "63b4dc3b-8cfd-46d9-9310-8a78fd751ff5", "displayName": + "fabcli000003", "workspaceId": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4264,11 +4222,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:28:31 GMT + - Wed, 20 May 2026 08:45:39 GMT Pragma: - no-cache RequestId: - - 8eed22fc-96fe-427f-9250-c32cc4a61018 + - 5c668d04-8caa-4c20-bb9a-14a8b76bb158 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4296,9 +4254,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/07c9486c-6ebb-4741-a86d-407baefbf5e2/folders/e0125fd8-b9c7-48ba-bf91-7d8f33273566 + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/folders/63b4dc3b-8cfd-46d9-9310-8a78fd751ff5 response: body: string: '' @@ -4314,11 +4272,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:28:32 GMT + - Wed, 20 May 2026 08:45:40 GMT Pragma: - no-cache RequestId: - - 1e298888-7c6b-4752-a83b-449966a8d974 + - df9a7da8-ddf5-4362-a1bf-950f014daa6a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4344,16 +4302,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "1da9d768-e2c2-494b-9eea-755c6a674b9a", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "ecee0171-0dae-4dfc-bb21-ef21b7a3c78c", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4362,15 +4323,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2879' + - '2697' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:28:33 GMT + - Wed, 20 May 2026 08:45:40 GMT Pragma: - no-cache RequestId: - - 15de265e-2322-48aa-b33a-3300e21ec083 + - 17f7507d-1672-4150-9561-f56ba51f4656 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4396,9 +4357,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/1da9d768-e2c2-494b-9eea-755c6a674b9a/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c/items response: body: string: '{"value": []}' @@ -4414,11 +4375,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:28:33 GMT + - Wed, 20 May 2026 08:45:40 GMT Pragma: - no-cache RequestId: - - 949269b1-35d2-4d94-b199-4ae2e1370921 + - 2a09ce61-decd-416e-bd92-aaabeb06de43 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4446,9 +4407,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/1da9d768-e2c2-494b-9eea-755c6a674b9a + uri: https://api.fabric.microsoft.com/v1/workspaces/ecee0171-0dae-4dfc-bb21-ef21b7a3c78c response: body: string: '' @@ -4464,11 +4425,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:28:35 GMT + - Wed, 20 May 2026 08:45:41 GMT Pragma: - no-cache RequestId: - - 4be1a737-2d75-4b12-8d2d-af05ef0345cb + - 5b648d92-ae64-40f1-b894-e847d27b2d7c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4494,15 +4455,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "07c9486c-6ebb-4741-a86d-407baefbf5e2", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d8d15f4a-dad9-4a14-a52b-955fc492a7a4", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4511,15 +4474,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2841' + - '2659' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:28:35 GMT + - Wed, 20 May 2026 08:45:42 GMT Pragma: - no-cache RequestId: - - ffd263ff-499a-4df8-8e1b-78db29e28c36 + - 17669129-4015-4d9f-b3f5-696817b43d7e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4545,9 +4508,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/07c9486c-6ebb-4741-a86d-407baefbf5e2/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4/items response: body: string: '{"value": []}' @@ -4563,11 +4526,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:28:36 GMT + - Wed, 20 May 2026 08:45:42 GMT Pragma: - no-cache RequestId: - - 3e25a2cd-9401-4aa5-8de1-d2f0b67f0896 + - ec78891c-033d-4025-baeb-a1032faa44ca Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4595,9 +4558,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/07c9486c-6ebb-4741-a86d-407baefbf5e2 + uri: https://api.fabric.microsoft.com/v1/workspaces/d8d15f4a-dad9-4a14-a52b-955fc492a7a4 response: body: string: '' @@ -4613,11 +4576,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:28:37 GMT + - Wed, 20 May 2026 08:45:43 GMT Pragma: - no-cache RequestId: - - 8423fe65-69ad-446b-a464-0e7716a9d93d + - 140c60ac-d2e8-484e-8862-e95ef37ba207 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_item_type_mismatch_failure.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_item_type_mismatch_failure.yaml index 9a544c622..54966c28e 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_item_type_mismatch_failure.yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_item_type_mismatch_failure.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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:40:09 GMT + - Wed, 20 May 2026 08:57:01 GMT Pragma: - no-cache RequestId: - - 524c0401-9fa2-45ef-9f84-b6c2fe37e737 + - 1510e351-cd74-47b2-be9b-4a4782beac5a 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:40:09 GMT + - Wed, 20 May 2026 08:57:02 GMT Pragma: - no-cache RequestId: - - 351cb088-e8f3-42e5-830b-d2c41859afaf + - 579c17c1-6132-4466-b1e1-219b4ada1ea0 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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:40:09 GMT + - Wed, 20 May 2026 08:57:03 GMT Pragma: - no-cache RequestId: - - eabf7bbe-19a3-4031-9ce2-eb6845bfc90e + - c65a5a02-7b99-4f82-b015-4686d5a6e7b3 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.3.1 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/notebooks + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/notebooks response: body: string: 'null' @@ -178,15 +180,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:40:11 GMT + - Wed, 20 May 2026 08:57:05 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c63ca9f9-3a74-4483-ad70-909f48425e93 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b705ae39-ed95-42dc-932f-e062b32815f8 Pragma: - no-cache RequestId: - - 065a8cc3-5954-4479-a6bd-dfb3a0ae9944 + - 2565f41b-de74-4d56-92b8-b23e886675f6 Retry-After: - '20' Strict-Transport-Security: @@ -200,7 +202,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - c63ca9f9-3a74-4483-ad70-909f48425e93 + - b705ae39-ed95-42dc-932f-e062b32815f8 status: code: 202 message: Accepted @@ -216,13 +218,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c63ca9f9-3a74-4483-ad70-909f48425e93 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b705ae39-ed95-42dc-932f-e062b32815f8 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:40:11.4028626", - "lastUpdatedTimeUtc": "2026-02-06T07:40:13.0441214", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:57:04.955593", + "lastUpdatedTimeUtc": "2026-05-20T08:57:06.9216108", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -236,13 +238,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:40:33 GMT + - Wed, 20 May 2026 08:57:26 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c63ca9f9-3a74-4483-ad70-909f48425e93/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b705ae39-ed95-42dc-932f-e062b32815f8/result Pragma: - no-cache RequestId: - - ea61b86c-fef8-4688-85b3-057d4995be3d + - 47ee6ebc-7d54-463f-9a4c-dbdec85d3a61 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -250,7 +252,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - c63ca9f9-3a74-4483-ad70-909f48425e93 + - b705ae39-ed95-42dc-932f-e062b32815f8 status: code: 200 message: OK @@ -266,14 +268,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c63ca9f9-3a74-4483-ad70-909f48425e93/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b705ae39-ed95-42dc-932f-e062b32815f8/result response: body: - string: '{"id": "fb2af902-f1bc-4a0e-972d-6c43638161ff", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}' + string: '{"id": "5463ebc8-c2ba-4305-b003-1d6945379c01", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}' headers: Access-Control-Expose-Headers: - RequestId @@ -284,11 +285,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 07:40:34 GMT + - Wed, 20 May 2026 08:57:27 GMT Pragma: - no-cache RequestId: - - f69343d4-a86f-4f2b-99d7-a442c60ccf6a + - 439bbc3d-044f-4650-8a47-9fef910031de 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.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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:40:35 GMT + - Wed, 20 May 2026 08:57:28 GMT Pragma: - no-cache RequestId: - - a498beb9-af31-4bf9-96e7-640385456637 + - 7602a49c-ed3d-47a4-b2c8-6aaa2f6b8abe Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -362,14 +364,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -378,15 +381,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:40:36 GMT + - Wed, 20 May 2026 08:57:28 GMT Pragma: - no-cache RequestId: - - 1037b74c-392b-43d2-89db-d2b3544714b8 + - c23cb68a-848f-46cc-99be-dceb4d578a7b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -412,14 +415,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "fb2af902-f1bc-4a0e-972d-6c43638161ff", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "5463ebc8-c2ba-4305-b003-1d6945379c01", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -428,15 +430,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '167' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:40:37 GMT + - Wed, 20 May 2026 08:57:29 GMT Pragma: - no-cache RequestId: - - 7176dca3-ab7e-47bf-a5b9-cf8375ab88d7 + - 861fb188-5034-431d-b332-8ccc8eb1bf22 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -462,14 +464,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -478,15 +481,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:40:37 GMT + - Wed, 20 May 2026 08:57:31 GMT Pragma: - no-cache RequestId: - - 0933b99a-e204-43dd-bb41-49361c444b28 + - 7782ad73-d240-43e7-b78b-de532b291730 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -512,14 +515,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: - string: '{"value": [{"id": "fb2af902-f1bc-4a0e-972d-6c43638161ff", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "e0c56f4e-e523-4a5a-84b3-0cc7285a0897"}]}' + string: '{"value": [{"id": "5463ebc8-c2ba-4305-b003-1d6945379c01", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -528,15 +530,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '167' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:40:38 GMT + - Wed, 20 May 2026 08:57:32 GMT Pragma: - no-cache RequestId: - - 63c1ffc3-2476-4561-b828-86fb9e31e864 + - e37f6dfc-287c-492d-a80d-7047857d4434 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -564,9 +566,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items/fb2af902-f1bc-4a0e-972d-6c43638161ff + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items/5463ebc8-c2ba-4305-b003-1d6945379c01 response: body: string: '' @@ -582,11 +584,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:40:39 GMT + - Wed, 20 May 2026 08:57:33 GMT Pragma: - no-cache RequestId: - - a80ec2ca-b422-4124-bb52-80793aa771fc + - 105f6e5b-4f2c-4175-b881-5bc3955512cb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_workspace_non_recursive_success.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_workspace_non_recursive_success.yaml index 8287ac912..503f15c2d 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_workspace_non_recursive_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_workspace_non_recursive_success.yaml @@ -11,13 +11,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 response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "ace730cf-7c25-4530-9b0a-403d51a84a39", + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -28,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2341' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:40:29 GMT + - Wed, 20 May 2026 08:34:01 GMT Pragma: - no-cache RequestId: - - 1bdb20ba-63b0-4dfc-9bfa-10baa2b84364 + - e82533b5-98be-4639-88fb-0125e6c84ae3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,13 +62,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.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": "ace730cf-7c25-4530-9b0a-403d51a84a39", + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -79,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2341' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:40:30 GMT + - Wed, 20 May 2026 08:34:01 GMT Pragma: - no-cache RequestId: - - 257b9981-30a7-408e-a719-a3995dc4ba25 + - 97b359d1-8eea-4f9e-b413-f615551627ab Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -113,7 +113,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -129,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:40:34 GMT + - Wed, 20 May 2026 08:34:05 GMT Pragma: - no-cache RequestId: - - 506daf51-dafe-475b-8c06-6bbfa7066d5a + - 58728bff-2462-4595-8061-1e413922c34e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -165,12 +165,12 @@ 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 response: body: - string: '{"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001", + string: '{"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -184,13 +184,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:40:41 GMT + - Wed, 20 May 2026 08:34:14 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c + - https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e Pragma: - no-cache RequestId: - - 982362b3-28d4-46bc-9efc-1de43c0c9dd5 + - 6e8c5d3e-2af2-4c0a-9663-74b67597bd02 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -216,16 +216,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://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "ace730cf-7c25-4530-9b0a-403d51a84a39", + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001", + {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -235,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2381' + - '2656' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:40:41 GMT + - Wed, 20 May 2026 08:34:15 GMT Pragma: - no-cache RequestId: - - b0be197c-9658-4a0b-8454-cdfdbc2ac342 + - 8bcdd6b8-dc65-479d-9d0d-08c0fc8de7b1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -269,16 +269,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://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "ace730cf-7c25-4530-9b0a-403d51a84a39", + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001", + {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -288,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2381' + - '2656' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:40:42 GMT + - Wed, 20 May 2026 08:34:15 GMT Pragma: - no-cache RequestId: - - c976bc1b-e219-40fa-9d5a-d48a2a003466 + - afc3f7ca-c0fb-4b18-8593-cc8545c02c59 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -322,7 +322,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -338,15 +338,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '425' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:40:47 GMT + - Wed, 20 May 2026 08:34:19 GMT Pragma: - no-cache RequestId: - - 53d54b91-9952-48be-9f51-ec7a8d447bff + - 64b0aac6-1f53-41ff-a9d1-1bde0711239b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -374,12 +374,12 @@ 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 response: body: - string: '{"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002", + string: '{"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -389,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '155' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:40:54 GMT + - Wed, 20 May 2026 08:34:25 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/b0c6f754-3685-4dc9-a679-2eb046618f22 + - https://api.fabric.microsoft.com/v1/workspaces/6b1091f5-3057-4e89-81f8-25884ca70f7a Pragma: - no-cache RequestId: - - cac65866-0052-40c6-9d26-daff99bf26d8 + - de9df86f-4fa1-4d0d-918b-c973e7366d71 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -425,18 +425,18 @@ interactions: Content-Type: - application/json User-Agent: - - 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": "ace730cf-7c25-4530-9b0a-403d51a84a39", + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001", + {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002", + {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -446,15 +446,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2418' + - '2691' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:40:55 GMT + - Wed, 20 May 2026 08:34:26 GMT Pragma: - no-cache RequestId: - - d815f3b2-6d34-4111-8b18-63f9649e81e3 + - 5e6ab99a-650b-4342-a87a-62063497965d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -480,9 +480,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/ed64433c-171c-4a24-9cfd-8c09e729a34c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items response: body: string: '{"value": []}' @@ -498,11 +498,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:40:55 GMT + - Wed, 20 May 2026 08:34:27 GMT Pragma: - no-cache RequestId: - - 490b4d29-3a7c-40f1-81f2-ed3f41044149 + - 1e3f9f98-d85e-4c18-9711-dff2166e1e1e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -528,9 +528,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/ed64433c-171c-4a24-9cfd-8c09e729a34c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items response: body: string: '{"value": []}' @@ -546,11 +546,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:40:55 GMT + - Wed, 20 May 2026 08:34:28 GMT Pragma: - no-cache RequestId: - - 0f8778d9-806e-4570-bd0b-bbda9343ed22 + - 5045147d-5017-4273-8f9c-7898b07d19d4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -580,9 +580,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/ed64433c-171c-4a24-9cfd-8c09e729a34c/notebooks + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/notebooks response: body: string: 'null' @@ -598,15 +598,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:40:57 GMT + - Wed, 20 May 2026 08:34:30 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/443d6a3a-4a04-40c0-8471-82ea2b43117c + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/22aa18fe-b12f-4e41-bdff-303e808a1104 Pragma: - no-cache RequestId: - - 839aec1a-b9fb-4062-a98c-9d42382b4a94 + - 01d480a9-4a86-4da6-be43-d7e83cfc4930 Retry-After: - '20' Strict-Transport-Security: @@ -620,7 +620,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 443d6a3a-4a04-40c0-8471-82ea2b43117c + - 22aa18fe-b12f-4e41-bdff-303e808a1104 status: code: 202 message: Accepted @@ -636,13 +636,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/443d6a3a-4a04-40c0-8471-82ea2b43117c + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/22aa18fe-b12f-4e41-bdff-303e808a1104 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-23T12:40:56.1090063", - "lastUpdatedTimeUtc": "2026-04-23T12:40:58.0145778", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:34:29.9244458", + "lastUpdatedTimeUtc": "2026-05-20T08:34:31.5902068", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -652,17 +652,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '132' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:41:17 GMT + - Wed, 20 May 2026 08:34:51 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/443d6a3a-4a04-40c0-8471-82ea2b43117c/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/22aa18fe-b12f-4e41-bdff-303e808a1104/result Pragma: - no-cache RequestId: - - 48a397a9-33b0-4aea-bdb4-a5ad76d59925 + - 7f3e8293-df0b-40a1-aa45-2a3c1997a368 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -670,7 +670,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 443d6a3a-4a04-40c0-8471-82ea2b43117c + - 22aa18fe-b12f-4e41-bdff-303e808a1104 status: code: 200 message: OK @@ -686,13 +686,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/443d6a3a-4a04-40c0-8471-82ea2b43117c/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/22aa18fe-b12f-4e41-bdff-303e808a1104/result response: body: - string: '{"id": "de691bb3-4191-4e3f-b119-fd14d8248f37", "type": "Notebook", - "displayName": "fabcli000003", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}' + string: '{"id": "3f09b34f-9c96-4bda-9cc3-8c80d78c1d3b", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}' headers: Access-Control-Expose-Headers: - RequestId @@ -703,11 +703,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 23 Apr 2026 12:41:17 GMT + - Wed, 20 May 2026 08:34:52 GMT Pragma: - no-cache RequestId: - - 672f3c4a-ed55-4bef-8467-acf7279e0f74 + - 2a5b616f-2d28-464d-aaed-27b8c62afd73 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -731,18 +731,18 @@ interactions: Content-Type: - application/json User-Agent: - - 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": "ace730cf-7c25-4530-9b0a-403d51a84a39", + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001", + {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002", + {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -752,15 +752,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2418' + - '2691' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:41:18 GMT + - Wed, 20 May 2026 08:34:52 GMT Pragma: - no-cache RequestId: - - 4968c7b0-260e-45f7-b045-350ca1acdf51 + - c1ad665b-20eb-475e-9408-391a47cee344 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -786,13 +786,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/ed64433c-171c-4a24-9cfd-8c09e729a34c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items response: body: - string: '{"value": [{"id": "de691bb3-4191-4e3f-b119-fd14d8248f37", "type": "Notebook", - "displayName": "fabcli000003", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}]}' + string: '{"value": [{"id": "3f09b34f-9c96-4bda-9cc3-8c80d78c1d3b", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -801,15 +801,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:41:19 GMT + - Wed, 20 May 2026 08:34:53 GMT Pragma: - no-cache RequestId: - - aaaac2f1-78be-4154-bb4a-4f00eb0dce08 + - 38e4b509-4c9b-4efc-98aa-443e9b1fc5a4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -835,13 +835,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/ed64433c-171c-4a24-9cfd-8c09e729a34c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items response: body: - string: '{"value": [{"id": "de691bb3-4191-4e3f-b119-fd14d8248f37", "type": "Notebook", - "displayName": "fabcli000003", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}]}' + string: '{"value": [{"id": "3f09b34f-9c96-4bda-9cc3-8c80d78c1d3b", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -850,15 +850,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:41:19 GMT + - Wed, 20 May 2026 08:34:55 GMT Pragma: - no-cache RequestId: - - ba536aec-37f2-4b8d-b651-956949039a44 + - 1007eb59-40cc-4203-b6e6-45c39011badd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -886,13 +886,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/ed64433c-171c-4a24-9cfd-8c09e729a34c/dataPipelines + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/dataPipelines response: body: - string: '{"id": "3c4accdb-4d14-4dc1-974e-b59eaa4f489c", "type": "DataPipeline", - "displayName": "fabcli000004", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}' + string: '{"id": "2cdfbc2a-0fe6-40ac-8aae-5c6d89ec8eb4", "type": "DataPipeline", + "displayName": "fabcli000004", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -901,17 +901,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '157' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:41:26 GMT + - Wed, 20 May 2026 08:35:00 GMT ETag: - '""' Pragma: - no-cache RequestId: - - d50819f9-281e-40d1-9f49-9d460629c687 + - d8c39061-0292-4e92-9c64-59d11e764d34 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -937,18 +937,18 @@ interactions: Content-Type: - application/json User-Agent: - - 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": "ace730cf-7c25-4530-9b0a-403d51a84a39", + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001", + {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002", + {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -958,15 +958,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2418' + - '2691' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:41:26 GMT + - Wed, 20 May 2026 08:35:01 GMT Pragma: - no-cache RequestId: - - 09a3975c-44cb-40e7-ae5a-e51398629aca + - 5e3b6dcd-b6ba-4e44-9420-5b61937b7921 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -992,9 +992,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/ed64433c-171c-4a24-9cfd-8c09e729a34c/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/folders?recursive=True response: body: string: '{"value": []}' @@ -1010,11 +1010,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:41:27 GMT + - Wed, 20 May 2026 08:35:02 GMT Pragma: - no-cache RequestId: - - 9b1095b3-24d7-4eb7-bb58-7dce15e9cc66 + - 252a976d-e91f-482f-91e6-0e71cd1b047e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1040,9 +1040,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/ed64433c-171c-4a24-9cfd-8c09e729a34c/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/folders?recursive=True response: body: string: '{"value": []}' @@ -1058,11 +1058,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:41:27 GMT + - Wed, 20 May 2026 08:35:02 GMT Pragma: - no-cache RequestId: - - 3a79cc41-384f-4405-8881-6d959b575a47 + - 0fd284d9-5dc3-4e1f-9b8e-a3fc80393bff Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1090,13 +1090,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/ed64433c-171c-4a24-9cfd-8c09e729a34c/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/folders response: body: - string: '{"id": "072d7ba5-69a8-4ad2-8cfa-2622113df04e", "displayName": "fabcli000005", - "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}' + string: '{"id": "105f23f9-2490-41f7-a1c5-dc95d99acb4a", "displayName": "fabcli000005", + "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -1109,13 +1109,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:41:28 GMT + - Wed, 20 May 2026 08:35:04 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/folders/072d7ba5-69a8-4ad2-8cfa-2622113df04e + - https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/folders/105f23f9-2490-41f7-a1c5-dc95d99acb4a Pragma: - no-cache RequestId: - - 14b31b5a-75b5-48a8-b630-7790aa29170c + - 5b6adf45-2447-45a8-af09-668936bfb976 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1141,18 +1141,18 @@ interactions: Content-Type: - application/json User-Agent: - - 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": "ace730cf-7c25-4530-9b0a-403d51a84a39", + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001", + {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002", + {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -1162,15 +1162,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2418' + - '2691' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:41:28 GMT + - Wed, 20 May 2026 08:35:05 GMT Pragma: - no-cache RequestId: - - 4444333d-16d2-47c2-81d9-2aec1326aa6a + - ed9c70f9-2c93-4a94-a638-8c616d81ad9a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1196,13 +1196,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/ed64433c-171c-4a24-9cfd-8c09e729a34c/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/folders?recursive=True response: body: - string: '{"value": [{"id": "072d7ba5-69a8-4ad2-8cfa-2622113df04e", "displayName": - "fabcli000005", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}]}' + string: '{"value": [{"id": "105f23f9-2490-41f7-a1c5-dc95d99acb4a", "displayName": + "fabcli000005", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1211,15 +1211,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:41:28 GMT + - Wed, 20 May 2026 08:35:06 GMT Pragma: - no-cache RequestId: - - 1b43df11-2ca4-4ca0-8593-66547a170733 + - 9ac232a9-52fd-443b-b210-cec316cd5e4d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1245,15 +1245,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/ed64433c-171c-4a24-9cfd-8c09e729a34c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items response: body: - string: '{"value": [{"id": "de691bb3-4191-4e3f-b119-fd14d8248f37", "type": "Notebook", - "displayName": "fabcli000003", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}, - {"id": "3c4accdb-4d14-4dc1-974e-b59eaa4f489c", "type": "DataPipeline", "displayName": - "fabcli000004", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}]}' + string: '{"value": [{"id": "3f09b34f-9c96-4bda-9cc3-8c80d78c1d3b", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}, + {"id": "2cdfbc2a-0fe6-40ac-8aae-5c6d89ec8eb4", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1266,11 +1266,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:41:29 GMT + - Wed, 20 May 2026 08:35:06 GMT Pragma: - no-cache RequestId: - - ffdcf669-5f08-4a66-a903-46c35f19cbc6 + - e8fb10c0-325d-4a11-b424-7632c8fc8f07 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1296,15 +1296,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/ed64433c-171c-4a24-9cfd-8c09e729a34c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items response: body: - string: '{"value": [{"id": "de691bb3-4191-4e3f-b119-fd14d8248f37", "type": "Notebook", - "displayName": "fabcli000003", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}, - {"id": "3c4accdb-4d14-4dc1-974e-b59eaa4f489c", "type": "DataPipeline", "displayName": - "fabcli000004", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}]}' + string: '{"value": [{"id": "3f09b34f-9c96-4bda-9cc3-8c80d78c1d3b", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}, + {"id": "2cdfbc2a-0fe6-40ac-8aae-5c6d89ec8eb4", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1317,11 +1317,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:41:29 GMT + - Wed, 20 May 2026 08:35:07 GMT Pragma: - no-cache RequestId: - - e5564303-426a-48ea-9005-f98deb350dc2 + - eb362a77-22c9-4bf6-80bf-0aebd4dc888a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1337,7 +1337,7 @@ interactions: message: OK - request: body: '{"displayName": "fabcli000006", "type": "SparkJobDefinition", "folderId": - "072d7ba5-69a8-4ad2-8cfa-2622113df04e"}' + "105f23f9-2490-41f7-a1c5-dc95d99acb4a"}' headers: Accept: - '*/*' @@ -1350,14 +1350,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/ed64433c-171c-4a24-9cfd-8c09e729a34c/sparkJobDefinitions + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/sparkJobDefinitions response: body: - string: '{"id": "e370d96c-07fc-4fd7-b39b-1535f95e66ea", "type": "SparkJobDefinition", - "displayName": "fabcli000006", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c", - "folderId": "072d7ba5-69a8-4ad2-8cfa-2622113df04e"}' + string: '{"id": "c8742bed-419c-48a5-9190-ed76c459f74c", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", + "folderId": "105f23f9-2490-41f7-a1c5-dc95d99acb4a"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1366,17 +1366,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '193' + - '195' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:41:31 GMT + - Wed, 20 May 2026 08:35:09 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 1bf1ad3a-5d85-42db-9424-f3be5a8e245b + - aea98a0e-c3c0-4c54-beb5-3b59c797b943 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1402,18 +1402,18 @@ interactions: Content-Type: - application/json User-Agent: - - 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": "ace730cf-7c25-4530-9b0a-403d51a84a39", + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001", + {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002", + {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -1423,15 +1423,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2418' + - '2691' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:41:31 GMT + - Wed, 20 May 2026 08:35:10 GMT Pragma: - no-cache RequestId: - - b794a981-5355-41a9-96b5-b21214265b9b + - 7a104f42-b8f0-47e0-a7f5-ef356d64932e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1457,18 +1457,18 @@ interactions: Content-Type: - application/json User-Agent: - - 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": "ace730cf-7c25-4530-9b0a-403d51a84a39", + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001", + {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002", + {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -1478,15 +1478,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2418' + - '2691' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:41:31 GMT + - Wed, 20 May 2026 08:35:11 GMT Pragma: - no-cache RequestId: - - d8e60f1d-c56f-418b-a9b3-8e2b77e060be + - dd9bf0ad-2db3-4dd3-a0f7-6ffe4bee9de2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1512,18 +1512,18 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items response: body: - string: '{"value": [{"id": "de691bb3-4191-4e3f-b119-fd14d8248f37", "type": "Notebook", - "displayName": "fabcli000003", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}, - {"id": "3c4accdb-4d14-4dc1-974e-b59eaa4f489c", "type": "DataPipeline", "displayName": - "fabcli000004", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}, - {"id": "e370d96c-07fc-4fd7-b39b-1535f95e66ea", "type": "SparkJobDefinition", - "displayName": "fabcli000006", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c", - "folderId": "072d7ba5-69a8-4ad2-8cfa-2622113df04e"}]}' + string: '{"value": [{"id": "3f09b34f-9c96-4bda-9cc3-8c80d78c1d3b", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}, + {"id": "2cdfbc2a-0fe6-40ac-8aae-5c6d89ec8eb4", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}, + {"id": "c8742bed-419c-48a5-9190-ed76c459f74c", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", + "folderId": "105f23f9-2490-41f7-a1c5-dc95d99acb4a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1532,15 +1532,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '302' + - '301' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:41:32 GMT + - Wed, 20 May 2026 08:35:11 GMT Pragma: - no-cache RequestId: - - f93377ce-25b8-4d76-8b04-cf202a6efbff + - 1137113c-4048-40a2-96f6-d75e9b86459a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1566,13 +1566,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/ed64433c-171c-4a24-9cfd-8c09e729a34c/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/folders?recursive=True response: body: - string: '{"value": [{"id": "072d7ba5-69a8-4ad2-8cfa-2622113df04e", "displayName": - "fabcli000005", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}]}' + string: '{"value": [{"id": "105f23f9-2490-41f7-a1c5-dc95d99acb4a", "displayName": + "fabcli000005", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1581,15 +1581,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:41:32 GMT + - Wed, 20 May 2026 08:35:12 GMT Pragma: - no-cache RequestId: - - d014918b-d0ae-4b18-b7c3-1805c8da9c86 + - fd612e39-a616-40f8-9894-898858d0dc4c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1615,13 +1615,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/ed64433c-171c-4a24-9cfd-8c09e729a34c/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/folders?recursive=True response: body: - string: '{"value": [{"id": "072d7ba5-69a8-4ad2-8cfa-2622113df04e", "displayName": - "fabcli000005", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}]}' + string: '{"value": [{"id": "105f23f9-2490-41f7-a1c5-dc95d99acb4a", "displayName": + "fabcli000005", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1630,15 +1630,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:41:32 GMT + - Wed, 20 May 2026 08:35:13 GMT Pragma: - no-cache RequestId: - - 836425c9-c4fb-47bd-b18e-541ad0dcf982 + - 64d1dd76-cefa-4fa2-8ed6-af6b3a457787 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1664,18 +1664,18 @@ interactions: Content-Type: - application/json User-Agent: - - 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": "ace730cf-7c25-4530-9b0a-403d51a84a39", + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001", + {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002", + {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -1685,15 +1685,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2418' + - '2691' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:41:33 GMT + - Wed, 20 May 2026 08:35:14 GMT Pragma: - no-cache RequestId: - - a9d06663-f9ad-405e-8f06-02f188f694a3 + - b38d79f3-ed51-4e70-ba2b-bb5ac9d97462 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1719,9 +1719,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/b0c6f754-3685-4dc9-a679-2eb046618f22/items + uri: https://api.fabric.microsoft.com/v1/workspaces/6b1091f5-3057-4e89-81f8-25884ca70f7a/items response: body: string: '{"value": []}' @@ -1737,11 +1737,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:41:33 GMT + - Wed, 20 May 2026 08:35:15 GMT Pragma: - no-cache RequestId: - - 6a970044-42ea-48ba-a781-356e500b02ff + - 2e968f55-bab9-418b-8b62-fc490611b8e6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1767,9 +1767,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/b0c6f754-3685-4dc9-a679-2eb046618f22/items + uri: https://api.fabric.microsoft.com/v1/workspaces/6b1091f5-3057-4e89-81f8-25884ca70f7a/items response: body: string: '{"value": []}' @@ -1785,11 +1785,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:41:33 GMT + - Wed, 20 May 2026 08:35:15 GMT Pragma: - no-cache RequestId: - - 952f3660-c578-494d-860b-28132e58827e + - e5e49e27-b1b4-4e55-972a-3ce227614458 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1815,9 +1815,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/b0c6f754-3685-4dc9-a679-2eb046618f22/items + uri: https://api.fabric.microsoft.com/v1/workspaces/6b1091f5-3057-4e89-81f8-25884ca70f7a/items response: body: string: '{"value": []}' @@ -1833,11 +1833,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:41:33 GMT + - Wed, 20 May 2026 08:35:16 GMT Pragma: - no-cache RequestId: - - fcc0c943-8254-4de9-8770-39f96f01a88b + - f8154e89-218a-4d0e-87d6-e939358c7f1d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1863,13 +1863,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/ed64433c-171c-4a24-9cfd-8c09e729a34c/items/de691bb3-4191-4e3f-b119-fd14d8248f37 + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items/3f09b34f-9c96-4bda-9cc3-8c80d78c1d3b response: body: - string: '{"id": "de691bb3-4191-4e3f-b119-fd14d8248f37", "type": "Notebook", - "displayName": "fabcli000003", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}' + string: '{"id": "3f09b34f-9c96-4bda-9cc3-8c80d78c1d3b", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1878,17 +1878,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '154' + - '153' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:41:34 GMT + - Wed, 20 May 2026 08:35:17 GMT ETag: - '""' Pragma: - no-cache RequestId: - - fe902025-5033-46e6-84ef-e7542adcd04d + - c57d2fb4-0562-4139-9474-fb6b462fb03d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1916,9 +1916,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/ed64433c-171c-4a24-9cfd-8c09e729a34c/items/de691bb3-4191-4e3f-b119-fd14d8248f37/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items/3f09b34f-9c96-4bda-9cc3-8c80d78c1d3b/getDefinition response: body: string: 'null' @@ -1934,13 +1934,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:41:35 GMT + - Wed, 20 May 2026 08:35:18 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cf660bb6-96e5-4606-be18-5909b22267d8 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a77af522-7a12-4272-b5c1-d5e9c88b1cc6 Pragma: - no-cache RequestId: - - 345a9068-2069-416d-a328-8ff750b5a519 + - b30e4704-bab3-4d45-a426-7613ea0edec8 Retry-After: - '20' Strict-Transport-Security: @@ -1954,7 +1954,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - cf660bb6-96e5-4606-be18-5909b22267d8 + - a77af522-7a12-4272-b5c1-d5e9c88b1cc6 status: code: 202 message: Accepted @@ -1970,13 +1970,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/cf660bb6-96e5-4606-be18-5909b22267d8 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a77af522-7a12-4272-b5c1-d5e9c88b1cc6 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-23T12:41:35.2682824", - "lastUpdatedTimeUtc": "2026-04-23T12:41:36.0138292", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:35:18.7236268", + "lastUpdatedTimeUtc": "2026-05-20T08:35:19.047186", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1990,13 +1990,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:41:55 GMT + - Wed, 20 May 2026 08:35:39 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cf660bb6-96e5-4606-be18-5909b22267d8/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a77af522-7a12-4272-b5c1-d5e9c88b1cc6/result Pragma: - no-cache RequestId: - - 4642249f-00f1-4b5a-845d-063813fd9778 + - d1ea0236-88ce-4865-b5af-6a3c0dd088c3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2004,7 +2004,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - cf660bb6-96e5-4606-be18-5909b22267d8 + - a77af522-7a12-4272-b5c1-d5e9c88b1cc6 status: code: 200 message: OK @@ -2020,9 +2020,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/cf660bb6-96e5-4606-be18-5909b22267d8/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/a77af522-7a12-4272-b5c1-d5e9c88b1cc6/result response: body: string: '{"definition": {"parts": [{"path": "notebook-content.py", "payload": @@ -2039,11 +2039,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 23 Apr 2026 12:41:56 GMT + - Wed, 20 May 2026 08:35:39 GMT Pragma: - no-cache RequestId: - - 63ab3a27-e03d-4a34-97b8-ddb54180f804 + - 78fb269a-e459-44a6-b23d-2a9fa7ff1d08 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -2072,9 +2072,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/b0c6f754-3685-4dc9-a679-2eb046618f22/items + uri: https://api.fabric.microsoft.com/v1/workspaces/6b1091f5-3057-4e89-81f8-25884ca70f7a/items response: body: string: 'null' @@ -2090,15 +2090,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:41:58 GMT + - Wed, 20 May 2026 08:35:42 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d8d68273-a6fb-4e6c-85ba-d58a0d108c31 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/327862e8-47cc-4b09-99a5-5f442a554f33 Pragma: - no-cache RequestId: - - 2790f725-b2a3-4ba7-9c69-027e2559c943 + - 5a0a2945-7ede-4a2b-a832-a8b3f7d6d9d9 Retry-After: - '20' Strict-Transport-Security: @@ -2112,7 +2112,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - d8d68273-a6fb-4e6c-85ba-d58a0d108c31 + - 327862e8-47cc-4b09-99a5-5f442a554f33 status: code: 202 message: Accepted @@ -2128,13 +2128,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/d8d68273-a6fb-4e6c-85ba-d58a0d108c31 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/327862e8-47cc-4b09-99a5-5f442a554f33 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-04-23T12:41:57.4906507", - "lastUpdatedTimeUtc": "2026-04-23T12:41:59.0672945", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:35:41.5076251", + "lastUpdatedTimeUtc": "2026-05-20T08:35:43.6498577", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -2148,13 +2148,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:42:17 GMT + - Wed, 20 May 2026 08:36:03 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d8d68273-a6fb-4e6c-85ba-d58a0d108c31/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/327862e8-47cc-4b09-99a5-5f442a554f33/result Pragma: - no-cache RequestId: - - 2ca6942a-bd62-4000-a68f-85b52bb9e8ea + - a7653e91-2545-498e-97c1-e5b83c831c38 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2162,7 +2162,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - d8d68273-a6fb-4e6c-85ba-d58a0d108c31 + - 327862e8-47cc-4b09-99a5-5f442a554f33 status: code: 200 message: OK @@ -2178,13 +2178,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/d8d68273-a6fb-4e6c-85ba-d58a0d108c31/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/327862e8-47cc-4b09-99a5-5f442a554f33/result response: body: - string: '{"id": "ce5bf52e-9577-4643-a6ea-c06443313768", "type": "Notebook", - "displayName": "fabcli000003", "description": "", "workspaceId": "b0c6f754-3685-4dc9-a679-2eb046618f22"}' + string: '{"id": "0c98cff7-ac91-4b00-ae65-bd4b81c8a2da", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "6b1091f5-3057-4e89-81f8-25884ca70f7a"}' headers: Access-Control-Expose-Headers: - RequestId @@ -2195,11 +2195,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 23 Apr 2026 12:42:19 GMT + - Wed, 20 May 2026 08:36:04 GMT Pragma: - no-cache RequestId: - - 35ea3d0e-21d3-44e0-b02a-00c59cb54260 + - 706c3582-1f4e-4e98-a355-23e19e69fcb3 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -2223,18 +2223,18 @@ interactions: Content-Type: - application/json User-Agent: - - 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": "ace730cf-7c25-4530-9b0a-403d51a84a39", + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001", + {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002", + {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -2244,15 +2244,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2418' + - '2691' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:42:20 GMT + - Wed, 20 May 2026 08:36:05 GMT Pragma: - no-cache RequestId: - - 334d5a60-8dd1-47a2-8e59-c57343b718ff + - 50b3e269-d8b9-4706-932b-dd5e041927de Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2278,13 +2278,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/b0c6f754-3685-4dc9-a679-2eb046618f22/items + uri: https://api.fabric.microsoft.com/v1/workspaces/6b1091f5-3057-4e89-81f8-25884ca70f7a/items response: body: - string: '{"value": [{"id": "ce5bf52e-9577-4643-a6ea-c06443313768", "type": "Notebook", - "displayName": "fabcli000003", "description": "", "workspaceId": "b0c6f754-3685-4dc9-a679-2eb046618f22"}]}' + string: '{"value": [{"id": "0c98cff7-ac91-4b00-ae65-bd4b81c8a2da", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "6b1091f5-3057-4e89-81f8-25884ca70f7a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2293,15 +2293,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:42:21 GMT + - Wed, 20 May 2026 08:36:05 GMT Pragma: - no-cache RequestId: - - 090feaaf-d0a1-412c-b378-2d1373c6b20d + - 4517f967-47cd-4265-9690-fd330a4b6f6e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2327,13 +2327,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/b0c6f754-3685-4dc9-a679-2eb046618f22/items + uri: https://api.fabric.microsoft.com/v1/workspaces/6b1091f5-3057-4e89-81f8-25884ca70f7a/items response: body: - string: '{"value": [{"id": "ce5bf52e-9577-4643-a6ea-c06443313768", "type": "Notebook", - "displayName": "fabcli000003", "description": "", "workspaceId": "b0c6f754-3685-4dc9-a679-2eb046618f22"}]}' + string: '{"value": [{"id": "0c98cff7-ac91-4b00-ae65-bd4b81c8a2da", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "6b1091f5-3057-4e89-81f8-25884ca70f7a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2342,15 +2342,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:42:21 GMT + - Wed, 20 May 2026 08:36:06 GMT Pragma: - no-cache RequestId: - - 27a3d3c1-159a-4360-ba36-16cdfb7446be + - d5eb3816-ab5a-479b-916a-61e4120bada2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2376,13 +2376,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/b0c6f754-3685-4dc9-a679-2eb046618f22/items + uri: https://api.fabric.microsoft.com/v1/workspaces/6b1091f5-3057-4e89-81f8-25884ca70f7a/items response: body: - string: '{"value": [{"id": "ce5bf52e-9577-4643-a6ea-c06443313768", "type": "Notebook", - "displayName": "fabcli000003", "description": "", "workspaceId": "b0c6f754-3685-4dc9-a679-2eb046618f22"}]}' + string: '{"value": [{"id": "0c98cff7-ac91-4b00-ae65-bd4b81c8a2da", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "6b1091f5-3057-4e89-81f8-25884ca70f7a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2391,15 +2391,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:42:22 GMT + - Wed, 20 May 2026 08:36:07 GMT Pragma: - no-cache RequestId: - - 9395298a-6e3d-48d1-9388-3d20fa338e74 + - 356e83f2-606a-49ff-8094-905805b29947 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2425,13 +2425,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/ed64433c-171c-4a24-9cfd-8c09e729a34c/items/3c4accdb-4d14-4dc1-974e-b59eaa4f489c + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items/2cdfbc2a-0fe6-40ac-8aae-5c6d89ec8eb4 response: body: - string: '{"id": "3c4accdb-4d14-4dc1-974e-b59eaa4f489c", "type": "DataPipeline", - "displayName": "fabcli000004", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}' + string: '{"id": "2cdfbc2a-0fe6-40ac-8aae-5c6d89ec8eb4", "type": "DataPipeline", + "displayName": "fabcli000004", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -2440,17 +2440,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '157' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:42:22 GMT + - Wed, 20 May 2026 08:36:08 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 386baa52-b5a4-41e7-979c-e45af85e1b8b + - cfa802b2-052c-4c1d-bb8a-b6212ce65369 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2478,9 +2478,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/ed64433c-171c-4a24-9cfd-8c09e729a34c/items/3c4accdb-4d14-4dc1-974e-b59eaa4f489c/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items/2cdfbc2a-0fe6-40ac-8aae-5c6d89ec8eb4/getDefinition response: body: string: '{"definition": {"parts": [{"path": "pipeline-content.json", "payload": @@ -2495,15 +2495,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '439' + - '441' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:42:23 GMT + - Wed, 20 May 2026 08:36:09 GMT Pragma: - no-cache RequestId: - - a85bd75e-da7e-44f1-8dcc-42f984f206cc + - 298fb869-edf4-4b44-8a8a-dd07e6323153 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2534,13 +2534,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/b0c6f754-3685-4dc9-a679-2eb046618f22/items + uri: https://api.fabric.microsoft.com/v1/workspaces/6b1091f5-3057-4e89-81f8-25884ca70f7a/items response: body: - string: '{"id": "85d8976a-20c1-4544-898a-859bd1b552df", "type": "DataPipeline", - "displayName": "fabcli000004", "description": "", "workspaceId": "b0c6f754-3685-4dc9-a679-2eb046618f22"}' + string: '{"id": "b435558b-c5b8-4cbd-82e5-aaf020d9fc5b", "type": "DataPipeline", + "displayName": "fabcli000004", "description": "", "workspaceId": "6b1091f5-3057-4e89-81f8-25884ca70f7a"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -2549,17 +2549,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '160' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:42:28 GMT + - Wed, 20 May 2026 08:36:15 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 2a375651-1b73-45a2-8773-bca60017e42f + - 76a72780-65cd-4642-ab03-63160e9ec746 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2585,18 +2585,18 @@ interactions: Content-Type: - application/json User-Agent: - - 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": "ace730cf-7c25-4530-9b0a-403d51a84a39", + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001", + {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002", + {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -2606,15 +2606,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2418' + - '2691' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:42:29 GMT + - Wed, 20 May 2026 08:36:16 GMT Pragma: - no-cache RequestId: - - afe7bb7b-2d93-491e-9dd7-f751f423c996 + - 092c7d3d-a320-40cc-9e63-4af644e12b28 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2640,18 +2640,18 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items response: body: - string: '{"value": [{"id": "de691bb3-4191-4e3f-b119-fd14d8248f37", "type": "Notebook", - "displayName": "fabcli000003", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}, - {"id": "3c4accdb-4d14-4dc1-974e-b59eaa4f489c", "type": "DataPipeline", "displayName": - "fabcli000004", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}, - {"id": "e370d96c-07fc-4fd7-b39b-1535f95e66ea", "type": "SparkJobDefinition", - "displayName": "fabcli000006", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c", - "folderId": "072d7ba5-69a8-4ad2-8cfa-2622113df04e"}]}' + string: '{"value": [{"id": "3f09b34f-9c96-4bda-9cc3-8c80d78c1d3b", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}, + {"id": "2cdfbc2a-0fe6-40ac-8aae-5c6d89ec8eb4", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}, + {"id": "c8742bed-419c-48a5-9190-ed76c459f74c", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", + "folderId": "105f23f9-2490-41f7-a1c5-dc95d99acb4a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2660,15 +2660,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '302' + - '301' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:42:29 GMT + - Wed, 20 May 2026 08:36:17 GMT Pragma: - no-cache RequestId: - - b3c28a04-51b6-4ce9-bec1-f98f80690753 + - d54af077-a2de-4882-880d-d79d5cf4e4b5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2694,13 +2694,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/ed64433c-171c-4a24-9cfd-8c09e729a34c/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/folders?recursive=True response: body: - string: '{"value": [{"id": "072d7ba5-69a8-4ad2-8cfa-2622113df04e", "displayName": - "fabcli000005", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}]}' + string: '{"value": [{"id": "105f23f9-2490-41f7-a1c5-dc95d99acb4a", "displayName": + "fabcli000005", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2709,15 +2709,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:42:30 GMT + - Wed, 20 May 2026 08:36:18 GMT Pragma: - no-cache RequestId: - - c18bc4c7-e53f-4385-b3d9-84a1186dcc6d + - 0630187f-c75c-4059-8e7a-94a4cc625435 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2743,13 +2743,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/ed64433c-171c-4a24-9cfd-8c09e729a34c/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/folders?recursive=True response: body: - string: '{"value": [{"id": "072d7ba5-69a8-4ad2-8cfa-2622113df04e", "displayName": - "fabcli000005", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}]}' + string: '{"value": [{"id": "105f23f9-2490-41f7-a1c5-dc95d99acb4a", "displayName": + "fabcli000005", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2758,15 +2758,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:42:30 GMT + - Wed, 20 May 2026 08:36:19 GMT Pragma: - no-cache RequestId: - - fd4bcb17-bcd2-4465-8a8f-5c69b76e93a7 + - 1fce0e5e-c9ba-4dba-a4d4-7d017f539f8d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2792,18 +2792,18 @@ interactions: Content-Type: - application/json User-Agent: - - 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": "ace730cf-7c25-4530-9b0a-403d51a84a39", + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001", + {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002", + {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -2813,15 +2813,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2418' + - '2691' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:42:30 GMT + - Wed, 20 May 2026 08:36:19 GMT Pragma: - no-cache RequestId: - - fa8c1f9c-fc77-42fc-bc90-3c20032d2a1d + - c5197a47-9655-4b10-abe7-846352eaa438 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2847,15 +2847,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/b0c6f754-3685-4dc9-a679-2eb046618f22/items + uri: https://api.fabric.microsoft.com/v1/workspaces/6b1091f5-3057-4e89-81f8-25884ca70f7a/items response: body: - string: '{"value": [{"id": "ce5bf52e-9577-4643-a6ea-c06443313768", "type": "Notebook", - "displayName": "fabcli000003", "description": "", "workspaceId": "b0c6f754-3685-4dc9-a679-2eb046618f22"}, - {"id": "85d8976a-20c1-4544-898a-859bd1b552df", "type": "DataPipeline", "displayName": - "fabcli000004", "description": "", "workspaceId": "b0c6f754-3685-4dc9-a679-2eb046618f22"}]}' + string: '{"value": [{"id": "0c98cff7-ac91-4b00-ae65-bd4b81c8a2da", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "6b1091f5-3057-4e89-81f8-25884ca70f7a"}, + {"id": "b435558b-c5b8-4cbd-82e5-aaf020d9fc5b", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "6b1091f5-3057-4e89-81f8-25884ca70f7a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2864,15 +2864,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '222' + - '220' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:42:31 GMT + - Wed, 20 May 2026 08:36:20 GMT Pragma: - no-cache RequestId: - - b7438827-f275-4d91-a753-3fbbfbef24ad + - 605b68b2-2a0d-4d9d-92db-bbc5f7e8f655 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2898,9 +2898,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/b0c6f754-3685-4dc9-a679-2eb046618f22/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/6b1091f5-3057-4e89-81f8-25884ca70f7a/folders?recursive=True response: body: string: '{"value": []}' @@ -2916,11 +2916,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:42:32 GMT + - Wed, 20 May 2026 08:36:21 GMT Pragma: - no-cache RequestId: - - 2529c14d-fda4-44ee-b694-070dc7eeb567 + - 12d806d8-0d9a-4142-9ab7-ebc3d590ad12 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2946,18 +2946,18 @@ interactions: Content-Type: - application/json User-Agent: - - 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": "ace730cf-7c25-4530-9b0a-403d51a84a39", + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001", + {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002", + {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -2967,15 +2967,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2418' + - '2691' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:42:32 GMT + - Wed, 20 May 2026 08:36:22 GMT Pragma: - no-cache RequestId: - - f475edc1-ccaa-480c-a686-56517dedddde + - e49f642f-49c7-47b5-8851-4c4245e5ce6a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3001,13 +3001,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/ed64433c-171c-4a24-9cfd-8c09e729a34c/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/folders?recursive=True response: body: - string: '{"value": [{"id": "072d7ba5-69a8-4ad2-8cfa-2622113df04e", "displayName": - "fabcli000005", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}]}' + string: '{"value": [{"id": "105f23f9-2490-41f7-a1c5-dc95d99acb4a", "displayName": + "fabcli000005", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3016,15 +3016,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:42:33 GMT + - Wed, 20 May 2026 08:36:23 GMT Pragma: - no-cache RequestId: - - 081bfab9-5101-42ea-bb4b-f398ca9be0df + - baa19523-4d33-4b8a-971d-6c304dd32b11 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3050,18 +3050,18 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ed64433c-171c-4a24-9cfd-8c09e729a34c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items response: body: - string: '{"value": [{"id": "de691bb3-4191-4e3f-b119-fd14d8248f37", "type": "Notebook", - "displayName": "fabcli000003", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}, - {"id": "3c4accdb-4d14-4dc1-974e-b59eaa4f489c", "type": "DataPipeline", "displayName": - "fabcli000004", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}, - {"id": "e370d96c-07fc-4fd7-b39b-1535f95e66ea", "type": "SparkJobDefinition", - "displayName": "fabcli000006", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c", - "folderId": "072d7ba5-69a8-4ad2-8cfa-2622113df04e"}]}' + string: '{"value": [{"id": "3f09b34f-9c96-4bda-9cc3-8c80d78c1d3b", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}, + {"id": "2cdfbc2a-0fe6-40ac-8aae-5c6d89ec8eb4", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}, + {"id": "c8742bed-419c-48a5-9190-ed76c459f74c", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", + "folderId": "105f23f9-2490-41f7-a1c5-dc95d99acb4a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3070,15 +3070,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '302' + - '301' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:42:33 GMT + - Wed, 20 May 2026 08:36:23 GMT Pragma: - no-cache RequestId: - - 4fc61d5b-3ddc-4ae9-a5ce-68218cc5a970 + - 014a1a92-468d-43b3-a733-fd9abdaa411d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3104,13 +3104,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/ed64433c-171c-4a24-9cfd-8c09e729a34c/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/folders?recursive=True response: body: - string: '{"value": [{"id": "072d7ba5-69a8-4ad2-8cfa-2622113df04e", "displayName": - "fabcli000005", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}]}' + string: '{"value": [{"id": "105f23f9-2490-41f7-a1c5-dc95d99acb4a", "displayName": + "fabcli000005", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3119,15 +3119,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:42:35 GMT + - Wed, 20 May 2026 08:36:24 GMT Pragma: - no-cache RequestId: - - f05cab0d-11ea-4e99-883c-7d6c6dfaf276 + - 95823f14-43f3-433c-bdda-110ac029a9e5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3155,9 +3155,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/ed64433c-171c-4a24-9cfd-8c09e729a34c/items/e370d96c-07fc-4fd7-b39b-1535f95e66ea + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items/c8742bed-419c-48a5-9190-ed76c459f74c response: body: string: '' @@ -3173,11 +3173,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 23 Apr 2026 12:42:35 GMT + - Wed, 20 May 2026 08:36:26 GMT Pragma: - no-cache RequestId: - - c3902480-90e6-4a01-a1d9-5687a16971d0 + - aed4f075-f2e8-4dc1-a36c-ae6aea0bb5c9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3203,18 +3203,18 @@ interactions: Content-Type: - application/json User-Agent: - - 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": "ace730cf-7c25-4530-9b0a-403d51a84a39", + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001", + {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002", + {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -3224,15 +3224,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2418' + - '2691' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:42:35 GMT + - Wed, 20 May 2026 08:36:27 GMT Pragma: - no-cache RequestId: - - b83aada1-6a95-4130-88b9-59e5f8fc341b + - ffda10dc-af00-4e2d-ab9c-e7e3fa417904 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3258,15 +3258,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/ed64433c-171c-4a24-9cfd-8c09e729a34c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items response: body: - string: '{"value": [{"id": "de691bb3-4191-4e3f-b119-fd14d8248f37", "type": "Notebook", - "displayName": "fabcli000003", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}, - {"id": "3c4accdb-4d14-4dc1-974e-b59eaa4f489c", "type": "DataPipeline", "displayName": - "fabcli000004", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}]}' + string: '{"value": [{"id": "3f09b34f-9c96-4bda-9cc3-8c80d78c1d3b", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}, + {"id": "2cdfbc2a-0fe6-40ac-8aae-5c6d89ec8eb4", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3279,11 +3279,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:42:36 GMT + - Wed, 20 May 2026 08:36:27 GMT Pragma: - no-cache RequestId: - - d0ce3fb9-ef1b-4748-9c6c-f78cdd7f323f + - 557619f4-3319-4b10-a4f6-751986482bb5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3311,9 +3311,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/ed64433c-171c-4a24-9cfd-8c09e729a34c/items/3c4accdb-4d14-4dc1-974e-b59eaa4f489c + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items/2cdfbc2a-0fe6-40ac-8aae-5c6d89ec8eb4 response: body: string: '' @@ -3329,11 +3329,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 23 Apr 2026 12:42:36 GMT + - Wed, 20 May 2026 08:36:28 GMT Pragma: - no-cache RequestId: - - 5983ddd1-1718-41f5-ab6b-ae5fe2bd761c + - 066a55a4-0ab4-4030-8962-d43b37ce8c06 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3359,18 +3359,18 @@ interactions: Content-Type: - application/json User-Agent: - - 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": "ace730cf-7c25-4530-9b0a-403d51a84a39", + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001", + {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002", + {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -3380,15 +3380,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2418' + - '2691' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:42:37 GMT + - Wed, 20 May 2026 08:36:30 GMT Pragma: - no-cache RequestId: - - e90d2f3d-73ab-4c83-998d-81d202fd95c6 + - 38169040-35fb-446a-b2ab-8f38d734a54e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3414,13 +3414,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/ed64433c-171c-4a24-9cfd-8c09e729a34c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items response: body: - string: '{"value": [{"id": "de691bb3-4191-4e3f-b119-fd14d8248f37", "type": "Notebook", - "displayName": "fabcli000003", "description": "", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}]}' + string: '{"value": [{"id": "3f09b34f-9c96-4bda-9cc3-8c80d78c1d3b", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3429,15 +3429,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:42:36 GMT + - Wed, 20 May 2026 08:36:30 GMT Pragma: - no-cache RequestId: - - ef2b39eb-61e5-4129-8971-c47299ccb185 + - 923662c6-bf84-483c-bafb-5359b30b807e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3465,9 +3465,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/ed64433c-171c-4a24-9cfd-8c09e729a34c/items/de691bb3-4191-4e3f-b119-fd14d8248f37 + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items/3f09b34f-9c96-4bda-9cc3-8c80d78c1d3b response: body: string: '' @@ -3483,11 +3483,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 23 Apr 2026 12:42:37 GMT + - Wed, 20 May 2026 08:36:31 GMT Pragma: - no-cache RequestId: - - 3d44e4e7-6cd5-496a-9ed2-df05eb1d2705 + - 6e9cd56b-87f0-49e5-ba3c-0eed7d09c993 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3513,18 +3513,18 @@ interactions: Content-Type: - application/json User-Agent: - - 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": "ace730cf-7c25-4530-9b0a-403d51a84a39", + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001", + {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002", + {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -3534,15 +3534,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2418' + - '2691' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:42:38 GMT + - Wed, 20 May 2026 08:36:31 GMT Pragma: - no-cache RequestId: - - 99c61854-24ac-448b-9bb2-58cd7537acc4 + - a09b7a0a-4d90-4b9b-899d-19bf26a7cdf7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3568,13 +3568,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/ed64433c-171c-4a24-9cfd-8c09e729a34c/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/folders?recursive=True response: body: - string: '{"value": [{"id": "072d7ba5-69a8-4ad2-8cfa-2622113df04e", "displayName": - "fabcli000005", "workspaceId": "ed64433c-171c-4a24-9cfd-8c09e729a34c"}]}' + string: '{"value": [{"id": "105f23f9-2490-41f7-a1c5-dc95d99acb4a", "displayName": + "fabcli000005", "workspaceId": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3583,15 +3583,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '143' + - '142' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:42:38 GMT + - Wed, 20 May 2026 08:36:33 GMT Pragma: - no-cache RequestId: - - d208b765-2a36-4dc2-a0c9-dc2bf687f90d + - 47e9e153-2fe7-4bac-a91e-794ec673db80 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3619,9 +3619,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/ed64433c-171c-4a24-9cfd-8c09e729a34c/folders/072d7ba5-69a8-4ad2-8cfa-2622113df04e + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/folders/105f23f9-2490-41f7-a1c5-dc95d99acb4a response: body: string: '' @@ -3637,11 +3637,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 23 Apr 2026 12:42:38 GMT + - Wed, 20 May 2026 08:36:33 GMT Pragma: - no-cache RequestId: - - 3a9e2fc5-87a5-4435-beab-c8eab31f1b23 + - 32eab29c-aa5c-4e2b-ad3c-e85a2ed97183 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3667,18 +3667,18 @@ interactions: Content-Type: - application/json User-Agent: - - 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": "ace730cf-7c25-4530-9b0a-403d51a84a39", + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "ed64433c-171c-4a24-9cfd-8c09e729a34c", "displayName": "fabcli000001", + {"id": "84f91c13-86b2-41c3-a2ed-e5dae60c2b0e", "displayName": "fabcli000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002", + {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -3688,15 +3688,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2418' + - '2691' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:42:40 GMT + - Wed, 20 May 2026 08:36:34 GMT Pragma: - no-cache RequestId: - - 04b632c2-64a6-4ac3-9a06-0c5fafae416b + - 86895ea0-71ed-4020-ade7-8db3b26b8093 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3722,9 +3722,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/ed64433c-171c-4a24-9cfd-8c09e729a34c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e/items response: body: string: '{"value": []}' @@ -3740,11 +3740,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:42:40 GMT + - Wed, 20 May 2026 08:36:34 GMT Pragma: - no-cache RequestId: - - ad23ed30-5410-4469-ae9e-3f404dde4ec5 + - 39d1f140-e272-4850-ab61-4108b8e9eec0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3772,9 +3772,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/ed64433c-171c-4a24-9cfd-8c09e729a34c + uri: https://api.fabric.microsoft.com/v1/workspaces/84f91c13-86b2-41c3-a2ed-e5dae60c2b0e response: body: string: '' @@ -3790,11 +3790,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 23 Apr 2026 12:42:40 GMT + - Wed, 20 May 2026 08:36:36 GMT Pragma: - no-cache RequestId: - - 20466da4-bfc1-42ba-a35c-7bfe5e2cc515 + - b4e30f3e-e422-4ac9-9372-9a50c9889ba9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3820,16 +3820,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://api.fabric.microsoft.com/v1/workspaces response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "ace730cf-7c25-4530-9b0a-403d51a84a39", + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "b0c6f754-3685-4dc9-a679-2eb046618f22", "displayName": "fabcli000002", + {"id": "6b1091f5-3057-4e89-81f8-25884ca70f7a", "displayName": "fabcli000002", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -3839,15 +3839,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2377' + - '2655' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:42:40 GMT + - Wed, 20 May 2026 08:36:36 GMT Pragma: - no-cache RequestId: - - 7d060de8-1bf8-4d1e-8dbe-396505e45fb7 + - e4e97b68-0fef-4d99-82e4-172eb49946eb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3873,15 +3873,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/b0c6f754-3685-4dc9-a679-2eb046618f22/items + uri: https://api.fabric.microsoft.com/v1/workspaces/6b1091f5-3057-4e89-81f8-25884ca70f7a/items response: body: - string: '{"value": [{"id": "ce5bf52e-9577-4643-a6ea-c06443313768", "type": "Notebook", - "displayName": "fabcli000003", "description": "", "workspaceId": "b0c6f754-3685-4dc9-a679-2eb046618f22"}, - {"id": "85d8976a-20c1-4544-898a-859bd1b552df", "type": "DataPipeline", "displayName": - "fabcli000004", "description": "", "workspaceId": "b0c6f754-3685-4dc9-a679-2eb046618f22"}]}' + string: '{"value": [{"id": "0c98cff7-ac91-4b00-ae65-bd4b81c8a2da", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "6b1091f5-3057-4e89-81f8-25884ca70f7a"}, + {"id": "b435558b-c5b8-4cbd-82e5-aaf020d9fc5b", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "6b1091f5-3057-4e89-81f8-25884ca70f7a"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3890,15 +3890,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '222' + - '220' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 12:42:41 GMT + - Wed, 20 May 2026 08:36:37 GMT Pragma: - no-cache RequestId: - - 3c203570-15dd-4670-9d86-80d61473f8c3 + - 14cb6653-7ecb-426e-971d-69ff8cd27f4f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3926,9 +3926,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/b0c6f754-3685-4dc9-a679-2eb046618f22 + uri: https://api.fabric.microsoft.com/v1/workspaces/6b1091f5-3057-4e89-81f8-25884ca70f7a response: body: string: '' @@ -3944,11 +3944,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 23 Apr 2026 12:42:41 GMT + - Wed, 20 May 2026 08:36:39 GMT Pragma: - no-cache RequestId: - - 68f0b1f6-8e0c-4f73-aa64-9b5a631ba266 + - 141478ef-ffb5-4d65-99da-c472bf1224b2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_workspace_recursive_success.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_workspace_recursive_success.yaml index 8e9d7b388..7d93c7ffc 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_workspace_recursive_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_workspace_recursive_success.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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:09:32 GMT + - Wed, 20 May 2026 08:36:39 GMT Pragma: - no-cache RequestId: - - 6f2b50f8-9fbb-4833-8761-60a6db825fd2 + - 95befb87-41eb-489b-8171-67990be1e192 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:09:33 GMT + - Wed, 20 May 2026 08:36:40 GMT Pragma: - no-cache RequestId: - - 6b2bd881-3d98-46b1-ad93-0452b2e30313 + - 4e1b270b-e14d-4f3b-bbf1-3a195b986451 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,7 +113,7 @@ 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/capacities response: @@ -127,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '427' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:09:39 GMT + - Wed, 20 May 2026 08:36:46 GMT Pragma: - no-cache RequestId: - - 5d20ea45-fe47-49b6-8881-eba85772eafc + - cfff5515-b69e-438e-9356-945a8e18aa04 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -160,16 +162,16 @@ interactions: - keep-alive Content-Length: - '89' - 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 response: body: - string: '{"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -178,17 +180,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:09:47 GMT + - Wed, 20 May 2026 08:36:53 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e + - https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc Pragma: - no-cache RequestId: - - 60ab7511-cd68-4faa-9698-0e621e1dd84a + - 38edceb6-624d-4f50-af8a-e7428e99f74b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,15 +216,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -231,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2845' + - '2658' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:09:48 GMT + - Wed, 20 May 2026 08:36:55 GMT Pragma: - no-cache RequestId: - - 80dcbb1b-37a1-49b2-863d-767512cebc31 + - 3f2ba209-ad0e-48b6-9514-922da778a593 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,15 +269,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -282,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2845' + - '2658' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:09:48 GMT + - Wed, 20 May 2026 08:36:56 GMT Pragma: - no-cache RequestId: - - 09d01681-66a9-4de2-b63e-0b39b095d34d + - a3c6052d-4594-4620-80a7-6135b118164b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,7 +322,7 @@ 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/capacities response: @@ -332,15 +338,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '425' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:09:54 GMT + - Wed, 20 May 2026 08:37:00 GMT Pragma: - no-cache RequestId: - - 16ddb0b3-5aa7-4910-bd36-9b0498cef615 + - 20c8bc21-da42-4637-9e7b-49b83e8ca9b0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -365,16 +371,16 @@ interactions: - keep-alive Content-Length: - '89' - 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 response: body: - string: '{"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -383,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '154' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:03 GMT + - Wed, 20 May 2026 08:37:08 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40 + - https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d Pragma: - no-cache RequestId: - - bf1f7000-571e-4cd4-8cc0-8f40f9abc5f4 + - 34ec8a96-f00f-44e8-a54a-7f060cb038f2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -419,16 +425,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -437,15 +446,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:04 GMT + - Wed, 20 May 2026 08:37:09 GMT Pragma: - no-cache RequestId: - - bd28a755-bac4-40fd-80f5-abd1a27a468c + - 21a80756-c755-4816-8daf-cc211f0bc2bd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -471,9 +480,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items response: body: string: '{"value": []}' @@ -489,11 +498,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:04 GMT + - Wed, 20 May 2026 08:37:10 GMT Pragma: - no-cache RequestId: - - d1a52e6e-21ee-4ecb-b754-f9777b7f4d73 + - 29e04137-c92f-4f80-a62e-91728e719eea Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -519,9 +528,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items response: body: string: '{"value": []}' @@ -537,11 +546,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:06 GMT + - Wed, 20 May 2026 08:37:11 GMT Pragma: - no-cache RequestId: - - 9ef5bbdb-c16e-4aef-bf31-e4b42ec5c6d8 + - ae4e9bf9-766b-4bd6-94eb-27914275b5bf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -556,7 +565,9 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000003", "type": "Notebook", "folderId": null, "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", "payloadType": "InlineBase64"}]}}' + body: '{"displayName": "fabcli000003", "type": "Notebook", "folderId": null, "definition": + {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", + "payloadType": "InlineBase64"}]}}' headers: Accept: - '*/*' @@ -566,13 +577,12 @@ interactions: - keep-alive Content-Length: - '731' - 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/notebooks + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/notebooks response: body: string: 'null' @@ -588,15 +598,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:07 GMT + - Wed, 20 May 2026 08:37:13 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aafabd90-a9ec-4455-8c92-ee844eb8a6b3 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e2cb3428-4a68-4333-ba39-70bf0dd39c42 Pragma: - no-cache RequestId: - - ebd58dd6-d9d2-41be-8a6f-58e1d49a5420 + - 0325d11b-df64-45a3-94c6-6ab7bdf5af3e Retry-After: - '20' Strict-Transport-Security: @@ -610,7 +620,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - aafabd90-a9ec-4455-8c92-ee844eb8a6b3 + - e2cb3428-4a68-4333-ba39-70bf0dd39c42 status: code: 202 message: Accepted @@ -626,13 +636,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aafabd90-a9ec-4455-8c92-ee844eb8a6b3 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e2cb3428-4a68-4333-ba39-70bf0dd39c42 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:10:07.231195", - "lastUpdatedTimeUtc": "2026-02-06T07:10:08.9657404", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:37:13.0441136", + "lastUpdatedTimeUtc": "2026-05-20T08:37:14.5715385", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -642,17 +652,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '130' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:29 GMT + - Wed, 20 May 2026 08:37:34 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aafabd90-a9ec-4455-8c92-ee844eb8a6b3/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e2cb3428-4a68-4333-ba39-70bf0dd39c42/result Pragma: - no-cache RequestId: - - c1f37781-77cd-47bb-bf60-1dbbb2b307f8 + - 66143d75-49dd-4527-9bb7-d826c359e36d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -660,7 +670,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - aafabd90-a9ec-4455-8c92-ee844eb8a6b3 + - e2cb3428-4a68-4333-ba39-70bf0dd39c42 status: code: 200 message: OK @@ -676,14 +686,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aafabd90-a9ec-4455-8c92-ee844eb8a6b3/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e2cb3428-4a68-4333-ba39-70bf0dd39c42/result response: body: - string: '{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}' + string: '{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}' headers: Access-Control-Expose-Headers: - RequestId @@ -694,11 +703,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 07:10:30 GMT + - Wed, 20 May 2026 08:37:35 GMT Pragma: - no-cache RequestId: - - f620fe76-a20d-4511-8f1a-ba4c9905e4e1 + - a968a431-3420-4f91-96ea-a27f645684ad Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -722,16 +731,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -740,15 +752,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:31 GMT + - Wed, 20 May 2026 08:37:35 GMT Pragma: - no-cache RequestId: - - b4c3ec6b-4936-4745-9111-fdf16fbf6e22 + - eef9526a-ac13-4c0e-880d-a2dbbfa2e40f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -774,14 +786,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items response: body: - string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -790,15 +801,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '177' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:32 GMT + - Wed, 20 May 2026 08:37:37 GMT Pragma: - no-cache RequestId: - - 48a48948-06a2-4f02-b47d-ae63b7fe7c51 + - 271dc871-00b6-4edc-b065-a846ab5ca19a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -824,14 +835,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items response: body: - string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -840,15 +850,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '177' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:33 GMT + - Wed, 20 May 2026 08:37:38 GMT Pragma: - no-cache RequestId: - - 4e0e81ea-2dd1-403d-80d5-c435354448a1 + - e75326de-9503-4fbf-9ce7-e436248df671 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -873,18 +883,16 @@ interactions: - keep-alive Content-Length: - '77' - 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/dataPipelines + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/dataPipelines response: body: - string: '{"id": "ad72984e-0fb6-4852-a478-dd3821416ce4", "type": "DataPipeline", - "displayName": "fabcli000004", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}' + string: '{"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", + "displayName": "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -893,17 +901,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '169' + - '160' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:38 GMT + - Wed, 20 May 2026 08:37:43 GMT ETag: - '""' Pragma: - no-cache RequestId: - - c5e8af77-2b6b-4b36-99d7-d9a7afede0d2 + - 2674d488-0fb8-4708-9bdb-1479ee491ea2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -929,16 +937,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -947,15 +958,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:39 GMT + - Wed, 20 May 2026 08:37:44 GMT Pragma: - no-cache RequestId: - - 2adc9913-036f-413d-bb09-0190d8ee9742 + - ececcf41-17ae-4d8c-ad49-b867ed922af0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -981,9 +992,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: string: '{"value": []}' @@ -999,11 +1010,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:40 GMT + - Wed, 20 May 2026 08:37:45 GMT Pragma: - no-cache RequestId: - - 42d25e4f-ebb8-4749-bd95-b8a6d2c2ca12 + - 32d42b6e-312e-4764-b150-f6e465cfb17e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1029,9 +1040,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: string: '{"value": []}' @@ -1047,11 +1058,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:40 GMT + - Wed, 20 May 2026 08:37:45 GMT Pragma: - no-cache RequestId: - - d3879b28-478d-4db1-b7f5-39830502672c + - 6f51b591-1700-44c2-a0b1-aa9e53db6358 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1075,17 +1086,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders response: body: - string: '{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": "fabcli000005", - "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}' + string: '{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": "fabcli000005", + "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -1094,17 +1105,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '134' + - '133' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:42 GMT + - Wed, 20 May 2026 08:37:46 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders/5ac60325-e9cc-4450-86c3-95d68719a15a + - https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders/a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7 Pragma: - no-cache RequestId: - - 9d720e6b-6e7e-424c-b0d5-b1ca1f0e008b + - 71070d3c-f8e5-4f71-afc7-4c091225ef87 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1130,16 +1141,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1148,15 +1162,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:42 GMT + - Wed, 20 May 2026 08:37:47 GMT Pragma: - no-cache RequestId: - - 937abb67-0669-4d42-8c4f-98c456194dc6 + - d268da3a-2c50-457c-bc2a-62031662cad0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1182,13 +1196,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1197,15 +1211,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:43 GMT + - Wed, 20 May 2026 08:37:48 GMT Pragma: - no-cache RequestId: - - e8abfc91-d163-4e96-b960-29e0d57d0efa + - cc248a14-b772-4859-a787-3359319fc611 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1231,15 +1245,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items response: body: - string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1248,15 +1262,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '233' + - '221' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:43 GMT + - Wed, 20 May 2026 08:37:50 GMT Pragma: - no-cache RequestId: - - eea3bcf5-d983-43c8-adbd-886b360af8b3 + - 7dc316c8-b45b-437b-a3a8-fa412ae4236f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1282,15 +1296,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items response: body: - string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1299,15 +1313,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '233' + - '221' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:45 GMT + - Wed, 20 May 2026 08:37:51 GMT Pragma: - no-cache RequestId: - - e803605a-307d-4d9b-8a20-7393fe798508 + - 19ef4ec5-9437-4970-84f6-041fea08c297 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1322,8 +1336,8 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000006", "type": - "SparkJobDefinition", "folderId": "5ac60325-e9cc-4450-86c3-95d68719a15a"}' + body: '{"displayName": "fabcli000006", "type": "SparkJobDefinition", "folderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}' headers: Accept: - '*/*' @@ -1333,18 +1347,17 @@ interactions: - keep-alive Content-Length: - '117' - 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/sparkJobDefinitions + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/sparkJobDefinitions response: body: - string: '{"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90", "type": "SparkJobDefinition", - "displayName": "fabcli000006", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": "5ac60325-e9cc-4450-86c3-95d68719a15a"}' + string: '{"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1353,17 +1366,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '205' + - '195' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:46 GMT + - Wed, 20 May 2026 08:37:52 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 12429071-cb24-4d17-b541-f54b011c2a37 + - 9eac379a-17a5-417e-b793-1af3ca7546e2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1389,16 +1402,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1407,15 +1423,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:47 GMT + - Wed, 20 May 2026 08:37:52 GMT Pragma: - no-cache RequestId: - - 71654975-7ae1-4290-9d7c-4b1fd5b66f20 + - 08d6b885-4611-4c24-a654-b77e9808cec3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1441,13 +1457,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1456,15 +1472,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:47 GMT + - Wed, 20 May 2026 08:37:53 GMT Pragma: - no-cache RequestId: - - fcdeed96-5227-4b0b-b5cf-5ff05d455b1c + - 61a49350-4ad5-4dd3-96fc-e902d9159c33 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1490,13 +1506,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1505,15 +1521,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:48 GMT + - Wed, 20 May 2026 08:37:55 GMT Pragma: - no-cache RequestId: - - c26a4aef-75fb-487a-8477-5f716b222c71 + - c8840386-5629-4058-939b-ecd406cb2e41 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1539,13 +1555,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1554,15 +1570,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:50 GMT + - Wed, 20 May 2026 08:37:54 GMT Pragma: - no-cache RequestId: - - c2a4082a-9f6a-4c6c-9d7b-ed58aab63b6f + - cb0b5491-a626-4a50-9604-b1f6065a803d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1577,8 +1593,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a"}' + body: '{"displayName": "fabcli000007", "parentFolderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}' headers: Accept: - '*/*' @@ -1588,17 +1603,16 @@ interactions: - keep-alive Content-Length: - '93' - 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders response: body: - string: '{"id": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", - "parentFolderId": "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}' + string: '{"id": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", + "parentFolderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -1611,13 +1625,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:50 GMT + - Wed, 20 May 2026 08:37:56 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders/8bc050b1-0bfd-472d-8dca-319b9d248a54 + - https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders/c29d7414-de5d-4d2f-b142-38b5b29843cd Pragma: - no-cache RequestId: - - 24bfb8c7-95a6-43a0-b3a3-acbd4eb6dfab + - dce5907c-5d96-4a35-af71-7fb0ea139e2c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1643,16 +1657,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1661,15 +1678,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:51 GMT + - Wed, 20 May 2026 08:37:56 GMT Pragma: - no-cache RequestId: - - 4c599b76-88b2-47cb-8eaa-52c8058e5895 + - 89435973-03a3-4908-84d7-fca41f6702db Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1695,15 +1712,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1712,15 +1729,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '204' + - '202' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:52 GMT + - Wed, 20 May 2026 08:37:57 GMT Pragma: - no-cache RequestId: - - 0689f765-4a5c-4a61-8995-762fb4d45bd3 + - 85266a76-c583-4c75-b596-0162e3ab4624 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1746,15 +1763,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1763,15 +1780,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '204' + - '202' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:52 GMT + - Wed, 20 May 2026 08:37:58 GMT Pragma: - no-cache RequestId: - - 1408c244-5586-438f-8e49-eaa7c3cd81a9 + - db442282-5962-4e2a-9a90-18eb9690527a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1797,17 +1814,18 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items response: body: - string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90", - "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a"}]}' + string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1816,15 +1834,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '315' + - '303' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:54 GMT + - Wed, 20 May 2026 08:37:59 GMT Pragma: - no-cache RequestId: - - f990f3da-2f9c-44b3-8412-d7b2272afa9e + - bc6ce8b3-1bbe-4938-aa5c-6a91f2daaa83 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1850,15 +1868,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1867,15 +1885,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '204' + - '202' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:54 GMT + - Wed, 20 May 2026 08:38:00 GMT Pragma: - no-cache RequestId: - - 01dd6765-7057-457a-a436-bd64c4d085c5 + - 1dc215c6-19b7-4d71-8ee9-fe42682073f1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1901,17 +1919,18 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items response: body: - string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90", - "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a"}]}' + string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1920,15 +1939,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '315' + - '303' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:54 GMT + - Wed, 20 May 2026 08:38:01 GMT Pragma: - no-cache RequestId: - - 7e6055ea-74df-46ea-8204-3de0a1cd69b6 + - f0ae4168-2678-4560-8d77-5ce1cda62a4e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1954,15 +1973,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1971,15 +1990,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '204' + - '202' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:55 GMT + - Wed, 20 May 2026 08:38:02 GMT Pragma: - no-cache RequestId: - - cd9ba623-f74b-4a70-b0c2-418f06d7c253 + - 1696ccb1-ef7c-4e76-a4a1-e6a08e19a240 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1994,9 +2013,8 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000008", "type": - "Notebook", "folderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "definition": - {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", + body: '{"displayName": "fabcli000008", "type": "Notebook", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", + "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", "payloadType": "InlineBase64"}]}}' headers: Accept: @@ -2007,13 +2025,12 @@ interactions: - keep-alive Content-Length: - '765' - 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/notebooks + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/notebooks response: body: string: 'null' @@ -2029,15 +2046,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:10:57 GMT + - Wed, 20 May 2026 08:38:04 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/26f65f72-bf9b-4eec-9e25-ae4965c060ac + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cf8e511d-ac21-4264-bd8e-3066703e2a27 Pragma: - no-cache RequestId: - - fa90a812-9935-415a-9193-7e4057cc2113 + - 7a3d824d-ee04-485e-b433-400ab1ad5022 Retry-After: - '20' Strict-Transport-Security: @@ -2051,7 +2068,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 26f65f72-bf9b-4eec-9e25-ae4965c060ac + - cf8e511d-ac21-4264-bd8e-3066703e2a27 status: code: 202 message: Accepted @@ -2067,13 +2084,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/26f65f72-bf9b-4eec-9e25-ae4965c060ac + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cf8e511d-ac21-4264-bd8e-3066703e2a27 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:10:57.3657142", - "lastUpdatedTimeUtc": "2026-02-06T07:10:58.4911428", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:38:04.1745087", + "lastUpdatedTimeUtc": "2026-05-20T08:38:05.4003198", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -2083,17 +2100,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '130' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:11:18 GMT + - Wed, 20 May 2026 08:38:25 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/26f65f72-bf9b-4eec-9e25-ae4965c060ac/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cf8e511d-ac21-4264-bd8e-3066703e2a27/result Pragma: - no-cache RequestId: - - 9058dda6-9b2c-4422-abcc-a6a1c39330d7 + - e3ad16eb-c9bd-4580-84dc-dfeedfa961f7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2101,7 +2118,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 26f65f72-bf9b-4eec-9e25-ae4965c060ac + - cf8e511d-ac21-4264-bd8e-3066703e2a27 status: code: 200 message: OK @@ -2117,14 +2134,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/26f65f72-bf9b-4eec-9e25-ae4965c060ac/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/cf8e511d-ac21-4264-bd8e-3066703e2a27/result response: body: - string: '{"id": "026af425-a57f-470f-a2b7-96dd24537cb7", "type": "Notebook", - "displayName": "fabcli000008", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54"}' + string: '{"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3", "type": "Notebook", + "displayName": "fabcli000008", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"}' headers: Access-Control-Expose-Headers: - RequestId @@ -2135,11 +2152,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 07:11:20 GMT + - Wed, 20 May 2026 08:38:26 GMT Pragma: - no-cache RequestId: - - 88c32bb0-590c-45a7-a142-9f2caaab73b0 + - 64983a06-82bf-4233-be82-531e6262e39d Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -2163,16 +2180,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2181,15 +2201,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:11:20 GMT + - Wed, 20 May 2026 08:38:26 GMT Pragma: - no-cache RequestId: - - 8556878e-c79e-4fb6-ab22-48e9616d71d3 + - ca68acda-e9f8-4da2-a3a6-e9398a0754b7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2215,55 +2235,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True - response: - body: - string: '{"requestId": "401fb25f-6ec9-444e-9a50-fc63d1dde81a", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 7:11:40 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:11:21 GMT - RequestId: - - 401fb25f-6ec9-444e-9a50-fc63d1dde81a - Retry-After: - - '19' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2272,15 +2252,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '204' + - '202' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:11:42 GMT + - Wed, 20 May 2026 08:38:27 GMT Pragma: - no-cache RequestId: - - a598d902-bc2c-49d0-817e-667c4a2c6c68 + - fbed6254-740e-4e86-9c8e-3666c62c61a1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2306,15 +2286,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2323,15 +2303,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '204' + - '202' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:11:43 GMT + - Wed, 20 May 2026 08:38:28 GMT Pragma: - no-cache RequestId: - - c125fe42-1709-4415-abc4-6dd7c7db6e23 + - 75319999-a1f2-4c13-9bb3-aa537e271921 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2357,15 +2337,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2374,15 +2354,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '204' + - '202' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:11:43 GMT + - Wed, 20 May 2026 08:38:29 GMT Pragma: - no-cache RequestId: - - 6dd01067-6a05-4ce1-8bfb-fbf0cd357c60 + - ebcbcd65-5afc-4a05-a09a-63493213efa0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2408,15 +2388,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2425,15 +2405,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '204' + - '202' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:11:44 GMT + - Wed, 20 May 2026 08:38:30 GMT Pragma: - no-cache RequestId: - - cdab3d89-8afe-4a74-8903-9bfcab1e7333 + - cab3a65d-0672-4061-bdd0-f47dc0cf69c6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2448,8 +2428,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000009", "parentFolderId": - "8bc050b1-0bfd-472d-8dca-319b9d248a54"}' + body: '{"displayName": "fabcli000009", "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"}' headers: Accept: - '*/*' @@ -2459,17 +2438,16 @@ interactions: - keep-alive Content-Length: - '93' - 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders response: body: - string: '{"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}' + string: '{"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -2478,17 +2456,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '167' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:11:45 GMT + - Wed, 20 May 2026 08:38:30 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders/0f7dddf1-2640-4896-8afb-e5e75e01f71a + - https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders/fffd0349-9469-4178-a508-c3bc2a5926cd Pragma: - no-cache RequestId: - - 07e2e83e-c424-4b02-b6d9-96b4f46ac0a2 + - 7ae48188-2345-451c-901f-a2ff4b604980 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2514,16 +2492,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2532,15 +2513,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:11:46 GMT + - Wed, 20 May 2026 08:38:31 GMT Pragma: - no-cache RequestId: - - 409eb2cc-2f1b-4e76-adc6-12bcdf3ff03c + - 0a123a58-9c80-4339-99e6-2ecbcc9ea173 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2566,17 +2547,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2585,15 +2566,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:11:46 GMT + - Wed, 20 May 2026 08:38:32 GMT Pragma: - no-cache RequestId: - - f30837d4-c93a-42f4-ae9b-d708fb28c60d + - 9568d4c0-cdfc-44e7-a5a2-6f8fbbcd94fa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2619,17 +2600,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2638,15 +2619,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:11:48 GMT + - Wed, 20 May 2026 08:38:33 GMT Pragma: - no-cache RequestId: - - db7536b0-b232-4aff-9e30-a1bcf7d8a768 + - 66601cc9-adf2-417f-8aca-41b5f195355a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2672,17 +2653,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2691,15 +2672,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:11:48 GMT + - Wed, 20 May 2026 08:38:34 GMT Pragma: - no-cache RequestId: - - 31ac4c0f-d8ca-4250-b113-bebfe43422d2 + - fc3e3cb5-b9bb-4f7a-a536-504ddfd5a69d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2725,19 +2706,20 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items response: body: - string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90", - "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7", - "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "8bc050b1-0bfd-472d-8dca-319b9d248a54"}]}' + string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3", + "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId": + "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2746,15 +2728,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '375' + - '367' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:11:49 GMT + - Wed, 20 May 2026 08:38:35 GMT Pragma: - no-cache RequestId: - - 0a975835-5d92-4fcc-b6fe-73c930983dd0 + - 9fcd2da7-485e-4d94-aded-bf53d4d706f2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2780,17 +2762,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2799,15 +2781,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:11:49 GMT + - Wed, 20 May 2026 08:38:35 GMT Pragma: - no-cache RequestId: - - 030ab6af-c956-437e-8cb1-e30feffbf8ff + - 84770eaa-f16b-4be5-89cf-a862e7ed65f9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2833,17 +2815,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2852,15 +2834,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:11:50 GMT + - Wed, 20 May 2026 08:38:36 GMT Pragma: - no-cache RequestId: - - 45c57b9d-d963-48a3-9abf-255d724742a7 + - 7f4f6ca8-9a1c-4e4b-b2d1-150b41f9c249 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2886,19 +2868,20 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items response: body: - string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90", - "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7", - "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "8bc050b1-0bfd-472d-8dca-319b9d248a54"}]}' + string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3", + "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId": + "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2907,15 +2890,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '375' + - '367' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:11:51 GMT + - Wed, 20 May 2026 08:38:37 GMT Pragma: - no-cache RequestId: - - 1beb70f0-4603-407f-86de-f0eca335df44 + - 961873c4-0fe9-4b2b-abf5-07d8c12f0597 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2941,17 +2924,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2960,15 +2943,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:11:53 GMT + - Wed, 20 May 2026 08:38:38 GMT Pragma: - no-cache RequestId: - - dbcae0b9-97a4-42a4-9775-12b0ecba0669 + - ced344e1-96a9-4f42-ba54-53c883a0a487 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2994,57 +2977,17 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True - response: - body: - string: '{"requestId": "b3188c81-b922-4786-93af-fb6782895ed7", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 7:12:43 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:11:53 GMT - RequestId: - - b3188c81-b922-4786-93af-fb6782895ed7 - Retry-After: - - '50' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3053,15 +2996,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:12:46 GMT + - Wed, 20 May 2026 08:38:39 GMT Pragma: - no-cache RequestId: - - 7a987023-0d12-442f-86ca-3b7655804b9e + - b8fac4fe-e40c-48bf-bcdc-d02579db8754 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3076,8 +3019,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000010", "type": - "DataPipeline", "folderId": "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}' + body: '{"displayName": "fabcli000010", "type": "DataPipeline", "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}' headers: Accept: - '*/*' @@ -3086,18 +3028,18 @@ interactions: Connection: - keep-alive Content-Length: - - '144' + - '111' 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/dataPipelines + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/dataPipelines response: body: - string: '{"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc", "type": "DataPipeline", - "displayName": "fabcli000010", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}' + string: '{"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", + "displayName": "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -3106,17 +3048,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '201' + - '191' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:12:50 GMT + - Wed, 20 May 2026 08:38:43 GMT ETag: - '""' Pragma: - no-cache RequestId: - - c62ab790-6b61-4b2b-92b9-de98152cd79a + - f0c76d39-bfa0-402b-8a34-781c183e4902 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3142,16 +3084,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3160,15 +3105,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:12:51 GMT + - Wed, 20 May 2026 08:38:44 GMT Pragma: - no-cache RequestId: - - 3229b522-df54-43f0-b498-0a62642510a4 + - 19be8dd2-6784-4283-9508-ba776d5781ce Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3194,16 +3139,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3212,15 +3160,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:12:51 GMT + - Wed, 20 May 2026 08:38:45 GMT Pragma: - no-cache RequestId: - - 472bbaa0-a6b3-47de-931e-e61c759b2dfe + - f5aecbb8-e77f-4cca-8cf8-c6798c649c67 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3246,21 +3194,23 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items response: body: - string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90", - "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7", - "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "8bc050b1-0bfd-472d-8dca-319b9d248a54"}, {"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc", - "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}]}' + string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3", + "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId": + "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"}, + {"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", "displayName": + "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3269,15 +3219,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '437' + - '425' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:12:53 GMT + - Wed, 20 May 2026 08:38:46 GMT Pragma: - no-cache RequestId: - - 972fecd3-75db-4298-a40e-aca89c015e85 + - 9876abe5-3d88-409d-8045-067092832429 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3303,17 +3253,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3322,15 +3272,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:12:54 GMT + - Wed, 20 May 2026 08:38:47 GMT Pragma: - no-cache RequestId: - - 44b32bd7-a31f-4f2f-8db7-8488e0b15db7 + - 41e4191c-ef2f-4d0c-9cf5-398cdc6aab92 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3356,17 +3306,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3375,15 +3325,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:12:54 GMT + - Wed, 20 May 2026 08:38:47 GMT Pragma: - no-cache RequestId: - - 7196e514-ac6d-47b7-8bf9-1f01ec51c297 + - 0ce94a22-9d2e-4364-8299-fa4532961d15 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3409,17 +3359,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3428,15 +3378,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:12:54 GMT + - Wed, 20 May 2026 08:38:49 GMT Pragma: - no-cache RequestId: - - 2cc0d1b7-1772-454e-bc8e-5aa966ead51b + - 98c2b5fa-ca37-46e0-8d24-f3b30207eb39 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3462,17 +3412,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3481,15 +3431,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:12:56 GMT + - Wed, 20 May 2026 08:38:49 GMT Pragma: - no-cache RequestId: - - 732d436f-1976-4d4f-82fd-98ff137a3193 + - 426b121a-ab44-4aac-b141-eb15beb5370f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3515,16 +3465,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -3533,15 +3486,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:12:56 GMT + - Wed, 20 May 2026 08:38:50 GMT Pragma: - no-cache RequestId: - - e9a16bbe-c9a6-41d1-af28-78c0a37c2f04 + - 8eaf633a-534f-47e8-beb9-ce47a581c863 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3567,9 +3520,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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items response: body: string: '{"value": []}' @@ -3585,11 +3538,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:12:57 GMT + - Wed, 20 May 2026 08:38:50 GMT Pragma: - no-cache RequestId: - - ba4dbbc1-26c6-49c8-b2c2-8c86bfaa931e + - a2beb44b-2302-4100-9549-83ea36d021c4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3615,9 +3568,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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items response: body: string: '{"value": []}' @@ -3633,11 +3586,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:12:58 GMT + - Wed, 20 May 2026 08:38:51 GMT Pragma: - no-cache RequestId: - - 5c763291-a54c-4392-9645-5dcf656a6703 + - b23961ca-0d9a-4607-ad57-227c5388c6b6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3663,9 +3616,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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items response: body: string: '{"value": []}' @@ -3681,11 +3634,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:12:59 GMT + - Wed, 20 May 2026 08:38:51 GMT Pragma: - no-cache RequestId: - - 50c52bb5-4bf2-4a91-bcc2-c121f6bf1ee4 + - 6ae22799-7f00-4357-a018-876cce6aca5f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3711,14 +3664,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items/e0612997-1710-47a0-8195-286fc037e24c + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items/5a2e7c38-50e8-442d-b973-118e8a666892 response: body: - string: '{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}' + string: '{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -3727,17 +3679,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:13:00 GMT + - Wed, 20 May 2026 08:38:52 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 5534f9e0-21bd-466b-b68e-db78b06c854f + - 71a6b0a8-3f5c-4fda-8d53-b006d76f10da Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3765,9 +3717,9 @@ interactions: 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items/e0612997-1710-47a0-8195-286fc037e24c/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items/5a2e7c38-50e8-442d-b973-118e8a666892/getDefinition response: body: string: 'null' @@ -3783,13 +3735,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:13:00 GMT + - Wed, 20 May 2026 08:38:53 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6d3bbce8-d5e9-4dbc-9034-0a98670477db + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bfcf94e8-74e5-4af7-8ba4-b99bed4e454f Pragma: - no-cache RequestId: - - 27dafcd3-fb34-48bb-a4c6-3dc22801f927 + - 66392d5c-8ea4-4fdb-b01f-b0df22449b59 Retry-After: - '20' Strict-Transport-Security: @@ -3803,7 +3755,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 6d3bbce8-d5e9-4dbc-9034-0a98670477db + - bfcf94e8-74e5-4af7-8ba4-b99bed4e454f status: code: 202 message: Accepted @@ -3819,13 +3771,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6d3bbce8-d5e9-4dbc-9034-0a98670477db + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bfcf94e8-74e5-4af7-8ba4-b99bed4e454f response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:13:01.5804993", - "lastUpdatedTimeUtc": "2026-02-06T07:13:01.8930008", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:38:53.6299812", + "lastUpdatedTimeUtc": "2026-05-20T08:38:54.3311087", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -3835,17 +3787,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '129' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:13:22 GMT + - Wed, 20 May 2026 08:39:14 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6d3bbce8-d5e9-4dbc-9034-0a98670477db/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bfcf94e8-74e5-4af7-8ba4-b99bed4e454f/result Pragma: - no-cache RequestId: - - bb706cb3-9ad9-44bb-afb2-48db3a9ce221 + - c14743ca-b671-40c2-8fec-8e5c0ef29258 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -3853,7 +3805,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 6d3bbce8-d5e9-4dbc-9034-0a98670477db + - bfcf94e8-74e5-4af7-8ba4-b99bed4e454f status: code: 200 message: OK @@ -3869,14 +3821,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6d3bbce8-d5e9-4dbc-9034-0a98670477db/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/bfcf94e8-74e5-4af7-8ba4-b99bed4e454f/result response: body: string: '{"definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -3888,11 +3840,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 07:13:23 GMT + - Wed, 20 May 2026 08:39:15 GMT Pragma: - no-cache RequestId: - - f9026c6d-9eca-46d0-9c9a-0bcad5b1ccdd + - bc4787a3-0f62-4dd9-9f8d-d4016174544f Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -3905,7 +3857,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "Notebook", "displayName": "fabcli000003", "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}, "folderId": null}' + body: '{"type": "Notebook", "displayName": "fabcli000003", "definition": {"parts": + [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDMiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}]}, "folderId": null}' headers: Accept: - '*/*' @@ -3914,14 +3869,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1252' - + - '1204' 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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items response: body: string: 'null' @@ -3937,15 +3891,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:13:26 GMT + - Wed, 20 May 2026 08:39:16 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2c7623bb-0e10-4541-9493-405d752657c3 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/90b46f02-54bd-4e32-b03b-2a6758591740 Pragma: - no-cache RequestId: - - 93c7964d-2dfe-4cc0-ba54-c30224d87d8d + - 1b07f6d3-a10a-4d87-bfa9-30833c9a958d Retry-After: - '20' Strict-Transport-Security: @@ -3959,7 +3913,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 2c7623bb-0e10-4541-9493-405d752657c3 + - 90b46f02-54bd-4e32-b03b-2a6758591740 status: code: 202 message: Accepted @@ -3975,13 +3929,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2c7623bb-0e10-4541-9493-405d752657c3 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/90b46f02-54bd-4e32-b03b-2a6758591740 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:13:25.371715", - "lastUpdatedTimeUtc": "2026-02-06T07:13:27.340993", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:39:16.0708146", + "lastUpdatedTimeUtc": "2026-05-20T08:39:17.664388", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -3991,17 +3945,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '129' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:13:48 GMT + - Wed, 20 May 2026 08:39:36 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2c7623bb-0e10-4541-9493-405d752657c3/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/90b46f02-54bd-4e32-b03b-2a6758591740/result Pragma: - no-cache RequestId: - - 1fc0cf06-6e99-4f7b-998c-ffe234244f2e + - d4f6fd9d-5802-4605-8066-018a07ca641a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4009,7 +3963,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 2c7623bb-0e10-4541-9493-405d752657c3 + - 90b46f02-54bd-4e32-b03b-2a6758591740 status: code: 200 message: OK @@ -4025,14 +3979,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2c7623bb-0e10-4541-9493-405d752657c3/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/90b46f02-54bd-4e32-b03b-2a6758591740/result response: body: - string: '{"id": "ef61ccc3-71c4-4ff2-9554-e52e4a549b14", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}' + string: '{"id": "38a86bcc-82f4-4f58-9cba-c8aac226aa5d", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}' headers: Access-Control-Expose-Headers: - RequestId @@ -4043,11 +3996,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 07:13:48 GMT + - Wed, 20 May 2026 08:39:38 GMT Pragma: - no-cache RequestId: - - a5c59908-c22f-4524-b134-c45323869fd8 + - 31b2ee36-6e4f-440f-ad60-30e7360b9940 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -4071,16 +4024,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4089,15 +4045,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:13:49 GMT + - Wed, 20 May 2026 08:39:38 GMT Pragma: - no-cache RequestId: - - f5caa236-d6ad-484d-a86d-a637e525a7e7 + - 8bc2bcd5-94e0-41ab-9b35-367ffcdcbeb1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4123,14 +4079,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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items response: body: - string: '{"value": [{"id": "ef61ccc3-71c4-4ff2-9554-e52e4a549b14", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "38a86bcc-82f4-4f58-9cba-c8aac226aa5d", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4139,15 +4094,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '165' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:13:50 GMT + - Wed, 20 May 2026 08:39:39 GMT Pragma: - no-cache RequestId: - - aac3b714-2ded-4a3e-aa0a-fc4a488b4b91 + - ee9b1c19-ac93-495e-8ef5-77a9a7f2e337 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4173,14 +4128,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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items response: body: - string: '{"value": [{"id": "ef61ccc3-71c4-4ff2-9554-e52e4a549b14", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "38a86bcc-82f4-4f58-9cba-c8aac226aa5d", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4189,15 +4143,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '165' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:13:51 GMT + - Wed, 20 May 2026 08:39:40 GMT Pragma: - no-cache RequestId: - - 963ba17b-995c-4c20-9a6b-f2606684159a + - 0e7e5459-9319-4cf6-bdf2-355a6d97df7b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4223,14 +4177,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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items response: body: - string: '{"value": [{"id": "ef61ccc3-71c4-4ff2-9554-e52e4a549b14", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "38a86bcc-82f4-4f58-9cba-c8aac226aa5d", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4239,15 +4192,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '165' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:13:51 GMT + - Wed, 20 May 2026 08:39:42 GMT Pragma: - no-cache RequestId: - - ad1c751a-1bd4-488e-a3fd-069e7a7d7370 + - d2af0d98-bb5e-43c0-ab62-7c115e0c449c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4273,14 +4226,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items/ad72984e-0fb6-4852-a478-dd3821416ce4 + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items/70d2a102-4825-405b-9a3f-dc5f3944e33b response: body: - string: '{"id": "ad72984e-0fb6-4852-a478-dd3821416ce4", "type": "DataPipeline", - "displayName": "fabcli000004", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}' + string: '{"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", + "displayName": "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -4289,17 +4241,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '169' + - '160' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:13:53 GMT + - Wed, 20 May 2026 08:39:43 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 512f46c7-c3a5-4799-a185-59088b6b13c2 + - b67e8ae3-1edc-4c76-843e-854f795b1ce8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4327,14 +4279,14 @@ interactions: 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items/ad72984e-0fb6-4852-a478-dd3821416ce4/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items/70d2a102-4825-405b-9a3f-dc5f3944e33b/getDefinition response: body: string: '{"definition": {"parts": [{"path": "pipeline-content.json", "payload": "ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==", "payloadType": - "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -4344,15 +4296,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '458' + - '441' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:13:54 GMT + - Wed, 20 May 2026 08:39:43 GMT Pragma: - no-cache RequestId: - - 4a77dfa1-fd18-4471-8df3-3f2034897729 + - 43cffa28-92ab-4410-ba18-b630c8f052a2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4367,7 +4319,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "DataPipeline", "displayName": "fabcli000004", "definition": {"parts": [{"path": "pipeline-content.json", "payload": "ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==", "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", "payloadType": "InlineBase64"}]}, "folderId": null}' + body: '{"type": "DataPipeline", "displayName": "fabcli000004", "definition": {"parts": + [{"path": "pipeline-content.json", "payload": "ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA0IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "payloadType": "InlineBase64"}]}, "folderId": null}' headers: Accept: - '*/*' @@ -4376,19 +4331,17 @@ interactions: Connection: - keep-alive Content-Length: - - '778' - + - '726' 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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items response: body: - string: '{"id": "6da7abe9-44db-49be-a885-48f74490660f", "type": "DataPipeline", - "displayName": "fabcli000004", "workspaceId": - "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}' + string: '{"id": "971e55ca-ba5d-47d9-88df-235b11e7e5cc", "type": "DataPipeline", + "displayName": "fabcli000004", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -4397,17 +4350,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '169' + - '160' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:14:00 GMT + - Wed, 20 May 2026 08:39:50 GMT ETag: - '""' Pragma: - no-cache RequestId: - - ca778f0b-d6b2-40b7-a203-e43e98a175ef + - c68153db-19a1-4a21-8492-9fdc1a09e969 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4433,16 +4386,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4451,15 +4407,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:14:00 GMT + - Wed, 20 May 2026 08:39:50 GMT Pragma: - no-cache RequestId: - - c1999e71-1a1a-4412-897e-4b710fa1dfb1 + - 0b56ab87-07af-463c-8789-7b59bf261942 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4485,9 +4441,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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True response: body: string: '{"value": []}' @@ -4503,11 +4459,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:14:01 GMT + - Wed, 20 May 2026 08:39:51 GMT Pragma: - no-cache RequestId: - - 05c3417b-8846-4ec8-9141-0535fda370a2 + - 3c26abd8-1aea-442e-b65b-4c95b54d9125 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4533,9 +4489,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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True response: body: string: '{"value": []}' @@ -4551,11 +4507,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:14:02 GMT + - Wed, 20 May 2026 08:39:52 GMT Pragma: - no-cache RequestId: - - b2cad905-45b5-435f-a325-0d0f5c28d736 + - 6064edd3-4024-4ba8-b968-ee748f944091 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4579,17 +4535,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders response: body: - string: '{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName": "fabcli000005", - "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}' + string: '{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName": "fabcli000005", + "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -4598,17 +4554,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '133' + - '134' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:14:02 GMT + - Wed, 20 May 2026 08:39:53 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders/e45124b0-437b-4c39-80a4-7d35e7cec8fe + - https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders/a7a0457b-c329-46d9-9633-d97806acc7d7 Pragma: - no-cache RequestId: - - a000d8b1-96fb-4e63-aa7f-3176df4028df + - cd83e3ae-da3c-4d16-80cd-00a84c2c9b44 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4634,21 +4590,23 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items response: body: - string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90", - "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7", - "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "8bc050b1-0bfd-472d-8dca-319b9d248a54"}, {"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc", - "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}]}' + string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3", + "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId": + "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"}, + {"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", "displayName": + "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4657,15 +4615,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '437' + - '425' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:14:03 GMT + - Wed, 20 May 2026 08:39:53 GMT Pragma: - no-cache RequestId: - - 9b4bd42e-e50b-4bee-8e88-0ddb41576575 + - 763559cb-bdbd-4334-99cd-d6a58247b028 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4691,17 +4649,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4710,15 +4668,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:14:03 GMT + - Wed, 20 May 2026 08:39:54 GMT Pragma: - no-cache RequestId: - - 8c42f36a-e1f1-409a-ade0-04a74f836aef + - f9285a8b-2745-4fc2-bad1-4441825273f3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4744,17 +4702,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4763,15 +4721,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:14:05 GMT + - Wed, 20 May 2026 08:39:55 GMT Pragma: - no-cache RequestId: - - eb2c045d-8b46-4f31-9777-483e47d88cd3 + - ec1d48f3-acea-44bd-b707-b22ff2cd8eb0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4797,17 +4755,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4816,15 +4774,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:14:06 GMT + - Wed, 20 May 2026 08:39:56 GMT Pragma: - no-cache RequestId: - - 2f5a1f8d-af98-4730-9d88-9cc21e01d02e + - 4bdac859-443d-4559-90a9-624750ff9c7a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4850,17 +4808,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4869,15 +4827,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:14:06 GMT + - Wed, 20 May 2026 08:39:57 GMT Pragma: - no-cache RequestId: - - 53ba5203-b404-493d-84d4-549c4cbe7643 + - 0287b4c4-941b-4cad-9f50-256db0dbe331 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4903,21 +4861,23 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items response: body: - string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90", - "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7", - "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "8bc050b1-0bfd-472d-8dca-319b9d248a54"}, {"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc", - "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}]}' + string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3", + "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId": + "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"}, + {"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", "displayName": + "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4926,15 +4886,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '437' + - '425' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:14:07 GMT + - Wed, 20 May 2026 08:39:58 GMT Pragma: - no-cache RequestId: - - 2b0276b9-4e3a-42d1-9384-ecd7d2cfb2a8 + - 3a227886-054a-4fea-a9be-ef0c509c29f1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -4960,17 +4920,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -4979,15 +4939,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:14:07 GMT + - Wed, 20 May 2026 08:39:59 GMT Pragma: - no-cache RequestId: - - 0d2271d6-c257-456b-8737-93869676aaee + - 4ce0e78b-7043-4c49-8f6a-afb91773a9a4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5013,17 +4973,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5032,15 +4992,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:14:08 GMT + - Wed, 20 May 2026 08:40:01 GMT Pragma: - no-cache RequestId: - - df3f11fa-f250-4d29-8c2f-4f1fb3e93c73 + - 368da983-0910-4458-932c-30df6aa33518 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5066,17 +5026,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5085,15 +5045,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:14:09 GMT + - Wed, 20 May 2026 08:40:02 GMT Pragma: - no-cache RequestId: - - 0b658edd-1af5-4bf3-a670-398c01b17ef8 + - 7b7e3b7e-e082-4723-9186-5b3e270f85f7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5119,17 +5079,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5138,15 +5098,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:14:09 GMT + - Wed, 20 May 2026 08:40:02 GMT Pragma: - no-cache RequestId: - - 66c5b332-fcac-40c3-bcef-0e84b437a066 + - 08db48c2-6aae-49e8-88b6-10d6cc792f8e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5172,21 +5132,23 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items response: body: - string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90", - "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7", - "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "8bc050b1-0bfd-472d-8dca-319b9d248a54"}, {"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc", - "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}]}' + string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3", + "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId": + "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"}, + {"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", "displayName": + "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5195,15 +5157,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '437' + - '425' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:14:10 GMT + - Wed, 20 May 2026 08:40:03 GMT Pragma: - no-cache RequestId: - - e8718037-c32f-4ce0-a53d-203f76cce9ed + - d61ea639-fe37-491e-aee8-2bdc8d573b9f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5229,57 +5191,17 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True - response: - body: - string: '{"requestId": "ac1096c9-e6e9-436a-a3bb-ccc0e409bb26", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 7:15:02 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:14:11 GMT - RequestId: - - ac1096c9-e6e9-436a-a3bb-ccc0e409bb26 - Retry-After: - - '50' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5288,15 +5210,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:15:04 GMT + - Wed, 20 May 2026 08:40:04 GMT Pragma: - no-cache RequestId: - - 8939a30d-9bbf-458d-92d7-beac659636a5 + - e03dfeb5-6263-4ec1-b81e-0c2668e0be92 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5322,17 +5244,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5341,15 +5263,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:15:05 GMT + - Wed, 20 May 2026 08:40:05 GMT Pragma: - no-cache RequestId: - - 266baf5b-39ea-4eb7-9b5a-a1b08082cdd5 + - 7920cf3c-7cdf-4233-8665-6eff781c14b1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5375,17 +5297,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5394,15 +5316,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:15:06 GMT + - Wed, 20 May 2026 08:40:06 GMT Pragma: - no-cache RequestId: - - edabba9e-69b9-4c44-976e-b3139da86850 + - 64fe32d7-533c-4996-b6f7-7de2627af81d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5428,17 +5350,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5447,15 +5369,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:15:07 GMT + - Wed, 20 May 2026 08:40:07 GMT Pragma: - no-cache RequestId: - - 71e2d9e5-1147-48c6-b95e-053639e78326 + - ceedb723-1b49-4e7c-8512-1969fa5fd3e4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5481,21 +5403,23 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items response: body: - string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90", - "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7", - "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "8bc050b1-0bfd-472d-8dca-319b9d248a54"}, {"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc", - "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}]}' + string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3", + "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId": + "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"}, + {"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", "displayName": + "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5504,15 +5428,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '437' + - '425' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:15:07 GMT + - Wed, 20 May 2026 08:40:08 GMT Pragma: - no-cache RequestId: - - b76ab0b2-0e14-46bb-82e1-98869c60bb4b + - 13139cdc-963b-4f74-95c2-eb320863be14 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5538,17 +5462,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5557,15 +5481,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:15:08 GMT + - Wed, 20 May 2026 08:40:09 GMT Pragma: - no-cache RequestId: - - a9bcc3f1-6bf4-4826-86e6-ba052d5dd0ef + - ed8995d4-8d0e-4dc1-9369-0caed2f24667 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5591,17 +5515,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5610,15 +5534,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:15:09 GMT + - Wed, 20 May 2026 08:40:09 GMT Pragma: - no-cache RequestId: - - dc1978f6-94fb-44ca-9eb6-51cd5e982979 + - f523371c-a873-41a2-9b12-480cb884fb70 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5644,17 +5568,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5663,15 +5587,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:15:10 GMT + - Wed, 20 May 2026 08:40:10 GMT Pragma: - no-cache RequestId: - - ee432bc5-41c8-4c17-97e2-558e8f1a775e + - b80c86a8-0ad4-481e-a626-700b8db66b87 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5697,17 +5621,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5716,15 +5640,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:15:11 GMT + - Wed, 20 May 2026 08:40:11 GMT Pragma: - no-cache RequestId: - - 6b8d1cad-4d1b-4e2b-b287-2a7f0d727492 + - ab2053ad-bf8f-4466-b436-5be4d6b860ba Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5750,16 +5674,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5768,15 +5695,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:15:12 GMT + - Wed, 20 May 2026 08:40:11 GMT Pragma: - no-cache RequestId: - - e5803ced-f543-413d-a8c7-b4a3a12e911b + - 55357747-d50b-4772-9f81-dd1fd4089071 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5802,13 +5729,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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True response: body: - string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName": - "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName": + "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5821,11 +5748,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:15:13 GMT + - Wed, 20 May 2026 08:40:13 GMT Pragma: - no-cache RequestId: - - 9c771b0e-ff12-4442-bded-d1fca1942d7c + - b2d83125-721d-4719-8d7e-cc25f7cf8831 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5851,15 +5778,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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items response: body: - string: '{"value": [{"id": "ef61ccc3-71c4-4ff2-9554-e52e4a549b14", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "6da7abe9-44db-49be-a885-48f74490660f", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "38a86bcc-82f4-4f58-9cba-c8aac226aa5d", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "971e55ca-ba5d-47d9-88df-235b11e7e5cc", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5868,15 +5795,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '231' + - '222' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:15:13 GMT + - Wed, 20 May 2026 08:40:13 GMT Pragma: - no-cache RequestId: - - 43fb4f8b-253b-45cb-8b63-5adc3fc22cd2 + - 241cc95b-1164-48f0-a913-36f1d7edc423 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5902,15 +5829,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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items response: body: - string: '{"value": [{"id": "ef61ccc3-71c4-4ff2-9554-e52e4a549b14", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "6da7abe9-44db-49be-a885-48f74490660f", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "38a86bcc-82f4-4f58-9cba-c8aac226aa5d", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "971e55ca-ba5d-47d9-88df-235b11e7e5cc", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5919,15 +5846,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '231' + - '222' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:15:14 GMT + - Wed, 20 May 2026 08:40:14 GMT Pragma: - no-cache RequestId: - - 3c1858a6-3d62-4a6b-bcb0-2ff9504b219b + - 2727084c-63dc-45d0-b79b-3556869da98b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -5953,15 +5880,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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items response: body: - string: '{"value": [{"id": "ef61ccc3-71c4-4ff2-9554-e52e4a549b14", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "6da7abe9-44db-49be-a885-48f74490660f", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "38a86bcc-82f4-4f58-9cba-c8aac226aa5d", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "971e55ca-ba5d-47d9-88df-235b11e7e5cc", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -5970,15 +5897,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '231' + - '222' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:15:15 GMT + - Wed, 20 May 2026 08:40:15 GMT Pragma: - no-cache RequestId: - - e4811843-6e43-4ea0-a4f5-934ca0fc002f + - edc68bc2-9d6c-4340-8de0-795f6116a2cb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6004,14 +5931,14 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items/41915c7d-5855-4a08-98d4-ab113bb4dc90 + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items/362ea567-b1e9-4245-8637-235ff3651b79 response: body: - string: '{"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90", "type": "SparkJobDefinition", - "displayName": "fabcli000006", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": "5ac60325-e9cc-4450-86c3-95d68719a15a"}' + string: '{"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -6020,17 +5947,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '205' + - '195' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:15:16 GMT + - Wed, 20 May 2026 08:40:16 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 8ff7a3e7-63ee-4021-ada1-6947e5cec70e + - a2147ac9-36ae-43a5-a247-b599fa77a702 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6058,14 +5985,14 @@ interactions: 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items/41915c7d-5855-4a08-98d4-ab113bb4dc90/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items/362ea567-b1e9-4245-8637-235ff3651b79/getDefinition response: body: string: '{"definition": {"parts": [{"path": "SparkJobDefinitionV1.json", "payload": "ew0KICAiZXhlY3V0YWJsZUZpbGUiOiBudWxsLA0KICAiZGVmYXVsdExha2Vob3VzZUFydGlmYWN0SWQiOiBudWxsLA0KICAibWFpbkNsYXNzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMYWtlaG91c2VJZHMiOiBbXSwNCiAgInJldHJ5UG9saWN5IjogbnVsbCwNCiAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMaWJyYXJ5VXJpcyI6IG51bGwsDQogICJsYW5ndWFnZSI6IG51bGwsDQogICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsDQp9", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA2IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA2IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -6075,15 +6002,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '616' + - '585' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:15:17 GMT + - Wed, 20 May 2026 08:40:18 GMT Pragma: - no-cache RequestId: - - d5d93524-7b66-4d4f-9102-c4720435b469 + - e23a0421-c406-4018-b363-0d0c9b69277f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6098,11 +6025,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "SparkJobDefinition", "displayName": - "fabcli000006", "definition": {"parts": [{"path": "SparkJobDefinitionV1.json", - "payload": "ew0KICAiZXhlY3V0YWJsZUZpbGUiOiBudWxsLA0KICAiZGVmYXVsdExha2Vob3VzZUFydGlmYWN0SWQiOiBudWxsLA0KICAibWFpbkNsYXNzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMYWtlaG91c2VJZHMiOiBbXSwNCiAgInJldHJ5UG9saWN5IjogbnVsbCwNCiAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMaWJyYXJ5VXJpcyI6IG51bGwsDQogICJsYW5ndWFnZSI6IG51bGwsDQogICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsDQp9", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA2IiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", - "payloadType": "InlineBase64"}]}, "folderId": "e45124b0-437b-4c39-80a4-7d35e7cec8fe"}' + body: '{"type": "SparkJobDefinition", "displayName": "fabcli000006", "definition": + {"parts": [{"path": "SparkJobDefinitionV1.json", "payload": "ew0KICAiZXhlY3V0YWJsZUZpbGUiOiBudWxsLA0KICAiZGVmYXVsdExha2Vob3VzZUFydGlmYWN0SWQiOiBudWxsLA0KICAibWFpbkNsYXNzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMYWtlaG91c2VJZHMiOiBbXSwNCiAgInJldHJ5UG9saWN5IjogbnVsbCwNCiAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogbnVsbCwNCiAgImFkZGl0aW9uYWxMaWJyYXJ5VXJpcyI6IG51bGwsDQogICJsYW5ndWFnZSI6IG51bGwsDQogICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsDQp9", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDA2IgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "payloadType": "InlineBase64"}]}, "folderId": "a7a0457b-c329-46d9-9633-d97806acc7d7"}' headers: Accept: - '*/*' @@ -6111,19 +6037,18 @@ interactions: Connection: - keep-alive Content-Length: - - '1126' - + - '1074' 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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items response: body: - string: '{"id": "8487c193-5930-4805-a9dc-ddfe0e58f3c8", "type": "SparkJobDefinition", - "displayName": "fabcli000006", "workspaceId": - "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId": "e45124b0-437b-4c39-80a4-7d35e7cec8fe"}' + string: '{"id": "0e010915-e8ca-4517-917d-c0e09abec2b2", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d", + "folderId": "a7a0457b-c329-46d9-9633-d97806acc7d7"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -6132,17 +6057,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '204' + - '194' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:15:19 GMT + - Wed, 20 May 2026 08:40:20 GMT ETag: - '""' Pragma: - no-cache RequestId: - - fa39fd4f-7889-4297-8b33-0f1701386653 + - a4ca5e2e-dd41-4610-b802-d91c148a5ce3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6168,21 +6093,23 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items response: body: - string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90", - "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7", - "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "8bc050b1-0bfd-472d-8dca-319b9d248a54"}, {"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc", - "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}]}' + string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3", + "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId": + "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"}, + {"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", "displayName": + "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6191,15 +6118,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '437' + - '425' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:15:20 GMT + - Wed, 20 May 2026 08:40:21 GMT Pragma: - no-cache RequestId: - - b13e4e3a-dc84-4791-9348-4b8513c44541 + - 0504c30a-2256-476a-91ca-4c164de159d3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6225,17 +6152,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6244,15 +6171,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:15:20 GMT + - Wed, 20 May 2026 08:40:22 GMT Pragma: - no-cache RequestId: - - 0191aaa2-8490-4dc8-9a11-5315097fe83e + - 8966747d-d26a-4ab6-b291-d0ecbc4f1737 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6278,57 +6205,17 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True - response: - body: - string: '{"requestId": "fcbb1ff3-bc10-4d71-a899-278786b2a9da", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 7:16:06 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:15:21 GMT - RequestId: - - fcbb1ff3-bc10-4d71-a899-278786b2a9da - Retry-After: - - '44' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6337,15 +6224,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:16:08 GMT + - Wed, 20 May 2026 08:40:23 GMT Pragma: - no-cache RequestId: - - f67bfd79-67d3-496f-a93c-8b46c6db1e0f + - 180fd0f8-2f5b-48a2-8d0f-735a3e266d09 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6371,17 +6258,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6390,15 +6277,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:16:09 GMT + - Wed, 20 May 2026 08:40:23 GMT Pragma: - no-cache RequestId: - - 1bc00105-7e5b-4f32-a110-f5277983d788 + - 7dab946d-3a7d-416d-9efe-f44469ae961c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6424,17 +6311,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6443,15 +6330,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:16:10 GMT + - Wed, 20 May 2026 08:40:24 GMT Pragma: - no-cache RequestId: - - 6b589d4c-cd8e-427b-826c-f90da353974f + - 4e1a1ca8-955b-439b-abf1-de6fac2bf8e6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6477,21 +6364,23 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items response: body: - string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90", - "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7", - "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "8bc050b1-0bfd-472d-8dca-319b9d248a54"}, {"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc", - "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}]}' + string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3", + "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId": + "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"}, + {"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", "displayName": + "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6500,15 +6389,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '437' + - '425' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:16:11 GMT + - Wed, 20 May 2026 08:40:24 GMT Pragma: - no-cache RequestId: - - f609d269-fce4-4074-8ed5-3815c6843320 + - fdcadca1-afe6-4b2f-ac76-10c6f62fff97 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6534,17 +6423,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6553,15 +6442,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:16:11 GMT + - Wed, 20 May 2026 08:40:26 GMT Pragma: - no-cache RequestId: - - cda55516-7d02-4d3d-9953-3b2ff899651a + - cb5e5fb7-e50f-4de5-9745-507613ac98ab Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6587,17 +6476,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6606,15 +6495,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:16:12 GMT + - Wed, 20 May 2026 08:40:26 GMT Pragma: - no-cache RequestId: - - 0a7a8307-71b6-44f6-b911-aa8c16a7da97 + - 0f64303b-414b-407f-9386-054c2e9a5566 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6640,17 +6529,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6659,15 +6548,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:16:13 GMT + - Wed, 20 May 2026 08:40:27 GMT Pragma: - no-cache RequestId: - - e62e8cdc-c902-487b-8bd9-cded9686897b + - 2f50def0-981f-4e17-bc0c-fb84620f0cf9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6693,17 +6582,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6712,15 +6601,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:16:14 GMT + - Wed, 20 May 2026 08:40:28 GMT Pragma: - no-cache RequestId: - - 4ae705dc-eb1a-4957-9c1e-b8da612c58c8 + - 3c061b76-5802-4036-a87d-5c837fa7d827 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6746,21 +6635,23 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items response: body: - string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90", - "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7", - "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "8bc050b1-0bfd-472d-8dca-319b9d248a54"}, {"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc", - "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}]}' + string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3", + "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId": + "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"}, + {"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", "displayName": + "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6769,15 +6660,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '437' + - '425' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:16:14 GMT + - Wed, 20 May 2026 08:40:29 GMT Pragma: - no-cache RequestId: - - 70e9d627-0ef9-4ff4-bff6-79abe842b10b + - 42a25bbe-eef3-4364-91f8-6107fa21e5b7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6803,17 +6694,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6822,15 +6713,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:16:15 GMT + - Wed, 20 May 2026 08:40:30 GMT Pragma: - no-cache RequestId: - - c5c69a33-e911-488f-bd88-b18d058d4890 + - 5ea7917b-5507-49bf-a760-1d8ed60cd3a2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6856,17 +6747,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6875,15 +6766,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:16:17 GMT + - Wed, 20 May 2026 08:40:29 GMT Pragma: - no-cache RequestId: - - 04da7034-15b3-4c38-bfe0-196326742583 + - f89f982c-3c9b-46d1-a628-15143f98159a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6909,17 +6800,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -6928,15 +6819,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:16:17 GMT + - Wed, 20 May 2026 08:40:31 GMT Pragma: - no-cache RequestId: - - 6f90b31b-6fbd-46e8-991f-bddeb6fccbd7 + - b342aa1e-cf7e-4983-bf7e-16e5cf1a7fc1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -6962,57 +6853,17 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True - response: - body: - string: '{"requestId": "80af701e-854a-40ce-bfac-9bf98500b078", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 7:17:09 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:16:17 GMT - RequestId: - - 80af701e-854a-40ce-bfac-9bf98500b078 - Retry-After: - - '51' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7021,15 +6872,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:17:12 GMT + - Wed, 20 May 2026 08:40:31 GMT Pragma: - no-cache RequestId: - - ca096721-fba3-49ba-9460-d29a287d07db + - 1c36e727-7c9d-4893-9362-d1eb8b005175 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7055,16 +6906,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7073,15 +6927,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:17:13 GMT + - Wed, 20 May 2026 08:40:31 GMT Pragma: - no-cache RequestId: - - 79470874-c9dc-47a5-afb2-3146ed6ba8aa + - 0dee65c4-abc7-4871-abe7-2710ef97405d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7107,13 +6961,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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True response: body: - string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName": - "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName": + "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7126,11 +6980,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:17:14 GMT + - Wed, 20 May 2026 08:40:32 GMT Pragma: - no-cache RequestId: - - f140556a-7c1f-4f8b-beef-c6772b484ff2 + - f9fe4d2c-6055-4636-80d1-b44016e4872f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7156,13 +7010,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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True response: body: - string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName": - "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName": + "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7175,11 +7029,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:17:14 GMT + - Wed, 20 May 2026 08:40:32 GMT Pragma: - no-cache RequestId: - - 2960525e-b03f-40e9-ad00-2c5fe3fb96c1 + - d26f5a74-4962-4ff9-9625-2798871a8c7b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7205,13 +7059,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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True response: body: - string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName": - "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName": + "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7224,11 +7078,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:17:15 GMT + - Wed, 20 May 2026 08:40:33 GMT Pragma: - no-cache RequestId: - - 79bad8bd-26b0-43f1-94a7-af3f20f9ea48 + - 74a67001-c098-42fe-a990-08e82b53ce85 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7243,8 +7097,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000007", "parentFolderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe"}' + body: '{"displayName": "fabcli000007", "parentFolderId": "a7a0457b-c329-46d9-9633-d97806acc7d7"}' headers: Accept: - '*/*' @@ -7254,17 +7107,16 @@ interactions: - keep-alive Content-Length: - '93' - 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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders response: body: - string: '{"id": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", - "parentFolderId": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}' + string: '{"id": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", + "parentFolderId": "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -7273,17 +7125,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:17:16 GMT + - Wed, 20 May 2026 08:40:34 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders/6fd12cfb-7dc9-47c3-b649-5c146f4ce735 + - https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders/d34c8f2d-be34-44ae-9d9c-3249844c8fd2 Pragma: - no-cache RequestId: - - 1366a75d-19c6-4bad-9e8f-42c7aad0d1dd + - 5549790b-e4aa-4136-ad23-a371a12a1d15 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7309,21 +7161,23 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items response: body: - string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90", - "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7", - "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "8bc050b1-0bfd-472d-8dca-319b9d248a54"}, {"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc", - "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}]}' + string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3", + "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId": + "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"}, + {"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", "displayName": + "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7332,15 +7186,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '437' + - '425' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:17:17 GMT + - Wed, 20 May 2026 08:40:34 GMT Pragma: - no-cache RequestId: - - 886e020d-6e6a-44ab-bf07-ddd49f9ee4b4 + - 4053d46d-0ba9-4b95-95a6-1798de2b2e82 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7366,17 +7220,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7385,15 +7239,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:17:18 GMT + - Wed, 20 May 2026 08:40:34 GMT Pragma: - no-cache RequestId: - - d22fc361-8d05-484c-9406-56586b308b1c + - 457000d8-1559-4a56-8102-f521309cd781 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7419,17 +7273,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7438,15 +7292,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:17:19 GMT + - Wed, 20 May 2026 08:40:36 GMT Pragma: - no-cache RequestId: - - b5a743cb-8ec1-47cd-b4ca-d48354912ae9 + - 193b79d6-c8f1-4112-a809-59c54e61b324 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7472,17 +7326,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7491,15 +7345,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:17:20 GMT + - Wed, 20 May 2026 08:40:36 GMT Pragma: - no-cache RequestId: - - 41972131-f429-4040-9120-39e76dff21c0 + - b8510d0d-de82-4a89-aaf7-8a0139d7ea84 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7525,17 +7379,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7544,15 +7398,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:17:20 GMT + - Wed, 20 May 2026 08:40:36 GMT Pragma: - no-cache RequestId: - - ea7d5297-64fe-4c0c-993a-c06f2724e346 + - 405af285-6f9a-4b00-ae90-ee31de1ffaf9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7578,16 +7432,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7596,15 +7453,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:17:21 GMT + - Wed, 20 May 2026 08:40:37 GMT Pragma: - no-cache RequestId: - - 6dd04343-8198-4afb-bf0c-41b58a02b8ae + - 7b40d939-bfbf-4e4f-9738-6644f4bd59cc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7630,15 +7487,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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True response: body: - string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName": - "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": - "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName": + "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id": + "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId": + "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7647,15 +7504,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '203' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:17:22 GMT + - Wed, 20 May 2026 08:40:37 GMT Pragma: - no-cache RequestId: - - cf98a8e7-f734-44d4-9be4-4f2b752a04d8 + - 1b532336-f016-49f2-b743-d3101ac3ca6c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7681,15 +7538,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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True response: body: - string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName": - "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": - "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName": + "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id": + "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId": + "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7698,15 +7555,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '203' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:17:23 GMT + - Wed, 20 May 2026 08:40:38 GMT Pragma: - no-cache RequestId: - - fdc306da-0471-4ed0-bcdf-36ec1afaca91 + - b080bfe3-9007-45a0-9d51-6394c0a2d2ad Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7732,17 +7589,18 @@ 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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items response: body: - string: '{"value": [{"id": "ef61ccc3-71c4-4ff2-9554-e52e4a549b14", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "6da7abe9-44db-49be-a885-48f74490660f", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "8487c193-5930-4805-a9dc-ddfe0e58f3c8", - "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe"}]}' + string: '{"value": [{"id": "38a86bcc-82f4-4f58-9cba-c8aac226aa5d", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "971e55ca-ba5d-47d9-88df-235b11e7e5cc", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "0e010915-e8ca-4517-917d-c0e09abec2b2", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d", + "folderId": "a7a0457b-c329-46d9-9633-d97806acc7d7"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7751,15 +7609,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '312' + - '302' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:17:24 GMT + - Wed, 20 May 2026 08:40:39 GMT Pragma: - no-cache RequestId: - - b5bfbadd-0c3c-41c3-a41d-525b4b856d88 + - 53de3f7c-38bf-42ba-a84f-276f77a2d094 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7785,55 +7643,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True - response: - body: - string: '{"requestId": "3a4ded51-e38b-4005-88a0-308f35092217", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 7:18:13 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:17:24 GMT - RequestId: - - 3a4ded51-e38b-4005-88a0-308f35092217 - Retry-After: - - '48' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True response: body: - string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName": - "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": - "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName": + "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id": + "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId": + "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7842,15 +7660,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '203' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:18:15 GMT + - Wed, 20 May 2026 08:40:40 GMT Pragma: - no-cache RequestId: - - ce526a68-f406-43d0-ae7b-29470e133ee2 + - 29cbd6ec-e942-41b5-a221-d5ae81aa5737 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7876,17 +7694,18 @@ 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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items response: body: - string: '{"value": [{"id": "ef61ccc3-71c4-4ff2-9554-e52e4a549b14", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "6da7abe9-44db-49be-a885-48f74490660f", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "8487c193-5930-4805-a9dc-ddfe0e58f3c8", - "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe"}]}' + string: '{"value": [{"id": "38a86bcc-82f4-4f58-9cba-c8aac226aa5d", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "971e55ca-ba5d-47d9-88df-235b11e7e5cc", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "0e010915-e8ca-4517-917d-c0e09abec2b2", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d", + "folderId": "a7a0457b-c329-46d9-9633-d97806acc7d7"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7895,15 +7714,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '312' + - '302' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:18:17 GMT + - Wed, 20 May 2026 08:40:41 GMT Pragma: - no-cache RequestId: - - d3fe4ead-a98d-4dbe-9320-9d687d377a12 + - eb4ce973-8681-4201-801a-ae718196c181 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7929,15 +7748,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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True response: body: - string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName": - "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": - "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName": + "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id": + "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId": + "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7946,15 +7765,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '203' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:18:18 GMT + - Wed, 20 May 2026 08:40:41 GMT Pragma: - no-cache RequestId: - - a699cbeb-e05c-4980-b357-4675a463b8ad + - 927dfb4d-5496-4421-8c82-4831f049eb38 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -7980,17 +7799,18 @@ 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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items response: body: - string: '{"value": [{"id": "ef61ccc3-71c4-4ff2-9554-e52e4a549b14", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "6da7abe9-44db-49be-a885-48f74490660f", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "8487c193-5930-4805-a9dc-ddfe0e58f3c8", - "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe"}]}' + string: '{"value": [{"id": "38a86bcc-82f4-4f58-9cba-c8aac226aa5d", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "971e55ca-ba5d-47d9-88df-235b11e7e5cc", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "0e010915-e8ca-4517-917d-c0e09abec2b2", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d", + "folderId": "a7a0457b-c329-46d9-9633-d97806acc7d7"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -7999,15 +7819,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '312' + - '302' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:18:19 GMT + - Wed, 20 May 2026 08:40:43 GMT Pragma: - no-cache RequestId: - - 0fa72966-2520-4995-8bbd-e473579f45a8 + - 7a86b489-2b95-4e8d-ab28-5d07876336cf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -8033,15 +7853,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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True response: body: - string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName": - "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": - "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName": + "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id": + "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId": + "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -8050,15 +7870,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '203' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:18:19 GMT + - Wed, 20 May 2026 08:40:43 GMT Pragma: - no-cache RequestId: - - a0bb2e90-bffc-49b5-9474-62d307bc74d2 + - e1c52524-3ea9-4287-9d14-3e2e12a99ffa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -8084,14 +7904,14 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items/026af425-a57f-470f-a2b7-96dd24537cb7 + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items/9d94eef1-2e72-41a1-97a2-417c7c9ed7d3 response: body: - string: '{"id": "026af425-a57f-470f-a2b7-96dd24537cb7", "type": "Notebook", - "displayName": "fabcli000008", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54"}' + string: '{"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3", "type": "Notebook", + "displayName": "fabcli000008", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -8100,17 +7920,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '195' + - '184' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:18:20 GMT + - Wed, 20 May 2026 08:40:44 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 14833729-aef7-4072-a6ab-28bdf01babb9 + - 4ad7832b-bbfb-4b6b-a276-bf8926807052 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -8138,9 +7958,9 @@ interactions: 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items/026af425-a57f-470f-a2b7-96dd24537cb7/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items/9d94eef1-2e72-41a1-97a2-417c7c9ed7d3/getDefinition response: body: string: 'null' @@ -8156,13 +7976,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:18:21 GMT + - Wed, 20 May 2026 08:40:45 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d5c606bb-277c-424a-894e-575934f75843 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b3e7388f-0b38-4c02-a4b9-a8fee63daa2d Pragma: - no-cache RequestId: - - d505d3fe-f103-4f74-8b08-ff8ce145a456 + - 5f22b30d-2d9d-4c9c-a9c4-131a53fac381 Retry-After: - '20' Strict-Transport-Security: @@ -8176,7 +7996,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - d5c606bb-277c-424a-894e-575934f75843 + - b3e7388f-0b38-4c02-a4b9-a8fee63daa2d status: code: 202 message: Accepted @@ -8192,13 +8012,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d5c606bb-277c-424a-894e-575934f75843 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b3e7388f-0b38-4c02-a4b9-a8fee63daa2d response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:18:21.9991506", - "lastUpdatedTimeUtc": "2026-02-06T07:18:22.2647657", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:40:45.5718361", + "lastUpdatedTimeUtc": "2026-05-20T08:40:46.3433951", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -8212,13 +8032,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:18:43 GMT + - Wed, 20 May 2026 08:41:06 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d5c606bb-277c-424a-894e-575934f75843/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b3e7388f-0b38-4c02-a4b9-a8fee63daa2d/result Pragma: - no-cache RequestId: - - 27a0a419-96ee-4a53-a0e9-65d7ad7badd3 + - 5af0f775-aefa-4d46-a9a8-aa2317e312d0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -8226,7 +8046,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - d5c606bb-277c-424a-894e-575934f75843 + - b3e7388f-0b38-4c02-a4b9-a8fee63daa2d status: code: 200 message: OK @@ -8242,14 +8062,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d5c606bb-277c-424a-894e-575934f75843/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b3e7388f-0b38-4c02-a4b9-a8fee63daa2d/result response: body: string: '{"definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDgiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDgiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -8261,11 +8081,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 07:18:44 GMT + - Wed, 20 May 2026 08:41:07 GMT Pragma: - no-cache RequestId: - - 75c057c0-5791-4c80-bb0e-354d8e74c1d6 + - 0ebcd990-823a-4b1c-ac6e-3cff5229c992 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -8278,10 +8098,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "Notebook", "displayName": "fabcli000008", - "definition": {"parts": [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDgiLAogICAgImRlc2NyaXB0aW9uIjogIkNyZWF0ZWQgYnkgZmFiIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", - "payloadType": "InlineBase64"}]}, "folderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735"}' + body: '{"type": "Notebook", "displayName": "fabcli000008", "definition": {"parts": + [{"path": "notebook-content.py", "payload": "IyBGYWJyaWMgbm90ZWJvb2sgc291cmNlCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAia2VybmVsX2luZm8iOiB7CiMgTUVUQSAgICAgIm5hbWUiOiAic3luYXBzZV9weXNwYXJrIgojIE1FVEEgICB9LAojIE1FVEEgICAiZGVwZW5kZW5jaWVzIjoge30KIyBNRVRBIH0KCiMgQ0VMTCAqKioqKioqKioqKioqKioqKioqKgoKIyBXZWxjb21lIHRvIHlvdXIgbmV3IG5vdGVib29rCiMgVHlwZSBoZXJlIGluIHRoZSBjZWxsIGVkaXRvciB0byBhZGQgY29kZSEKCgojIE1FVEFEQVRBICoqKioqKioqKioqKioqKioqKioqCgojIE1FVEEgewojIE1FVEEgICAibGFuZ3VhZ2UiOiAicHl0aG9uIiwKIyBNRVRBICAgImxhbmd1YWdlX2dyb3VwIjogInN5bmFwc2VfcHlzcGFyayIKIyBNRVRBIH0K", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIk5vdGVib29rIiwKICAgICJkaXNwbGF5TmFtZSI6ICJmYWJjbGkwMDAwMDgiCiAgfSwKICAiY29uZmlnIjogewogICAgInZlcnNpb24iOiAiMi4wIiwKICAgICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIgogIH0KfQ==", + "payloadType": "InlineBase64"}]}, "folderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2"}' headers: Accept: - '*/*' @@ -8290,14 +8110,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1286' - + - '1238' 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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items response: body: string: 'null' @@ -8313,15 +8132,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:18:46 GMT + - Wed, 20 May 2026 08:41:08 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e2e96e80-bdc2-4b0c-b707-63d444cc70ff + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/07ff4409-41bc-4f14-95bc-b26f4b0a233f Pragma: - no-cache RequestId: - - 35c05517-3238-4571-b989-c643ca1bddbd + - 1a61975a-9ccc-4f66-bed2-06331d1f5126 Retry-After: - '20' Strict-Transport-Security: @@ -8335,7 +8154,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - e2e96e80-bdc2-4b0c-b707-63d444cc70ff + - 07ff4409-41bc-4f14-95bc-b26f4b0a233f status: code: 202 message: Accepted @@ -8351,13 +8170,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e2e96e80-bdc2-4b0c-b707-63d444cc70ff + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/07ff4409-41bc-4f14-95bc-b26f4b0a233f response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-06T07:18:46.0507985", - "lastUpdatedTimeUtc": "2026-02-06T07:18:47.9576838", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-20T08:41:08.6444268", + "lastUpdatedTimeUtc": "2026-05-20T08:41:09.9545508", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -8367,17 +8186,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:19:08 GMT + - Wed, 20 May 2026 08:41:29 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e2e96e80-bdc2-4b0c-b707-63d444cc70ff/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/07ff4409-41bc-4f14-95bc-b26f4b0a233f/result Pragma: - no-cache RequestId: - - f1cddc53-a539-4411-a0d9-67efdb60d7d0 + - f009ac22-2cc6-4514-9335-b56ed9404f72 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -8385,7 +8204,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - e2e96e80-bdc2-4b0c-b707-63d444cc70ff + - 07ff4409-41bc-4f14-95bc-b26f4b0a233f status: code: 200 message: OK @@ -8401,14 +8220,14 @@ 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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e2e96e80-bdc2-4b0c-b707-63d444cc70ff/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/07ff4409-41bc-4f14-95bc-b26f4b0a233f/result response: body: - string: '{"id": "a2a09ffc-826f-4cef-b00d-ccef7f25dea0", "type": "Notebook", - "displayName": "fabcli000008", "workspaceId": - "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735"}' + string: '{"id": "69eb599d-1afa-4d77-90f2-ee50fc819cbe", "type": "Notebook", + "displayName": "fabcli000008", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d", + "folderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2"}' headers: Access-Control-Expose-Headers: - RequestId @@ -8419,11 +8238,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 06 Feb 2026 07:19:09 GMT + - Wed, 20 May 2026 08:41:30 GMT Pragma: - no-cache RequestId: - - fa69290a-147b-4a32-a29c-d7c33c3ae1e5 + - 29b27b98-e66a-4bd2-9ee1-4fe7ff2b9e0c Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -8447,16 +8266,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -8465,15 +8287,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:19:09 GMT + - Wed, 20 May 2026 08:41:31 GMT Pragma: - no-cache RequestId: - - cfa06766-239e-4f40-8300-44a32594a7ea + - a1612875-c6d8-4093-854f-ec45e8b0b881 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -8499,15 +8321,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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True response: body: - string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName": - "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": - "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName": + "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id": + "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId": + "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -8516,15 +8338,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '203' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:19:11 GMT + - Wed, 20 May 2026 08:41:32 GMT Pragma: - no-cache RequestId: - - 6fd73f1a-4e63-437c-bd67-f32ad5c07752 + - cc0e673a-0c74-4110-8e0c-6026cc05dbca Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -8550,15 +8372,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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True response: body: - string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName": - "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": - "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName": + "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id": + "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId": + "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -8567,15 +8389,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '203' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:19:11 GMT + - Wed, 20 May 2026 08:41:32 GMT Pragma: - no-cache RequestId: - - 7546d813-8384-4fe5-a7a1-7ded7248433b + - e2b62893-e580-46a0-ac23-5bee635bb465 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -8601,15 +8423,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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True response: body: - string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName": - "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": - "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName": + "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id": + "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId": + "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -8618,15 +8440,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '203' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:19:13 GMT + - Wed, 20 May 2026 08:41:33 GMT Pragma: - no-cache RequestId: - - b461b619-e137-4399-bf31-b4b0827df388 + - 5672be68-16a5-43ee-bfcf-eb407677ab81 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -8652,15 +8474,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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True response: body: - string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName": - "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": - "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName": + "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id": + "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId": + "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -8669,15 +8491,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '203' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:19:13 GMT + - Wed, 20 May 2026 08:41:34 GMT Pragma: - no-cache RequestId: - - 4bd4f7a5-f8de-404e-b2e7-c3a2f37f7703 + - df918dcc-db5d-4bf6-a2a1-d49391d786d3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -8692,8 +8514,7 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000009", "parentFolderId": - "6fd12cfb-7dc9-47c3-b649-5c146f4ce735"}' + body: '{"displayName": "fabcli000009", "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2"}' headers: Accept: - '*/*' @@ -8703,17 +8524,16 @@ interactions: - keep-alive Content-Length: - '93' - 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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders response: body: - string: '{"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009", - "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}' + string: '{"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009", + "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -8722,17 +8542,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '170' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:19:14 GMT + - Wed, 20 May 2026 08:41:35 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders/596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1 + - https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders/1c15fdc3-ad54-4ed2-87c4-00c40f77fa65 Pragma: - no-cache RequestId: - - 2b34c4c0-6861-48f8-89cb-84fe0524dd3a + - 5819cd3f-2b7d-41b9-a28c-3082bfb80b3d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -8758,21 +8578,23 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items response: body: - string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90", - "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7", - "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "8bc050b1-0bfd-472d-8dca-319b9d248a54"}, {"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc", - "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}]}' + string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3", + "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId": + "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"}, + {"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", "displayName": + "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -8781,15 +8603,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '437' + - '425' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:19:15 GMT + - Wed, 20 May 2026 08:41:36 GMT Pragma: - no-cache RequestId: - - 9ddefa32-277d-4952-8a07-9ec148c7aac3 + - d4d907a2-a7a5-47fe-9828-e1793756a216 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -8815,17 +8637,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -8834,15 +8656,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:19:15 GMT + - Wed, 20 May 2026 08:41:37 GMT Pragma: - no-cache RequestId: - - 493be54b-7798-4085-b51d-940fc22cf51e + - 722b6b2d-588a-47eb-9b64-a45a0e3dced7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -8868,17 +8690,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -8887,15 +8709,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:19:16 GMT + - Wed, 20 May 2026 08:41:37 GMT Pragma: - no-cache RequestId: - - 2cc6b9d0-53df-4756-bba3-e46103c32df5 + - cf0547a2-0098-4a39-afd7-ca658479e551 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -8921,17 +8743,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -8940,15 +8762,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:19:17 GMT + - Wed, 20 May 2026 08:41:38 GMT Pragma: - no-cache RequestId: - - 39953005-7ad5-452f-a4b0-7c3ea511f417 + - 8ac55879-e6e6-4288-9066-f444a5edcbc2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -8974,17 +8796,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -8993,15 +8815,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:19:18 GMT + - Wed, 20 May 2026 08:41:39 GMT Pragma: - no-cache RequestId: - - d4f43839-93a8-490a-839c-881c65aa19ff + - 5627d743-2e7e-4c4f-b1e5-4a4b0cf65281 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -9027,16 +8849,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -9045,15 +8870,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:19:18 GMT + - Wed, 20 May 2026 08:41:40 GMT Pragma: - no-cache RequestId: - - c958e64e-5135-43ed-b396-45ef2669d10e + - 4f5af0c5-8d69-4a8d-ad57-d534a284130c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -9079,17 +8904,17 @@ 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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True response: body: - string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName": - "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": - "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, - {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009", - "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName": + "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id": + "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId": + "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009", + "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -9098,15 +8923,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '240' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:19:20 GMT + - Wed, 20 May 2026 08:41:41 GMT Pragma: - no-cache RequestId: - - 5e1f9d31-410f-4efe-9607-a71c3d666d83 + - 19aee64b-6da7-4314-9ff5-b10133bdc525 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -9132,17 +8957,17 @@ 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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True response: body: - string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName": - "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": - "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, - {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009", - "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName": + "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id": + "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId": + "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009", + "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -9151,15 +8976,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '240' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:19:20 GMT + - Wed, 20 May 2026 08:41:42 GMT Pragma: - no-cache RequestId: - - ff3723dc-9807-4f3e-85e2-3a9e2986febf + - db4d7187-909e-46aa-8747-383e0ebf853f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -9185,17 +9010,17 @@ 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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True response: body: - string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName": - "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": - "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, - {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009", - "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName": + "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id": + "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId": + "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009", + "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -9204,15 +9029,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '240' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:19:21 GMT + - Wed, 20 May 2026 08:41:43 GMT Pragma: - no-cache RequestId: - - 59a6d224-1e03-4c0e-8517-7199ef21509f + - 5a267cfb-1bf6-41db-a864-e2f2e34c1146 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -9238,19 +9063,20 @@ 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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items response: body: - string: '{"value": [{"id": "ef61ccc3-71c4-4ff2-9554-e52e4a549b14", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "6da7abe9-44db-49be-a885-48f74490660f", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "8487c193-5930-4805-a9dc-ddfe0e58f3c8", - "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe"}, {"id": "a2a09ffc-826f-4cef-b00d-ccef7f25dea0", - "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId": - "6fd12cfb-7dc9-47c3-b649-5c146f4ce735"}]}' + string: '{"value": [{"id": "38a86bcc-82f4-4f58-9cba-c8aac226aa5d", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "971e55ca-ba5d-47d9-88df-235b11e7e5cc", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "0e010915-e8ca-4517-917d-c0e09abec2b2", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d", + "folderId": "a7a0457b-c329-46d9-9633-d97806acc7d7"}, {"id": "69eb599d-1afa-4d77-90f2-ee50fc819cbe", + "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId": + "2b905c52-4520-4342-a846-90e8641a367d", "folderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -9259,15 +9085,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '376' + - '364' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:19:22 GMT + - Wed, 20 May 2026 08:41:44 GMT Pragma: - no-cache RequestId: - - 2b407bf2-ba1c-4345-a7be-d8296d72ec4d + - 6e6961d4-080a-4170-9cf4-2d1a342d2522 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -9293,17 +9119,17 @@ 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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True response: body: - string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName": - "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": - "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, - {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009", - "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName": + "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id": + "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId": + "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009", + "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -9312,15 +9138,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '240' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:19:22 GMT + - Wed, 20 May 2026 08:41:45 GMT Pragma: - no-cache RequestId: - - c57c690d-dc3c-4de6-9b1b-16a778644ed9 + - c8c75a61-e69b-4a3e-bb7f-285eddc55744 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -9346,17 +9172,17 @@ 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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True response: body: - string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName": - "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": - "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, - {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009", - "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName": + "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id": + "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId": + "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009", + "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -9365,15 +9191,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '240' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:19:24 GMT + - Wed, 20 May 2026 08:41:46 GMT Pragma: - no-cache RequestId: - - 88500a08-2ce3-4072-9f62-a61ffe390f09 + - b27315f5-80a2-4d88-b313-6f3c721be043 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -9399,19 +9225,20 @@ 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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items response: body: - string: '{"value": [{"id": "ef61ccc3-71c4-4ff2-9554-e52e4a549b14", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "6da7abe9-44db-49be-a885-48f74490660f", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "8487c193-5930-4805-a9dc-ddfe0e58f3c8", - "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe"}, {"id": "a2a09ffc-826f-4cef-b00d-ccef7f25dea0", - "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId": - "6fd12cfb-7dc9-47c3-b649-5c146f4ce735"}]}' + string: '{"value": [{"id": "38a86bcc-82f4-4f58-9cba-c8aac226aa5d", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "971e55ca-ba5d-47d9-88df-235b11e7e5cc", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "0e010915-e8ca-4517-917d-c0e09abec2b2", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d", + "folderId": "a7a0457b-c329-46d9-9633-d97806acc7d7"}, {"id": "69eb599d-1afa-4d77-90f2-ee50fc819cbe", + "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId": + "2b905c52-4520-4342-a846-90e8641a367d", "folderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -9420,15 +9247,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '376' + - '364' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:19:24 GMT + - Wed, 20 May 2026 08:41:46 GMT Pragma: - no-cache RequestId: - - c903d8bd-7d06-4926-8e67-fa556ab3277a + - db9eb7d9-5f92-4cbc-808b-2697e4179821 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -9454,17 +9281,17 @@ 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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True response: body: - string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName": - "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": - "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, - {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009", - "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName": + "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id": + "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId": + "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009", + "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -9473,15 +9300,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '240' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:19:25 GMT + - Wed, 20 May 2026 08:41:47 GMT Pragma: - no-cache RequestId: - - 9af01161-1034-4f46-94b6-e3589f23edec + - eed2d3dc-5fe7-4cb5-b2d4-931318ddd916 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -9507,17 +9334,17 @@ 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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True response: body: - string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName": - "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": - "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, - {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009", - "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName": + "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id": + "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId": + "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009", + "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -9526,15 +9353,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '240' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:19:25 GMT + - Wed, 20 May 2026 08:41:48 GMT Pragma: - no-cache RequestId: - - 7df6c1e9-3c44-4780-903c-952892935147 + - ed72d1e7-c2db-44c8-b9cd-ab18733360e3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -9560,19 +9387,20 @@ 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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items response: body: - string: '{"value": [{"id": "ef61ccc3-71c4-4ff2-9554-e52e4a549b14", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "6da7abe9-44db-49be-a885-48f74490660f", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "8487c193-5930-4805-a9dc-ddfe0e58f3c8", - "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe"}, {"id": "a2a09ffc-826f-4cef-b00d-ccef7f25dea0", - "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId": - "6fd12cfb-7dc9-47c3-b649-5c146f4ce735"}]}' + string: '{"value": [{"id": "38a86bcc-82f4-4f58-9cba-c8aac226aa5d", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "971e55ca-ba5d-47d9-88df-235b11e7e5cc", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "0e010915-e8ca-4517-917d-c0e09abec2b2", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d", + "folderId": "a7a0457b-c329-46d9-9633-d97806acc7d7"}, {"id": "69eb599d-1afa-4d77-90f2-ee50fc819cbe", + "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId": + "2b905c52-4520-4342-a846-90e8641a367d", "folderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -9581,15 +9409,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '376' + - '364' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:19:26 GMT + - Wed, 20 May 2026 08:41:48 GMT Pragma: - no-cache RequestId: - - fa6abe54-1364-490a-bb35-2ea5deaf8f4d + - 317d0892-85b2-4a64-b79f-2b1eae800dc1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -9615,57 +9443,17 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True - response: - body: - string: '{"requestId": "2f88e00f-b1be-4653-9c1d-c57c91099a63", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 7:20:17 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:19:27 GMT - RequestId: - - 2f88e00f-b1be-4653-9c1d-c57c91099a63 - Retry-After: - - '50' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True response: body: - string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName": - "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": - "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, - {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009", - "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName": + "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id": + "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId": + "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009", + "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -9674,15 +9462,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '240' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:20:21 GMT + - Wed, 20 May 2026 08:41:50 GMT Pragma: - no-cache RequestId: - - ae28e982-d497-4ed4-a3fb-260366657ef6 + - d4b6f860-7644-47d8-9540-1ae889a9381a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -9708,17 +9496,17 @@ 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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True response: body: - string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName": - "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": - "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, - {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009", - "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName": + "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id": + "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId": + "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009", + "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -9727,15 +9515,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '240' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:20:21 GMT + - Wed, 20 May 2026 08:41:51 GMT Pragma: - no-cache RequestId: - - 4b5ae970-5a3f-4c9c-b49f-d00a6bbdaf9b + - 057aea9b-6ed2-49f7-afc5-3df6503991e9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -9761,14 +9549,14 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items/2ff7ab09-22d6-4330-812e-786cc2b98dcc + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items/31ab844f-cd18-44cd-9448-93944edfccf0 response: body: - string: '{"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc", "type": "DataPipeline", - "displayName": "fabcli000010", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}' + string: '{"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", + "displayName": "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -9777,17 +9565,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '201' + - '191' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:20:22 GMT + - Wed, 20 May 2026 08:41:51 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 482a4456-9e31-455a-ac8a-1078540e40cc + - 21fe19f5-b12d-423f-807d-23788dd7bb61 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -9815,14 +9603,14 @@ interactions: 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items/2ff7ab09-22d6-4330-812e-786cc2b98dcc/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items/31ab844f-cd18-44cd-9448-93944edfccf0/getDefinition response: body: string: '{"definition": {"parts": [{"path": "pipeline-content.json", "payload": "ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==", "payloadType": - "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDEwIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDEwIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -9832,15 +9620,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '457' + - '440' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:20:23 GMT + - Wed, 20 May 2026 08:41:53 GMT Pragma: - no-cache RequestId: - - adebf404-9825-41e3-9638-8720087b75c6 + - 66fd9c92-9ff7-4c39-9353-0f58bd77c3ed Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -9855,11 +9643,10 @@ interactions: code: 200 message: OK - request: - body: '{"type": "DataPipeline", "displayName": - "fabcli000010", "definition": {"parts": [{"path": "pipeline-content.json", "payload": - "ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==", "payloadType": - "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDEwIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", - "payloadType": "InlineBase64"}]}, "folderId": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1"}' + body: '{"type": "DataPipeline", "displayName": "fabcli000010", "definition": {"parts": + [{"path": "pipeline-content.json", "payload": "ewogICJwcm9wZXJ0aWVzIjogewogICAgImFjdGl2aXRpZXMiOiBbXQogIH0KfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIkRhdGFQaXBlbGluZSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDEwIgogIH0sCiAgImNvbmZpZyI6IHsKICAgICJ2ZXJzaW9uIjogIjIuMCIsCiAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICB9Cn0=", + "payloadType": "InlineBase64"}]}, "folderId": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65"}' headers: Accept: - '*/*' @@ -9868,19 +9655,18 @@ interactions: Connection: - keep-alive Content-Length: - - '812' - + - '760' 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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items response: body: - string: '{"id": "fc2e306d-4424-4295-9eca-19cfd2f979e4", "type": "DataPipeline", - "displayName": "fabcli000010", "workspaceId": - "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1"}' + string: '{"id": "24d03dfd-5785-4ca9-bdf9-2b9e79a5d7c1", "type": "DataPipeline", + "displayName": "fabcli000010", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d", + "folderId": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -9889,17 +9675,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '201' + - '190' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:20:28 GMT + - Wed, 20 May 2026 08:41:56 GMT ETag: - '""' Pragma: - no-cache RequestId: - - f513b4bf-eb68-4a5d-a53f-f22ea2e97f9d + - 0b9b616a-5e0e-49e3-9753-d12f23907c66 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -9925,16 +9711,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -9943,15 +9732,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:20:28 GMT + - Wed, 20 May 2026 08:41:57 GMT Pragma: - no-cache RequestId: - - 6a6ee1e7-532a-4429-a1c2-1a1f1bc6748b + - b83d05f2-9557-4cb4-90aa-0a3f9995ec01 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -9977,21 +9766,23 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items response: body: - string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90", - "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7", - "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "8bc050b1-0bfd-472d-8dca-319b9d248a54"}, {"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc", - "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}]}' + string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3", + "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId": + "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"}, + {"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", "displayName": + "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -10000,15 +9791,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '437' + - '425' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:20:30 GMT + - Wed, 20 May 2026 08:41:58 GMT Pragma: - no-cache RequestId: - - 790716e2-06ab-4f36-8b0a-afb2e441da6d + - eb9f2871-3550-4ed2-820c-3454aca58ff8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -10034,17 +9825,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -10053,15 +9844,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:20:30 GMT + - Wed, 20 May 2026 08:41:59 GMT Pragma: - no-cache RequestId: - - 8b18dc49-d6af-4d3f-bd21-7a47a539c89e + - d8ca2913-5413-4ee6-9361-c494b63880da Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -10087,17 +9878,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -10106,15 +9897,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:20:31 GMT + - Wed, 20 May 2026 08:42:00 GMT Pragma: - no-cache RequestId: - - 1221a17f-f1fc-46ff-bb03-7294ef2077d6 + - aa557e9e-3ad2-42c6-bb1b-5847adac77b5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -10140,17 +9931,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -10159,15 +9950,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:20:32 GMT + - Wed, 20 May 2026 08:42:01 GMT Pragma: - no-cache RequestId: - - 2cfcead8-24a5-425d-84a0-5151c04a5d53 + - de0f55a5-35e5-4351-b328-358985079bd0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -10193,17 +9984,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -10212,15 +10003,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:20:32 GMT + - Wed, 20 May 2026 08:42:02 GMT Pragma: - no-cache RequestId: - - 75994635-0530-44c9-bf97-6b6658b7111f + - 6b2f334b-8601-4103-8f2e-6469ae5104fc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -10246,16 +10037,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -10264,15 +10058,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:20:33 GMT + - Wed, 20 May 2026 08:42:02 GMT Pragma: - no-cache RequestId: - - 2d75b99f-c32b-4ba9-8cf5-de9c649745e2 + - ac39b6f6-eed8-446c-85e4-74e4a011329c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -10298,21 +10092,23 @@ 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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items response: body: - string: '{"value": [{"id": "ef61ccc3-71c4-4ff2-9554-e52e4a549b14", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "6da7abe9-44db-49be-a885-48f74490660f", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "8487c193-5930-4805-a9dc-ddfe0e58f3c8", - "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe"}, {"id": "a2a09ffc-826f-4cef-b00d-ccef7f25dea0", - "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId": - "6fd12cfb-7dc9-47c3-b649-5c146f4ce735"}, {"id": "fc2e306d-4424-4295-9eca-19cfd2f979e4", - "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId": - "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1"}]}' + string: '{"value": [{"id": "38a86bcc-82f4-4f58-9cba-c8aac226aa5d", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "971e55ca-ba5d-47d9-88df-235b11e7e5cc", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "0e010915-e8ca-4517-917d-c0e09abec2b2", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d", + "folderId": "a7a0457b-c329-46d9-9633-d97806acc7d7"}, {"id": "69eb599d-1afa-4d77-90f2-ee50fc819cbe", + "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId": + "2b905c52-4520-4342-a846-90e8641a367d", "folderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2"}, + {"id": "24d03dfd-5785-4ca9-bdf9-2b9e79a5d7c1", "type": "DataPipeline", "displayName": + "fabcli000010", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d", + "folderId": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -10321,15 +10117,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '436' + - '422' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:20:35 GMT + - Wed, 20 May 2026 08:42:03 GMT Pragma: - no-cache RequestId: - - 858ca515-8e81-4928-b5a2-0e496bf1377e + - 4fa4b364-fdbb-4f0f-a956-9be64e4ae859 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -10355,17 +10151,17 @@ 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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True response: body: - string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName": - "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": - "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, - {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009", - "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName": + "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id": + "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId": + "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009", + "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -10374,15 +10170,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '240' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:20:35 GMT + - Wed, 20 May 2026 08:42:04 GMT Pragma: - no-cache RequestId: - - 69945fad-dd53-4408-9e6d-611b572a8c4e + - 5f213796-adda-446c-8df8-129f1ac35773 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -10408,17 +10204,17 @@ 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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True response: body: - string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName": - "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": - "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, - {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009", - "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName": + "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id": + "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId": + "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009", + "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -10427,15 +10223,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '240' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:20:36 GMT + - Wed, 20 May 2026 08:42:05 GMT Pragma: - no-cache RequestId: - - b926130d-b9ba-41b0-8b25-0706ca85536a + - 341729d6-c4e5-4d2e-ad94-a94875a1d510 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -10461,17 +10257,17 @@ 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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True response: body: - string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName": - "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": - "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, - {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009", - "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName": + "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id": + "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId": + "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009", + "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -10480,15 +10276,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '240' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:20:36 GMT + - Wed, 20 May 2026 08:42:06 GMT Pragma: - no-cache RequestId: - - 2aa3f3f7-8eb5-46d2-95b8-3789e2bfe43c + - b4681eb7-dbae-4979-97dc-11a1a330199d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -10514,17 +10310,17 @@ 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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True response: body: - string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName": - "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": - "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, - {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009", - "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName": + "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id": + "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId": + "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009", + "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -10533,15 +10329,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '240' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:20:37 GMT + - Wed, 20 May 2026 08:42:07 GMT Pragma: - no-cache RequestId: - - dacd10e6-7750-4998-a5b1-4dabbe613cf1 + - bc7e8ebf-47a1-4b79-9d75-63044fc8deda Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -10567,16 +10363,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -10585,15 +10384,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:20:38 GMT + - Wed, 20 May 2026 08:42:07 GMT Pragma: - no-cache RequestId: - - 30f8b345-12ca-4389-995a-8ed79424d274 + - a68d5e97-5a6e-4b23-84ff-297bee49db29 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -10619,57 +10418,17 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True - response: - body: - string: '{"requestId": "2818d245-50f3-4f18-a3f5-3a6d4587654c", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 7:21:22 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:20:39 GMT - RequestId: - - 2818d245-50f3-4f18-a3f5-3a6d4587654c - Retry-After: - - '42' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -10678,15 +10437,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:21:24 GMT + - Wed, 20 May 2026 08:42:09 GMT Pragma: - no-cache RequestId: - - e36c0f43-e8af-449b-98b1-a6206ca78798 + - 907f1c16-4108-4fe4-8db3-bd9a6c549df8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -10712,21 +10471,23 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items response: body: - string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90", - "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7", - "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "8bc050b1-0bfd-472d-8dca-319b9d248a54"}, {"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc", - "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}]}' + string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3", + "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId": + "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"}, + {"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", "displayName": + "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -10735,15 +10496,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '437' + - '425' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:21:25 GMT + - Wed, 20 May 2026 08:42:09 GMT Pragma: - no-cache RequestId: - - a5c11145-527e-49cf-869b-e395c3d51810 + - ebd8b74a-ca90-4303-bcfa-4f977b99d2b4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -10769,17 +10530,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -10788,15 +10549,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:21:26 GMT + - Wed, 20 May 2026 08:42:10 GMT Pragma: - no-cache RequestId: - - f57034a0-4134-4f96-84bb-e4e2cb842858 + - 29e01bb2-7391-493a-b7e2-d2fffaefb287 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -10822,17 +10583,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -10841,15 +10602,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:21:26 GMT + - Wed, 20 May 2026 08:42:11 GMT Pragma: - no-cache RequestId: - - 24fd9a7a-2cba-4335-9336-0c79f753cea7 + - 40ab3bd2-6c06-46ca-951a-864b3afc3f3b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -10875,17 +10636,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -10894,15 +10655,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:21:27 GMT + - Wed, 20 May 2026 08:42:11 GMT Pragma: - no-cache RequestId: - - 5e942328-27f5-4450-9900-038f4690ea6a + - 3f467bdc-e622-4584-94cb-467d9691d45b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -10928,17 +10689,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -10947,15 +10708,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:21:28 GMT + - Wed, 20 May 2026 08:42:12 GMT Pragma: - no-cache RequestId: - - 4bc4a050-32a1-4af5-a39b-8ad746c38e08 + - e69ea904-4f65-4500-8eea-499dc055e61e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -10981,16 +10742,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -10999,15 +10763,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:21:28 GMT + - Wed, 20 May 2026 08:42:13 GMT Pragma: - no-cache RequestId: - - 1dc7fc29-5281-447e-8b29-12dc9eb2238f + - 4a24ce2c-e5ab-492b-ab46-0e0c4f3459fa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -11033,17 +10797,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -11052,15 +10816,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:21:29 GMT + - Wed, 20 May 2026 08:42:13 GMT Pragma: - no-cache RequestId: - - 6221b0fa-6ed0-4e65-9ca7-3d341634b3dd + - 1ca13069-a508-4be8-9829-ca73e960b7ad Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -11086,17 +10850,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -11105,15 +10869,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:21:31 GMT + - Wed, 20 May 2026 08:42:14 GMT Pragma: - no-cache RequestId: - - 993f6f30-1199-4d00-9c74-6b109160946c + - 9c90578b-f230-4b10-aca4-2e450e3759a7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -11139,21 +10903,23 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items response: body: - string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90", - "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7", - "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "8bc050b1-0bfd-472d-8dca-319b9d248a54"}, {"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc", - "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}]}' + string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3", + "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId": + "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"}, + {"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", "displayName": + "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -11162,15 +10928,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '437' + - '425' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:21:32 GMT + - Wed, 20 May 2026 08:42:14 GMT Pragma: - no-cache RequestId: - - bc350e43-fac9-4997-90e6-300200c921d7 + - 19618130-0486-4e68-8a1b-a0f39fc457fb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -11196,17 +10962,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -11215,15 +10981,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:21:31 GMT + - Wed, 20 May 2026 08:42:15 GMT Pragma: - no-cache RequestId: - - 1f9a2d2a-94e7-407d-9bf1-4e607e143039 + - e289757d-a367-4f37-9e59-4be568514b1e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -11249,17 +11015,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -11268,15 +11034,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:21:33 GMT + - Wed, 20 May 2026 08:42:16 GMT Pragma: - no-cache RequestId: - - 84be72f5-9e5f-462d-9233-5091ee93a4a6 + - f4cce5f3-ce1a-4ce1-b7d3-7e7a106240d3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -11302,17 +11068,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -11321,15 +11087,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:21:33 GMT + - Wed, 20 May 2026 08:42:17 GMT Pragma: - no-cache RequestId: - - 912bc665-c373-4bae-a9c3-4df34de5d995 + - 6817f28a-2a8c-4fa3-b376-66accfcf55d2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -11355,57 +11121,17 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True - response: - body: - string: '{"requestId": "686c7408-7768-412d-80aa-c0f6f9d5b6c1", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 7:22:25 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:21:34 GMT - RequestId: - - 686c7408-7768-412d-80aa-c0f6f9d5b6c1 - Retry-After: - - '50' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -11414,15 +11140,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:22:28 GMT + - Wed, 20 May 2026 08:42:17 GMT Pragma: - no-cache RequestId: - - 05a0e304-36e8-4f1d-adc9-6b49742bb718 + - 731b8cde-ea5a-40e6-9dcc-090562f078d9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -11448,16 +11174,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -11466,15 +11195,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:22:28 GMT + - Wed, 20 May 2026 08:42:18 GMT Pragma: - no-cache RequestId: - - 72adae07-166e-47a0-ab14-d0a06c7b4baf + - 40b566c2-c583-4a89-a83f-7a36dc6acb6f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -11500,17 +11229,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -11519,15 +11248,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:22:29 GMT + - Wed, 20 May 2026 08:42:18 GMT Pragma: - no-cache RequestId: - - 4d345e69-daba-4ffd-a163-a1eb457ca6e0 + - 7e22925e-4bf5-4cc4-9809-ef54ca86cefe Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -11553,17 +11282,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -11572,15 +11301,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:22:30 GMT + - Wed, 20 May 2026 08:42:19 GMT Pragma: - no-cache RequestId: - - b69f1549-441e-48a2-939e-24e0fa6c8ee4 + - a70cfd49-d09c-406c-b227-2758427816e9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -11606,17 +11335,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -11625,15 +11354,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:22:31 GMT + - Wed, 20 May 2026 08:42:19 GMT Pragma: - no-cache RequestId: - - 95214a30-d735-404c-85ac-e02578795bda + - a9d90acb-acdd-4907-a19b-a8925d4cd58b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -11659,21 +11388,23 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items response: body: - string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90", - "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7", - "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "8bc050b1-0bfd-472d-8dca-319b9d248a54"}, {"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc", - "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}]}' + string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3", + "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId": + "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"}, + {"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", "displayName": + "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -11682,15 +11413,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '437' + - '425' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:22:32 GMT + - Wed, 20 May 2026 08:42:21 GMT Pragma: - no-cache RequestId: - - 6dee60d8-9dc6-4c9d-866f-decfb1d252eb + - 657ce57c-d424-411d-87cd-a456229eab76 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -11716,17 +11447,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -11735,15 +11466,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:22:33 GMT + - Wed, 20 May 2026 08:42:22 GMT Pragma: - no-cache RequestId: - - 1cc2c328-f476-4d54-b4d6-b6d4fe4672b6 + - bfc81c18-b2cd-4ac6-b970-471ea8311716 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -11769,17 +11500,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -11788,15 +11519,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:22:34 GMT + - Wed, 20 May 2026 08:42:22 GMT Pragma: - no-cache RequestId: - - c19ad541-0bd3-4cf5-9190-59fd41cff0c2 + - 464d8fea-ca89-402c-a182-685939b5cd4e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -11822,17 +11553,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -11841,15 +11572,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:22:35 GMT + - Wed, 20 May 2026 08:42:22 GMT Pragma: - no-cache RequestId: - - 3b0e7416-fb48-4209-b18d-c7c97035cebc + - 55e2e601-85ed-41a4-8606-bba02464881e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -11875,17 +11606,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -11894,15 +11625,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:22:35 GMT + - Wed, 20 May 2026 08:42:24 GMT Pragma: - no-cache RequestId: - - 741a9450-8898-43a7-8d8c-2ef337e6f7b9 + - 637f2202-8c84-4ecd-9086-5550a8725b55 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -11928,16 +11659,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -11946,15 +11680,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:22:36 GMT + - Wed, 20 May 2026 08:42:24 GMT Pragma: - no-cache RequestId: - - b3b343d7-486c-482d-82f7-17a16c5bcfcc + - 6712a511-e2ea-48db-bdc6-0a9914ffbb31 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -11980,17 +11714,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -11999,15 +11733,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:22:36 GMT + - Wed, 20 May 2026 08:42:25 GMT Pragma: - no-cache RequestId: - - 755eb885-e40d-493f-92d6-e717168e5b17 + - fd93532f-0f41-424f-b19b-752475cab62b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -12033,17 +11767,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -12052,15 +11786,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:22:37 GMT + - Wed, 20 May 2026 08:42:25 GMT Pragma: - no-cache RequestId: - - 9f957177-a3b5-44a2-b901-cb8d74bda89e + - 0ed43209-4617-47b9-a2d8-1e63798ddf5f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -12086,57 +11820,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"requestId": "3c849e62-35ad-419d-b128-f126227b2a8b", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 7:23:29 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:22:38 GMT - RequestId: - - 3c849e62-35ad-419d-b128-f126227b2a8b - Retry-After: - - '50' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True - response: - body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -12145,15 +11839,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:23:31 GMT + - Wed, 20 May 2026 08:42:26 GMT Pragma: - no-cache RequestId: - - f6527957-4985-4f27-aafd-9ef6b2caa407 + - f4d46d1f-200f-4e4a-a7c5-e8ff8f3c47a5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -12179,21 +11873,23 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items response: body: - string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90", - "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7", - "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "8bc050b1-0bfd-472d-8dca-319b9d248a54"}, {"id": "2ff7ab09-22d6-4330-812e-786cc2b98dcc", - "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "0f7dddf1-2640-4896-8afb-e5e75e01f71a"}]}' + string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3", + "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId": + "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"}, + {"id": "31ab844f-cd18-44cd-9448-93944edfccf0", "type": "DataPipeline", "displayName": + "fabcli000010", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "fffd0349-9469-4178-a508-c3bc2a5926cd"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -12202,15 +11898,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '437' + - '425' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:23:32 GMT + - Wed, 20 May 2026 08:42:28 GMT Pragma: - no-cache RequestId: - - b5752b0c-7eb6-4622-b446-66734d489894 + - 69d754fb-dce6-4978-b6e8-216d8f3cd237 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -12236,17 +11932,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -12255,15 +11951,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:23:33 GMT + - Wed, 20 May 2026 08:42:28 GMT Pragma: - no-cache RequestId: - - 3f17ed4f-7639-4da6-91a0-f529e8bb85b3 + - da0491d0-299c-4021-be0f-fc2604e9e65e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -12289,17 +11985,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -12308,15 +12004,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:23:34 GMT + - Wed, 20 May 2026 08:42:29 GMT Pragma: - no-cache RequestId: - - 78256d0e-ab3b-49ff-a2ac-55c5d0ca332c + - 0a5fd3a6-e40c-47a0-9977-9298b4e2f43d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -12342,17 +12038,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -12361,15 +12057,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:23:34 GMT + - Wed, 20 May 2026 08:42:30 GMT Pragma: - no-cache RequestId: - - 27f2a99a-d548-4cbb-9c99-a340b78d082a + - 05da93b4-00fe-4184-86e5-f442a24bc95c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -12397,9 +12093,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items/2ff7ab09-22d6-4330-812e-786cc2b98dcc + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items/31ab844f-cd18-44cd-9448-93944edfccf0 response: body: string: '' @@ -12415,11 +12111,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:23:35 GMT + - Wed, 20 May 2026 08:42:31 GMT Pragma: - no-cache RequestId: - - 4681ea4d-74ea-4f58-80fb-0cd36c235d42 + - 143f26b3-e5c0-49cc-9a4a-ea97b6a30776 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -12445,16 +12141,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -12463,15 +12162,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:23:36 GMT + - Wed, 20 May 2026 08:42:32 GMT Pragma: - no-cache RequestId: - - e067a779-ac5a-4221-bddb-dfb7a856b225 + - d0410552-1ee6-4961-8c02-f5f7c54735db Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -12497,17 +12196,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -12516,15 +12215,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:23:37 GMT + - Wed, 20 May 2026 08:42:33 GMT Pragma: - no-cache RequestId: - - c5dd6c1d-c8a0-4f36-beb7-e62949fabc37 + - dce8ab73-cf39-4143-aaac-6e4c7469319a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -12550,17 +12249,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -12569,15 +12268,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:23:38 GMT + - Wed, 20 May 2026 08:42:33 GMT Pragma: - no-cache RequestId: - - d419cef1-ac54-413d-979b-04795d12d568 + - fe4894df-9c94-47a0-b6db-44ed263b560c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -12603,19 +12302,20 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items response: body: - string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90", - "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a"}, {"id": "026af425-a57f-470f-a2b7-96dd24537cb7", - "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "8bc050b1-0bfd-472d-8dca-319b9d248a54"}]}' + string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}, {"id": "9d94eef1-2e72-41a1-97a2-417c7c9ed7d3", + "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId": + "b498efc2-a561-45ed-a186-28a0174117cc", "folderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -12624,15 +12324,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '375' + - '367' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:23:39 GMT + - Wed, 20 May 2026 08:42:33 GMT Pragma: - no-cache RequestId: - - 5ab28735-f6fc-4f80-9d9b-594494f34616 + - 9512310d-cd4e-49d2-8eab-c3837c8c49b3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -12658,17 +12358,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -12677,15 +12377,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:23:40 GMT + - Wed, 20 May 2026 08:42:34 GMT Pragma: - no-cache RequestId: - - f02777b0-0a16-4ad0-96dd-c72331216b00 + - 17efbf91-f493-4030-a19a-1a4b2cf76186 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -12711,17 +12411,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -12730,15 +12430,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:23:40 GMT + - Wed, 20 May 2026 08:42:35 GMT Pragma: - no-cache RequestId: - - 17ab1099-ebb2-490f-bcfc-e4199d1c0cc5 + - 97b75129-48af-48ad-83a7-6efcf7d42e5a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -12766,9 +12466,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items/026af425-a57f-470f-a2b7-96dd24537cb7 + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items/9d94eef1-2e72-41a1-97a2-417c7c9ed7d3 response: body: string: '' @@ -12784,11 +12484,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:23:41 GMT + - Wed, 20 May 2026 08:42:35 GMT Pragma: - no-cache RequestId: - - 586b6857-84eb-4733-822b-57b7066afe10 + - 34713326-cf60-4159-996a-14d93b3302b3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -12814,16 +12514,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -12832,15 +12535,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:23:42 GMT + - Wed, 20 May 2026 08:42:37 GMT Pragma: - no-cache RequestId: - - 36ef5d65-9cb0-4373-ba40-3488f0757b65 + - 2defdae7-c07e-4527-9226-e795881ed92f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -12866,17 +12569,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -12885,15 +12588,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:23:42 GMT + - Wed, 20 May 2026 08:42:38 GMT Pragma: - no-cache RequestId: - - 271ce54c-1070-4627-a6e1-aff4e79f5b99 + - b02f998f-6010-450a-9ba4-472920b9f084 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -12919,17 +12622,18 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items response: body: - string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "41915c7d-5855-4a08-98d4-ab113bb4dc90", - "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "folderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a"}]}' + string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "362ea567-b1e9-4245-8637-235ff3651b79", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc", + "folderId": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -12938,15 +12642,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '315' + - '303' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:23:43 GMT + - Wed, 20 May 2026 08:42:38 GMT Pragma: - no-cache RequestId: - - 63fdef2e-445d-4439-b698-26c932ad63f6 + - 16fc56a9-c8c5-42e4-8e25-b63bcf27b6e9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -12972,17 +12676,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -12991,15 +12695,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:23:44 GMT + - Wed, 20 May 2026 08:42:39 GMT Pragma: - no-cache RequestId: - - f2b551d5-aa78-47be-8e4e-edea901f2f83 + - 873bc608-f8f9-4617-a8ee-36c5d0cecd1c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -13027,9 +12731,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items/41915c7d-5855-4a08-98d4-ab113bb4dc90 + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items/362ea567-b1e9-4245-8637-235ff3651b79 response: body: string: '' @@ -13045,11 +12749,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:23:45 GMT + - Wed, 20 May 2026 08:42:40 GMT Pragma: - no-cache RequestId: - - a93cb2f9-8229-45a2-99a4-98381fa3cf42 + - 73f633d6-f611-4810-bea1-e6b70a6b0f8d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -13075,16 +12779,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -13093,15 +12800,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:23:45 GMT + - Wed, 20 May 2026 08:42:40 GMT Pragma: - no-cache RequestId: - - 7d6d6df9-5925-4500-98d2-9424eabf53e3 + - 3fb7ab00-0099-4c49-bada-72556003c6bd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -13127,15 +12834,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items response: body: - string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": "ad72984e-0fb6-4852-a478-dd3821416ce4", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "70d2a102-4825-405b-9a3f-dc5f3944e33b", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -13144,15 +12851,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '233' + - '221' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:23:46 GMT + - Wed, 20 May 2026 08:42:41 GMT Pragma: - no-cache RequestId: - - 9911b738-3580-4853-b6e5-d660d52a493a + - cbfd7864-1cb9-4c4e-8168-f560a969b631 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -13180,9 +12887,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items/ad72984e-0fb6-4852-a478-dd3821416ce4 + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items/70d2a102-4825-405b-9a3f-dc5f3944e33b response: body: string: '' @@ -13198,11 +12905,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:23:46 GMT + - Wed, 20 May 2026 08:42:41 GMT Pragma: - no-cache RequestId: - - 8cc2a3a7-d8f5-49c8-8692-a848a24c81c8 + - 05a9da61-7b80-46dd-bcbe-f14e5bd43de2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -13228,16 +12935,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -13246,15 +12956,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:23:47 GMT + - Wed, 20 May 2026 08:42:41 GMT Pragma: - no-cache RequestId: - - aa1e47a4-f644-4fb0-b381-6e6ca9f621db + - d5661b23-c88a-4703-9882-77ee5bbebaa2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -13280,14 +12990,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items response: body: - string: '{"value": [{"id": "e0612997-1710-47a0-8195-286fc037e24c", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "5a2e7c38-50e8-442d-b973-118e8a666892", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -13296,15 +13005,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '177' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:23:48 GMT + - Wed, 20 May 2026 08:42:42 GMT Pragma: - no-cache RequestId: - - 84084fad-07b0-4abd-95d4-e80a053f1885 + - 9b00981e-c29d-479d-8077-f720e9830e82 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -13332,9 +13041,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items/e0612997-1710-47a0-8195-286fc037e24c + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items/5a2e7c38-50e8-442d-b973-118e8a666892 response: body: string: '' @@ -13350,11 +13059,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:23:49 GMT + - Wed, 20 May 2026 08:42:43 GMT Pragma: - no-cache RequestId: - - 428f57ef-58d1-4916-a8b4-0748534908e3 + - f605bbd7-5fe0-4cca-bee7-8818a55d5812 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -13380,16 +13089,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -13398,15 +13110,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:23:49 GMT + - Wed, 20 May 2026 08:42:43 GMT Pragma: - no-cache RequestId: - - c461d942-42f3-4633-b487-0e12fc91b981 + - 6d01ea06-71f7-4f1f-ba70-cf163dd71f0d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -13432,57 +13144,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"requestId": "802efe81-02e3-4da2-9748-5cb51df95184", "errorCode": - "RequestBlocked", "message": "Request is blocked by the upstream service until: - 2/6/2026 7:24:33 AM (UTC)", "isRetriable": true}' - headers: - Content-Length: - - '188' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 06 Feb 2026 07:23:49 GMT - RequestId: - - 802efe81-02e3-4da2-9748-5cb51df95184 - Retry-After: - - '43' - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - x-ms-public-api-error-code: - - RequestBlocked - status: - code: 429 - message: '' -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True - response: - body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -13491,15 +13163,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:24:36 GMT + - Wed, 20 May 2026 08:42:44 GMT Pragma: - no-cache RequestId: - - 64d10740-3e85-4812-9ef8-541c05b40ef5 + - ac83a3b1-27a3-488c-9162-be772ed18c61 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -13525,17 +13197,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -13544,15 +13216,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:24:36 GMT + - Wed, 20 May 2026 08:42:44 GMT Pragma: - no-cache RequestId: - - fc167a31-878c-4b36-8afb-52c0837546af + - e0fa920d-29a4-45cb-ba30-269c22f72c87 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -13578,17 +13250,17 @@ 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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, - {"id": "0f7dddf1-2640-4896-8afb-e5e75e01f71a", "displayName": "fabcli000009", - "parentFolderId": "8bc050b1-0bfd-472d-8dca-319b9d248a54", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, + {"id": "fffd0349-9469-4178-a508-c3bc2a5926cd", "displayName": "fabcli000009", + "parentFolderId": "c29d7414-de5d-4d2f-b142-38b5b29843cd", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -13597,15 +13269,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:24:37 GMT + - Wed, 20 May 2026 08:42:45 GMT Pragma: - no-cache RequestId: - - e4fe4715-b394-4c16-b56c-5a3e42d95e46 + - 33177b6c-8509-4299-90d8-97a0bbf9210e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -13633,9 +13305,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders/0f7dddf1-2640-4896-8afb-e5e75e01f71a + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders/fffd0349-9469-4178-a508-c3bc2a5926cd response: body: string: '' @@ -13651,11 +13323,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:24:38 GMT + - Wed, 20 May 2026 08:42:46 GMT Pragma: - no-cache RequestId: - - c514f590-68a4-4330-8d9e-d6aab9a6130b + - aa7dcedd-6539-452d-b251-51a3c4f9fff5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -13681,16 +13353,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -13699,15 +13374,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:24:39 GMT + - Wed, 20 May 2026 08:42:47 GMT Pragma: - no-cache RequestId: - - dc83f2c9-6e0e-4bdd-bbd7-af6031911040 + - 012ffd4f-142b-44f1-8cfe-0d162f0680ea Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -13733,15 +13408,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -13750,15 +13425,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '204' + - '202' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:24:40 GMT + - Wed, 20 May 2026 08:42:46 GMT Pragma: - no-cache RequestId: - - 16b30e18-0dbd-4b69-b7a1-afd662ae5a1c + - dae708ed-b329-4eba-943b-4ac4ae9e7053 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -13784,15 +13459,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}, {"id": - "8bc050b1-0bfd-472d-8dca-319b9d248a54", "displayName": "fabcli000007", "parentFolderId": - "5ac60325-e9cc-4450-86c3-95d68719a15a", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}, {"id": + "c29d7414-de5d-4d2f-b142-38b5b29843cd", "displayName": "fabcli000007", "parentFolderId": + "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -13801,15 +13476,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '204' + - '202' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:24:40 GMT + - Wed, 20 May 2026 08:42:48 GMT Pragma: - no-cache RequestId: - - 08510f1f-7fe7-420b-87c3-d7508ca6936e + - c3f0573e-689b-426f-99f1-51ac89e5f90f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -13837,9 +13512,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders/8bc050b1-0bfd-472d-8dca-319b9d248a54 + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders/c29d7414-de5d-4d2f-b142-38b5b29843cd response: body: string: '' @@ -13855,11 +13530,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:24:41 GMT + - Wed, 20 May 2026 08:42:48 GMT Pragma: - no-cache RequestId: - - 982daa65-4027-4aae-a89c-89cc08167491 + - 6c8ef203-61c2-46f3-a8b9-8b6b36624f0d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -13885,16 +13560,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -13903,15 +13581,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:24:43 GMT + - Wed, 20 May 2026 08:42:49 GMT Pragma: - no-cache RequestId: - - 95e89ebd-545f-43b3-a57c-5330ba187779 + - 4b12eb84-51cf-49ed-82a3-a74556478b83 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -13937,13 +13615,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders?recursive=True response: body: - string: '{"value": [{"id": "5ac60325-e9cc-4450-86c3-95d68719a15a", "displayName": - "fabcli000005", "workspaceId": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e"}]}' + string: '{"value": [{"id": "a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7", "displayName": + "fabcli000005", "workspaceId": "b498efc2-a561-45ed-a186-28a0174117cc"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -13952,15 +13630,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '144' + - '143' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:24:43 GMT + - Wed, 20 May 2026 08:42:49 GMT Pragma: - no-cache RequestId: - - a6877471-ccd9-4744-a1e7-50939ef24ff5 + - ef7b5f6f-55bf-44fb-8fa3-6401164339d5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -13988,9 +13666,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/folders/5ac60325-e9cc-4450-86c3-95d68719a15a + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/folders/a9c1a112-23a5-4d8c-a366-fc4cb6d6d4a7 response: body: string: '' @@ -14006,11 +13684,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:24:44 GMT + - Wed, 20 May 2026 08:42:50 GMT Pragma: - no-cache RequestId: - - 9f4ee4a5-9799-4467-8033-cc1cc6479ad2 + - 49ba596d-9d02-4cd5-8657-e3248a1c05dd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -14036,16 +13714,19 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "d49dbdfb-ef14-4b54-a034-f5724f9a1f4e", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "b498efc2-a561-45ed-a186-28a0174117cc", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -14054,15 +13735,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2882' + - '2698' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:24:44 GMT + - Wed, 20 May 2026 08:42:50 GMT Pragma: - no-cache RequestId: - - 150c5053-0dbc-4de7-865c-12cd3d2db36a + - d267eae4-ff43-4987-8a73-f61bed00c7f7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -14088,9 +13769,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc/items response: body: string: '{"value": []}' @@ -14106,11 +13787,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:24:45 GMT + - Wed, 20 May 2026 08:42:51 GMT Pragma: - no-cache RequestId: - - 50c2abfa-0f80-4398-8c4f-404f6f84fbce + - c95b648e-f3e9-4847-af28-acda57eea8f8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -14138,9 +13819,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/d49dbdfb-ef14-4b54-a034-f5724f9a1f4e + uri: https://api.fabric.microsoft.com/v1/workspaces/b498efc2-a561-45ed-a186-28a0174117cc response: body: string: '' @@ -14156,11 +13837,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:24:47 GMT + - Wed, 20 May 2026 08:42:52 GMT Pragma: - no-cache RequestId: - - 19d0bb76-b852-46e2-b02a-3e54e5ab6172 + - c42e7cbf-51a8-4df5-9830-97095af2cfac Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -14186,15 +13867,17 @@ 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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "2b905c52-4520-4342-a846-90e8641a367d", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -14203,15 +13886,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2843' + - '2660' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:24:47 GMT + - Wed, 20 May 2026 08:42:52 GMT Pragma: - no-cache RequestId: - - 05550cf2-9bd6-45fe-a89c-22ea2699a796 + - 962ffcc5-75c6-45fd-bd68-505f1e97cedf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -14237,21 +13920,23 @@ 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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/items + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/items response: body: - string: '{"value": [{"id": "ef61ccc3-71c4-4ff2-9554-e52e4a549b14", "type": "Notebook", - "displayName": "fabcli000003", "workspaceId": - "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "6da7abe9-44db-49be-a885-48f74490660f", - "type": "DataPipeline", "displayName": "fabcli000004", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": "8487c193-5930-4805-a9dc-ddfe0e58f3c8", - "type": "SparkJobDefinition", "displayName": "fabcli000006", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe"}, {"id": "a2a09ffc-826f-4cef-b00d-ccef7f25dea0", - "type": "Notebook", "displayName": "fabcli000008", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId": - "6fd12cfb-7dc9-47c3-b649-5c146f4ce735"}, {"id": "fc2e306d-4424-4295-9eca-19cfd2f979e4", - "type": "DataPipeline", "displayName": "fabcli000010", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40", "folderId": - "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1"}]}' + string: '{"value": [{"id": "38a86bcc-82f4-4f58-9cba-c8aac226aa5d", "type": "Notebook", + "displayName": "fabcli000003", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "971e55ca-ba5d-47d9-88df-235b11e7e5cc", "type": "DataPipeline", "displayName": + "fabcli000004", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "0e010915-e8ca-4517-917d-c0e09abec2b2", "type": "SparkJobDefinition", + "displayName": "fabcli000006", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d", + "folderId": "a7a0457b-c329-46d9-9633-d97806acc7d7"}, {"id": "69eb599d-1afa-4d77-90f2-ee50fc819cbe", + "type": "Notebook", "displayName": "fabcli000008", "description": "", "workspaceId": + "2b905c52-4520-4342-a846-90e8641a367d", "folderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2"}, + {"id": "24d03dfd-5785-4ca9-bdf9-2b9e79a5d7c1", "type": "DataPipeline", "displayName": + "fabcli000010", "description": "", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d", + "folderId": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -14260,15 +13945,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '436' + - '422' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:24:48 GMT + - Wed, 20 May 2026 08:42:53 GMT Pragma: - no-cache RequestId: - - fa0e0f2b-5766-4414-9746-aacc2e0d54a5 + - d67c8ed0-c410-4686-b6fd-996a9c11cdd6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -14294,17 +13979,17 @@ 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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True response: body: - string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName": - "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": - "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, - {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009", - "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName": + "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id": + "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId": + "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009", + "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -14313,15 +13998,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '240' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:24:49 GMT + - Wed, 20 May 2026 08:42:53 GMT Pragma: - no-cache RequestId: - - 6e36bed5-d25e-4a06-b28c-408bb4f67912 + - 1cf10fdd-2f32-437f-909a-1d94129bccdd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -14347,17 +14032,17 @@ 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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True response: body: - string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName": - "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": - "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, - {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009", - "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName": + "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id": + "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId": + "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009", + "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -14366,15 +14051,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '240' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:24:50 GMT + - Wed, 20 May 2026 08:42:54 GMT Pragma: - no-cache RequestId: - - 793adff6-581a-417a-bf36-45de14f7d01c + - d7fd7b16-3063-406e-8c0a-c0f975b9c479 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -14400,17 +14085,17 @@ 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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d/folders?recursive=True response: body: - string: '{"value": [{"id": "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "displayName": - "fabcli000005", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, {"id": - "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "displayName": "fabcli000007", "parentFolderId": - "e45124b0-437b-4c39-80a4-7d35e7cec8fe", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}, - {"id": "596e8f0d-a0f4-4f10-8cb4-8509ab18a6e1", "displayName": "fabcli000009", - "parentFolderId": "6fd12cfb-7dc9-47c3-b649-5c146f4ce735", "workspaceId": "e1b3f635-de16-463d-a1ed-8d3dffa0ef40"}]}' + string: '{"value": [{"id": "a7a0457b-c329-46d9-9633-d97806acc7d7", "displayName": + "fabcli000005", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, {"id": + "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "displayName": "fabcli000007", "parentFolderId": + "a7a0457b-c329-46d9-9633-d97806acc7d7", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}, + {"id": "1c15fdc3-ad54-4ed2-87c4-00c40f77fa65", "displayName": "fabcli000009", + "parentFolderId": "d34c8f2d-be34-44ae-9d9c-3249844c8fd2", "workspaceId": "2b905c52-4520-4342-a846-90e8641a367d"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -14419,15 +14104,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '243' + - '240' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:24:50 GMT + - Wed, 20 May 2026 08:42:54 GMT Pragma: - no-cache RequestId: - - 4181ee03-8419-42af-87f4-6d2e929c54a4 + - aa70db7e-35ca-44dd-9a5f-35d585d3b798 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -14455,9 +14140,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/e1b3f635-de16-463d-a1ed-8d3dffa0ef40 + uri: https://api.fabric.microsoft.com/v1/workspaces/2b905c52-4520-4342-a846-90e8641a367d response: body: string: '' @@ -14473,11 +14158,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 06 Feb 2026 07:24:52 GMT + - Wed, 20 May 2026 08:42:55 GMT Pragma: - no-cache RequestId: - - 45b1c4d4-219a-4e3f-8dc6-09415c21b7e0 + - 0453a382-a4da-47d7-ae52-07317d642f45 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_workspace_type_mismatch_failure.yaml b/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_workspace_type_mismatch_failure.yaml index 3026193a4..69a736f50 100644 --- a/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_workspace_type_mismatch_failure.yaml +++ b/tests/test_commands/recordings/test_commands/test_cp/test_cp_workspace_to_workspace_type_mismatch_failure.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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "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: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:40:06 GMT + - Wed, 20 May 2026 08:56:58 GMT Pragma: - no-cache RequestId: - - a2c9a80e-0f71-41bb-9926-453d2f45482b + - b5c38f58-d47d-40cf-b97a-8c8357dca21d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "e0c56f4e-e523-4a5a-84b3-0cc7285a0897", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b1987dcd-b45c-4ba9-a9b6-bf7886f473a1", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2805' + - '2621' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:40:07 GMT + - Wed, 20 May 2026 08:56:59 GMT Pragma: - no-cache RequestId: - - 201ae3fe-3368-4cbd-a060-9ae34d38dbb4 + - fbe7bf88-e832-4ec8-809e-919748889cc0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,9 +113,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/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/items + uri: https://api.fabric.microsoft.com/v1/workspaces/b1987dcd-b45c-4ba9-a9b6-bf7886f473a1/items response: body: string: '{"value": []}' @@ -129,59 +131,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 06 Feb 2026 07:40:08 GMT + - Wed, 20 May 2026 08:57:00 GMT Pragma: - no-cache RequestId: - - a6061482-99e5-427c-8710-9f58dff8f6fc - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e0c56f4e-e523-4a5a-84b3-0cc7285a0897/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: - - Fri, 06 Feb 2026 07:40:08 GMT - Pragma: - - no-cache - RequestId: - - d13ae0c9-acae-4bc1-8257-91db72de5b3e + - 04ecbb5e-4645-4fc6-87d2-d609a652dc29 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: From 5c6f88f040f71380d6ebee2263f04a0a367e7ad4 Mon Sep 17 00:00:00 2001 From: Alex Moraru Date: Wed, 20 May 2026 09:45:46 +0000 Subject: [PATCH 10/14] Fix comments --- tests/test_utils/test_fab_custom_exception.py | 44 ++++++++++++++++++- 1 file changed, 43 insertions(+), 1 deletion(-) diff --git a/tests/test_utils/test_fab_custom_exception.py b/tests/test_utils/test_fab_custom_exception.py index 69f09e1e7..6f79d8fb4 100644 --- a/tests/test_utils/test_fab_custom_exception.py +++ b/tests/test_utils/test_fab_custom_exception.py @@ -3,7 +3,13 @@ import json -from fabric_cli.core.fab_exceptions import FabricAPIError, FabricCLIError +from fabric_cli.core.fab_exceptions import ( + DEFAULT_ERROR_CODE, + AzureAPIError, + FabricAPIError, + FabricCLIError, + OnelakeAPIError, +) def test_custom_error_message(): @@ -81,6 +87,42 @@ def test_fabric_api_error_formatted_message_non_json_no_request_id_line(): def test_fabric_api_error_none_input_falls_back_to_default_message(): error = FabricAPIError(None) + assert error.message == FabricCLIError(None).message assert error.status_code is None assert error.request_id is None assert error.more_details == [] + + +def test_fabric_cli_error_status_code_omitted_uses_default(): + error = FabricCLIError("boom") + assert error.status_code == DEFAULT_ERROR_CODE + + +def test_fabric_cli_error_status_code_omitted_no_args_uses_default(): + error = FabricCLIError() + assert error.status_code == DEFAULT_ERROR_CODE + + +def test_fabric_cli_error_status_code_explicit_none_is_preserved(): + error = FabricCLIError("boom", status_code=None) + assert error.status_code is None + # And formatted output must omit the bracketed code prefix. + assert error.formatted_message() == "boom" + assert str(error) == "boom" + + +def test_fabric_api_error_explicit_none_status_code_preserved_on_fallback(): + # Non-JSON body triggers the fallback path that forwards error_code=None. + error = FabricAPIError("Internal Server Error") + assert error.status_code is None + + +def test_onelake_api_error_explicit_none_status_code_preserved_on_fallback(): + # Missing "error" object -> code stays None and must be preserved. + error = OnelakeAPIError("not json at all") + assert error.status_code is None + + +def test_azure_api_error_explicit_none_status_code_preserved_on_fallback(): + error = AzureAPIError("not json at all") + assert error.status_code is None From 90319d6cc16ae4e9bca21095b8d333f6d6c9b2c0 Mon Sep 17 00:00:00 2001 From: Alex Moraru Date: Fri, 22 May 2026 05:53:52 +0000 Subject: [PATCH 11/14] Re-records start & stop tests --- .../test_commands/test_start/class_setup.yaml | 92 +- ...start_capacity_already_active_failure.yaml | 543 ++------ .../test_start_capacity_success.yaml | 1171 ++++------------- ...ithout_force_cancel_operation_success.yaml | 939 +++---------- ..._start_capacity_without_force_success.yaml | 801 +++-------- ...rt_mirrored_db_already_active_failure.yaml | 213 +-- .../test_start_mirrored_db_success.yaml | 268 ++-- .../test_commands/test_stop/class_setup.yaml | 92 +- ..._stop_capacity_already_paused_failure.yaml | 1097 +++------------ .../test_stop/test_stop_capacity_success.yaml | 897 +++---------- ...ithout_force_cancel_operation_success.yaml | 555 ++------ ...t_stop_capacity_without_force_success.yaml | 699 +++------- ...op_mirrored_db_already_paused_failure.yaml | 539 ++------ .../test_stop_mirrored_db_success.yaml | 326 ++--- 14 files changed, 1933 insertions(+), 6299 deletions(-) diff --git a/tests/test_commands/recordings/test_commands/test_start/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_start/class_setup.yaml index 9c49e02cc..a764d848c 100644 --- a/tests/test_commands/recordings/test_commands/test_start/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_start/class_setup.yaml @@ -11,12 +11,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.1.0 (None; Linux; x86_64; 5.15.167.4-microsoft-standard-WSL2) + - ms-fabric-cli/1.6.1 (start; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": "My workspace", "description": "", "type": "Personal"}]}' headers: Access-Control-Expose-Headers: @@ -26,15 +26,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '532' + - '2588' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:40:55 GMT + - Wed, 20 May 2026 10:23:23 GMT Pragma: - no-cache RequestId: - - 13f8dc28-9f00-4718-8b9a-982be2dd81f8 + - 505f063e-69d4-4990-98ef-aa882a679e9b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -42,7 +42,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -60,12 +60,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.1.0 (None; Linux; x86_64; 5.15.167.4-microsoft-standard-WSL2) + - ms-fabric-cli/1.6.1 (start; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": "My workspace", "description": "", "type": "Personal"}]}' headers: Access-Control-Expose-Headers: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '532' + - '2588' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:40:55 GMT + - Wed, 20 May 2026 10:23:24 GMT Pragma: - no-cache RequestId: - - 55ed5802-fd0b-46c7-91dc-56abe7d22a5b + - 5fbe3bbb-be6e-4dc4-b124-83521c43e366 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -91,7 +91,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -109,13 +109,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.1.0 (None; Linux; x86_64; 5.15.167.4-microsoft-standard-WSL2) + - ms-fabric-cli/1.6.1 (start; Linux/6.12.76-linuxkit; Python/3.12.11) 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": "West Europe", "state": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -125,15 +125,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '456' + - '424' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:41:01 GMT + - Wed, 20 May 2026 10:23:29 GMT Pragma: - no-cache RequestId: - - 49c8101d-e104-441d-801b-d305787a5c56 + - a946c9e4-f5d9-4679-99f4-e2318fdea17c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -141,14 +141,15 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: code: 200 message: OK - request: - body: '{"displayName": "fabriccli_WorkspacePerTestclass_000001", "capacityId": "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabriccli_WorkspacePerTestclass_000001", "capacityId": + "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -158,16 +159,16 @@ interactions: - keep-alive Content-Length: - '124' - Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.1.0 (None; Linux; x86_64; 5.15.167.4-microsoft-standard-WSL2) + - ms-fabric-cli/1.6.1 (start; Linux/6.12.76-linuxkit; Python/3.12.11) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "a02b7bc4-5ab3-487c-9675-2f5a626a8d1c", "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "ff213028-2352-44bd-8457-096c4effbfee", "displayName": "fabriccli_WorkspacePerTestclass_000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -176,17 +177,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '188' + - '176' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:41:08 GMT + - Wed, 20 May 2026 10:23:37 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/a02b7bc4-5ab3-487c-9675-2f5a626a8d1c + - https://api.fabric.microsoft.com/v1/workspaces/ff213028-2352-44bd-8457-096c4effbfee Pragma: - no-cache RequestId: - - de202f41-b572-40dc-8989-2b19f6479c76 + - bee5aca5-718a-45f7-b5a4-6142e06005b0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -194,7 +195,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -212,14 +213,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.1.0 (start; Linux; x86_64; 5.15.167.4-microsoft-standard-WSL2) + - ms-fabric-cli/1.6.1 (start; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "a02b7bc4-5ab3-487c-9675-2f5a626a8d1c", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "ff213028-2352-44bd-8457-096c4effbfee", + "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: - - '566' + - '2625' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:43:54 GMT + - Wed, 20 May 2026 10:26:46 GMT Pragma: - no-cache RequestId: - - 1c136b94-2471-4194-8511-6f6c9a8a0d45 + - 9318ff56-a174-4e1b-80b5-e3d22937b3cf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -244,7 +246,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -262,9 +264,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.1.0 (start; Linux; x86_64; 5.15.167.4-microsoft-standard-WSL2) + - ms-fabric-cli/1.6.1 (start; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a02b7bc4-5ab3-487c-9675-2f5a626a8d1c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ff213028-2352-44bd-8457-096c4effbfee/items response: body: string: '{"value": []}' @@ -280,11 +282,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:43:54 GMT + - Wed, 20 May 2026 10:26:47 GMT Pragma: - no-cache RequestId: - - 74440e30-d021-4e28-ac21-780388723286 + - 6a9ca941-43d5-4d2c-a8f3-8cb508ec4ea2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -292,7 +294,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -312,9 +314,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.1.0 (start; Linux; x86_64; 5.15.167.4-microsoft-standard-WSL2) + - ms-fabric-cli/1.6.1 (start; Linux/6.12.76-linuxkit; Python/3.12.11) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/a02b7bc4-5ab3-487c-9675-2f5a626a8d1c + uri: https://api.fabric.microsoft.com/v1/workspaces/ff213028-2352-44bd-8457-096c4effbfee response: body: string: '' @@ -330,11 +332,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 16 Sep 2025 08:43:55 GMT + - Wed, 20 May 2026 10:26:48 GMT Pragma: - no-cache RequestId: - - eacd5826-c53f-404d-8172-a969998f554a + - fcb1113d-1b9a-4f27-affb-ee88346e04a7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -342,7 +344,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: diff --git a/tests/test_commands/recordings/test_commands/test_start/test_start_capacity_already_active_failure.yaml b/tests/test_commands/recordings/test_commands/test_start/test_start_capacity_already_active_failure.yaml index 82c55a354..675b596f4 100644 --- a/tests/test_commands/recordings/test_commands/test_start/test_start_capacity_already_active_failure.yaml +++ b/tests/test_commands/recordings/test_commands/test_start/test_start_capacity_already_active_failure.yaml @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -27,15 +27,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '456' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:39:35 GMT + - Wed, 20 May 2026 10:22:27 GMT Pragma: - no-cache RequestId: - - 9f326e0a-86fd-4bce-b94f-e53e0e47a76b + - d6b93274-d650-47cd-a5d2-321023bd32e6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -43,7 +43,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -60,11 +60,11 @@ interactions: Connection: - keep-alive Content-Length: - - '149' + - '165' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -75,21 +75,21 @@ interactions: "westeurope", "sku": {"name": "F2", "tier": "Fabric"}}' headers: Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/01BED171-1EE1-4894-AEB5-D7A0034E1182?api-version=2022-07-01-preview&t=638924819778297148&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=er08t_59fmlEG2v0icyrSNqdoziWQOx7iZXGljkT9CS6VWhXMGJl1-tkZSFQ46WRZ6pYJK56cMWHAg3iXWAw2_xPTO9TdvcL-RlLj6Sj7hi80F6Z0Zb1a0bUrWzzFW_EoiMWLPZqmH7vvzo478QKcC_jDKicURg22_WY1F2t1NPjFOgCaCDv82R7DABKY5Ec5SAP1XzT1ZZ084ETaXJA1TBi33M5_sZffYYcxIZd0v4Td63z8-b4C_Bli1A1563SKucoJRulicZLQG7jHfvbTRdg4ZJkluL7er91A06cRIAhIoMESloaq5kn2Wb62oDlCumvYI-CXRdsd889JwUTxg&h=Xr30FvQL8yiDUzdO7h8gyNVfH0eRBEOC3yCwEkxePlw + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/B0AF92DE-B022-4917-9C77-D6B7B7FBDCF9?api-version=2022-07-01-preview&t=639148693523977486&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=eXY_tsFB-3GV-lk9nqqMn608bfjsO8XPQtc42HMAi9Kmc7PjPbx6iAyVjMt5nQ73LNkR62cNp8pbLAN2ZWNI5Jqhi--kEGZ4EeE7Puw72_tyPKAY7etjd01HT2IQy5ZKl2QvYV5yT_sfmIzCejRROSTPyukKrY5nXxofMspbbTPr3yZN9q_lf2jAPfG2UyWffZkLzxh_m4GPUSsq2asFgqWfpAYgW0OkZdqIFILvn7LA6kZ0l_24vqhYSTNQSk0U_rDnR21XfttKWIj-HyqLVn4OPZuX0NnpCLs4jP6ng3q21Hi8Ga1M64OGPPoY3_rTFa2HewfurUUyu57ovCxSTw&h=EM84zXxYR2tjtYQwzpLmk4tQpPlwNaGcxd-i2Ilzdwc Cache-Control: - no-cache Content-Length: - - '406' + - '422' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:39:37 GMT + - Wed, 20 May 2026 10:22:31 GMT Expires: - '-1' Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/01BED171-1EE1-4894-AEB5-D7A0034E1182?api-version=2022-07-01-preview&t=638924819778453401&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=Aot5F26Mpo3I2XuxhODsprU0ayZN6jgBAUBZ-iI3QMWX7Ot0QdMROGuibu8TXbMGMf4KXG2yDiWBtB9VRq7O4Lgs3ApGkN_EI0HxKrzsUgfLfArtsGvM6BMRIe3495TeyEYQIdPAbRPZZh-fvJQf6s2eztia6ejB76f4pbNQxBTNSHLNNam9-nGI3P4jNpybwu2d9Zn8JhFng5arscV0gHfShVlPQZFyaA0p_pD6r_DEtWLbCSqYAHRCOPuRbzByo0sS2TCTLP9waM9JJMrTydY26Zg4qZNyKK5gZVTRBywyyDD7JcJD7vryCnCdTN7IGazeNLoiZ0E_JKlcVEUMAg&h=szjKhrKeGSMcEwSb0l6TJEk48XFVlakQfdFT824uVwc + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/B0AF92DE-B022-4917-9C77-D6B7B7FBDCF9?api-version=2022-07-01-preview&t=639148693524133734&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=Wzs8fXfFj2rYmTCnelkFBmUAt5YWeTvcXQxbDAg9s4Byx7NZZ_jwHM-LMlOlkMchSvGX2-joRLOJ2i8ppTIZQDTjSwHq5qAkBrkEk-4joFVtrslVev8sM7X80sk2lIgH76H1AINwxSF6fba41GDXm-sAHy2A20S7-vvb4tu4Ry5sRFOLJAwhTXWnsV0aGSYxIybKS6C-w7e2JkVOx4152k5AcDDqYHqpJrE2YvMSxeADKFTHT0Mwvlx4TFrEM81N6lpWWAiH-IHKiKA3r2wO0qS9CtYSWMmcj3pHK77ABWG5qzdbdLQuwz-pBb4CJU9w9GhoM7iccEFwWDX6U-DN9w&h=BzYtKsJ--05tk94oETfyczyx0VgkJrZ3rLR8kYe1b80 Pragma: - no-cache Strict-Transport-Security: @@ -117,158 +117,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/01BED171-1EE1-4894-AEB5-D7A0034E1182?api-version=2022-07-01-preview&t=638924819778297148&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=er08t_59fmlEG2v0icyrSNqdoziWQOx7iZXGljkT9CS6VWhXMGJl1-tkZSFQ46WRZ6pYJK56cMWHAg3iXWAw2_xPTO9TdvcL-RlLj6Sj7hi80F6Z0Zb1a0bUrWzzFW_EoiMWLPZqmH7vvzo478QKcC_jDKicURg22_WY1F2t1NPjFOgCaCDv82R7DABKY5Ec5SAP1XzT1ZZ084ETaXJA1TBi33M5_sZffYYcxIZd0v4Td63z8-b4C_Bli1A1563SKucoJRulicZLQG7jHfvbTRdg4ZJkluL7er91A06cRIAhIoMESloaq5kn2Wb62oDlCumvYI-CXRdsd889JwUTxg&h=Xr30FvQL8yiDUzdO7h8gyNVfH0eRBEOC3yCwEkxePlw + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/B0AF92DE-B022-4917-9C77-D6B7B7FBDCF9?api-version=2022-07-01-preview&t=639148693523977486&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=eXY_tsFB-3GV-lk9nqqMn608bfjsO8XPQtc42HMAi9Kmc7PjPbx6iAyVjMt5nQ73LNkR62cNp8pbLAN2ZWNI5Jqhi--kEGZ4EeE7Puw72_tyPKAY7etjd01HT2IQy5ZKl2QvYV5yT_sfmIzCejRROSTPyukKrY5nXxofMspbbTPr3yZN9q_lf2jAPfG2UyWffZkLzxh_m4GPUSsq2asFgqWfpAYgW0OkZdqIFILvn7LA6kZ0l_24vqhYSTNQSk0U_rDnR21XfttKWIj-HyqLVn4OPZuX0NnpCLs4jP6ng3q21Hi8Ga1M64OGPPoY3_rTFa2HewfurUUyu57ovCxSTw&h=EM84zXxYR2tjtYQwzpLmk4tQpPlwNaGcxd-i2Ilzdwc response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/01BED171-1EE1-4894-AEB5-D7A0034E1182", - "name": "01BED171-1EE1-4894-AEB5-D7A0034E1182", "status": "Provisioning", - "startTime": "2025-09-03T07:39:37.1230000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '249' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:39:37 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/01BED171-1EE1-4894-AEB5-D7A0034E1182?api-version=2022-07-01-preview&t=638924819778297148&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=er08t_59fmlEG2v0icyrSNqdoziWQOx7iZXGljkT9CS6VWhXMGJl1-tkZSFQ46WRZ6pYJK56cMWHAg3iXWAw2_xPTO9TdvcL-RlLj6Sj7hi80F6Z0Zb1a0bUrWzzFW_EoiMWLPZqmH7vvzo478QKcC_jDKicURg22_WY1F2t1NPjFOgCaCDv82R7DABKY5Ec5SAP1XzT1ZZ084ETaXJA1TBi33M5_sZffYYcxIZd0v4Td63z8-b4C_Bli1A1563SKucoJRulicZLQG7jHfvbTRdg4ZJkluL7er91A06cRIAhIoMESloaq5kn2Wb62oDlCumvYI-CXRdsd889JwUTxg&h=Xr30FvQL8yiDUzdO7h8gyNVfH0eRBEOC3yCwEkxePlw - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/01BED171-1EE1-4894-AEB5-D7A0034E1182", - "name": "01BED171-1EE1-4894-AEB5-D7A0034E1182", "status": "Provisioning", - "startTime": "2025-09-03T07:39:37.1230000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '249' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:39:38 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/01BED171-1EE1-4894-AEB5-D7A0034E1182?api-version=2022-07-01-preview&t=638924819778297148&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=er08t_59fmlEG2v0icyrSNqdoziWQOx7iZXGljkT9CS6VWhXMGJl1-tkZSFQ46WRZ6pYJK56cMWHAg3iXWAw2_xPTO9TdvcL-RlLj6Sj7hi80F6Z0Zb1a0bUrWzzFW_EoiMWLPZqmH7vvzo478QKcC_jDKicURg22_WY1F2t1NPjFOgCaCDv82R7DABKY5Ec5SAP1XzT1ZZ084ETaXJA1TBi33M5_sZffYYcxIZd0v4Td63z8-b4C_Bli1A1563SKucoJRulicZLQG7jHfvbTRdg4ZJkluL7er91A06cRIAhIoMESloaq5kn2Wb62oDlCumvYI-CXRdsd889JwUTxg&h=Xr30FvQL8yiDUzdO7h8gyNVfH0eRBEOC3yCwEkxePlw - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/01BED171-1EE1-4894-AEB5-D7A0034E1182", - "name": "01BED171-1EE1-4894-AEB5-D7A0034E1182", "status": "Provisioning", - "startTime": "2025-09-03T07:39:37.1230000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '249' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:39:39 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/01BED171-1EE1-4894-AEB5-D7A0034E1182?api-version=2022-07-01-preview&t=638924819778297148&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=er08t_59fmlEG2v0icyrSNqdoziWQOx7iZXGljkT9CS6VWhXMGJl1-tkZSFQ46WRZ6pYJK56cMWHAg3iXWAw2_xPTO9TdvcL-RlLj6Sj7hi80F6Z0Zb1a0bUrWzzFW_EoiMWLPZqmH7vvzo478QKcC_jDKicURg22_WY1F2t1NPjFOgCaCDv82R7DABKY5Ec5SAP1XzT1ZZ084ETaXJA1TBi33M5_sZffYYcxIZd0v4Td63z8-b4C_Bli1A1563SKucoJRulicZLQG7jHfvbTRdg4ZJkluL7er91A06cRIAhIoMESloaq5kn2Wb62oDlCumvYI-CXRdsd889JwUTxg&h=Xr30FvQL8yiDUzdO7h8gyNVfH0eRBEOC3yCwEkxePlw - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/01BED171-1EE1-4894-AEB5-D7A0034E1182", - "name": "01BED171-1EE1-4894-AEB5-D7A0034E1182", "status": "Succeeded", "startTime": - "2025-09-03T07:39:37.1230000Z", "endTime": "2025-09-03T07:39:39.7630000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/B0AF92DE-B022-4917-9C77-D6B7B7FBDCF9", + "name": "B0AF92DE-B022-4917-9C77-D6B7B7FBDCF9", "status": "Succeeded", "startTime": + "2026-05-20T10:22:31.2600000Z", "endTime": "2026-05-20T10:22:33.9430000Z"}' headers: Cache-Control: - no-cache @@ -279,7 +135,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:39:40 GMT + - Wed, 20 May 2026 10:22:42 GMT Expires: - '-1' Pragma: @@ -309,14 +165,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": - "Active"}, {"id": "e8e3c188-cc95-489f-8489-f626a1717f60", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "b7075a56-b3c5-4608-8671-d6e0155598e3", "displayName": "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -326,15 +182,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '487' + - '460' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:39:44 GMT + - Wed, 20 May 2026 10:22:47 GMT Pragma: - no-cache RequestId: - - 6b068a0e-631c-43ee-b059-56a5cc65dacf + - e5e8c73a-b66d-47be-9992-da60473783e2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -342,7 +198,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -360,14 +216,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": - "Active"}, {"id": "e8e3c188-cc95-489f-8489-f626a1717f60", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "b7075a56-b3c5-4608-8671-d6e0155598e3", "displayName": "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -377,15 +233,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '487' + - '460' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:39:49 GMT + - Wed, 20 May 2026 10:22:51 GMT Pragma: - no-cache RequestId: - - 0bf371dd-0897-4f39-b5f1-091535b0c2e0 + - c0f7d6d1-ee98-4b05-886c-6598b7637990 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -393,7 +249,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -411,7 +267,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -424,13 +280,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:39:50 GMT + - Wed, 20 May 2026 10:22:52 GMT Expires: - '-1' Pragma: @@ -460,7 +316,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -473,13 +329,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:39:50 GMT + - Wed, 20 May 2026 10:22:53 GMT Expires: - '-1' Pragma: @@ -509,14 +365,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": - "Active"}, {"id": "e8e3c188-cc95-489f-8489-f626a1717f60", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "b7075a56-b3c5-4608-8671-d6e0155598e3", "displayName": "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -526,15 +382,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '487' + - '459' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:39:53 GMT + - Wed, 20 May 2026 10:22:56 GMT Pragma: - no-cache RequestId: - - d1571184-1414-4911-a9d0-21ec7d2e193f + - 90c06928-9b1c-4d6f-b525-639a587b501d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -542,7 +398,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -560,170 +416,22 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions?api-version=2022-12-01 - response: - body: - string: '{"value": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000"}], - "count": {"type": "Total", "value": 1}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '479' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:39:53 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/capacities?api-version=2023-11-01 - response: - body: - string: '{"value": [{"properties": {"provisioningState": "Succeeded", "state": - "Active", "administration": {"members": ["mocked@admin_test_user"]}}, "id": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/mocked_fabriccli_capacity_name", - "name": "mocked_fabriccli_capacity_name", "type": "Microsoft.Fabric/capacities", - "location": "West Europe", "sku": {"name": "F16", "tier": "Fabric"}, "tags": - {}}, {"properties": {"provisioningState": "Succeeded", "state": "Active", - "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", - "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": - "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '2480' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:39:54 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - 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.0.0 - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 - response: - body: - string: '' - headers: - Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/3383ECC1-CC80-4307-BE20-F5A42FB432D9?api-version=2022-07-01-preview&t=638924819957508181&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=nA9CLiZg8Y-Jna-vQni0L-np-UxI78xtyauiH8CBvBxpl3O9cMWpRoeJPPpiw9jvqvf88HgOts23BPLU49Z94D-7jB_6A3ai1FiSbknNBVP0kFnj72B9RUV9Fy61MvZLW3DT2Ntxl5poVJwhbcN3Beyd4JWadLj9J9P4OFouQ3rdmbRyj5XeVbhYy0EtZDXap0gQxo4P0NGzSsKWKN5ddSX_ft-KnFKPjswMW9cReo5VFz10iGSh970nPQj4vD-DgUcqam8kjGH_Jy9IwNUXZmEiPCk68DG6USEAoo78qhRrtG2nvsj1Wh9bEGaiun5OleeTqgkhaIwibVCovolcwA&h=IE06Dzu6F72_7yW_hWKCrT-TuRnK8Gatsl_jaH4BRa0 - Cache-Control: - - no-cache - Content-Length: - - '0' - Content-Security-Policy: - - script-src 'self' - Date: - - Wed, 03 Sep 2025 07:39:54 GMT - Expires: - - '-1' - Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/3383ECC1-CC80-4307-BE20-F5A42FB432D9?api-version=2022-07-01-preview&t=638924819957664443&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=XRL-4ormcuQCC20lZDQpW1HykW0iYVOkVERWsZFH5w7K_YXQMrRCfXUct2phWJtpMXsZYQfbdv6mdmFSnkRYrnPUtN7ktwbmrMnG0UY8-zW4lfnJbZkvxWqMVjCkH7gkdzoIZ5rj7PyUZ3TIYPfpBk2kcbaCNOapPrWHs4moEq6Zsrr7l5K8D6v9RC8IxtXRUZSeLLlwazhn-qZ8wdQjEz3dvGE8dKK-iI2jXhvaWOWBFz7WOyhPEUbyoI45XYFSKzjJiXA3HxCVpraR_EfReSR8gaBSu8ngassE_rfuE3RbmDaGeqoXnLhPSX_T3n03N5LVrq5_EFbpRUUQdcnraA&h=gJkU8xE-jK4oUIVhnICOhcsG95RnB75XzmT79MYKi1I - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - 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.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/3383ECC1-CC80-4307-BE20-F5A42FB432D9?api-version=2022-07-01-preview&t=638924819957508181&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=nA9CLiZg8Y-Jna-vQni0L-np-UxI78xtyauiH8CBvBxpl3O9cMWpRoeJPPpiw9jvqvf88HgOts23BPLU49Z94D-7jB_6A3ai1FiSbknNBVP0kFnj72B9RUV9Fy61MvZLW3DT2Ntxl5poVJwhbcN3Beyd4JWadLj9J9P4OFouQ3rdmbRyj5XeVbhYy0EtZDXap0gQxo4P0NGzSsKWKN5ddSX_ft-KnFKPjswMW9cReo5VFz10iGSh970nPQj4vD-DgUcqam8kjGH_Jy9IwNUXZmEiPCk68DG6USEAoo78qhRrtG2nvsj1Wh9bEGaiun5OleeTqgkhaIwibVCovolcwA&h=IE06Dzu6F72_7yW_hWKCrT-TuRnK8Gatsl_jaH4BRa0 + uri: https://management.azure.com/subscriptions/placeholder/resourceGroups/placeholder/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/3383ECC1-CC80-4307-BE20-F5A42FB432D9", - "name": "3383ECC1-CC80-4307-BE20-F5A42FB432D9", "status": "Deleting", "startTime": - "2025-09-03T07:39:55.3200000Z"}' + string: '{"error": {"code": "InvalidSubscriptionId", "message": "The provided + subscription identifier ''placeholder'' is malformed or invalid."}}' headers: Cache-Control: - no-cache Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:39:55 GMT + - Wed, 20 May 2026 10:22:57 GMT Expires: - '-1' Pragma: @@ -734,13 +442,9 @@ interactions: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: body: null headers: @@ -753,25 +457,22 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/3383ECC1-CC80-4307-BE20-F5A42FB432D9?api-version=2022-07-01-preview&t=638924819957508181&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=nA9CLiZg8Y-Jna-vQni0L-np-UxI78xtyauiH8CBvBxpl3O9cMWpRoeJPPpiw9jvqvf88HgOts23BPLU49Z94D-7jB_6A3ai1FiSbknNBVP0kFnj72B9RUV9Fy61MvZLW3DT2Ntxl5poVJwhbcN3Beyd4JWadLj9J9P4OFouQ3rdmbRyj5XeVbhYy0EtZDXap0gQxo4P0NGzSsKWKN5ddSX_ft-KnFKPjswMW9cReo5VFz10iGSh970nPQj4vD-DgUcqam8kjGH_Jy9IwNUXZmEiPCk68DG6USEAoo78qhRrtG2nvsj1Wh9bEGaiun5OleeTqgkhaIwibVCovolcwA&h=IE06Dzu6F72_7yW_hWKCrT-TuRnK8Gatsl_jaH4BRa0 + uri: https://management.azure.com/subscriptions?api-version=2022-12-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/3383ECC1-CC80-4307-BE20-F5A42FB432D9", - "name": "3383ECC1-CC80-4307-BE20-F5A42FB432D9", "status": "Deleting", "startTime": - "2025-09-03T07:39:55.3200000Z"}' + string: '{"value": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000"}], + "count": {"type": "Total", "value": 1}}' headers: Cache-Control: - no-cache Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' + - '469' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:39:56 GMT + - Wed, 20 May 2026 10:22:57 GMT Expires: - '-1' Pragma: @@ -782,10 +483,6 @@ interactions: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block status: code: 200 message: OK @@ -801,25 +498,29 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/3383ECC1-CC80-4307-BE20-F5A42FB432D9?api-version=2022-07-01-preview&t=638924819957508181&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=nA9CLiZg8Y-Jna-vQni0L-np-UxI78xtyauiH8CBvBxpl3O9cMWpRoeJPPpiw9jvqvf88HgOts23BPLU49Z94D-7jB_6A3ai1FiSbknNBVP0kFnj72B9RUV9Fy61MvZLW3DT2Ntxl5poVJwhbcN3Beyd4JWadLj9J9P4OFouQ3rdmbRyj5XeVbhYy0EtZDXap0gQxo4P0NGzSsKWKN5ddSX_ft-KnFKPjswMW9cReo5VFz10iGSh970nPQj4vD-DgUcqam8kjGH_Jy9IwNUXZmEiPCk68DG6USEAoo78qhRrtG2nvsj1Wh9bEGaiun5OleeTqgkhaIwibVCovolcwA&h=IE06Dzu6F72_7yW_hWKCrT-TuRnK8Gatsl_jaH4BRa0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/capacities?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/3383ECC1-CC80-4307-BE20-F5A42FB432D9", - "name": "3383ECC1-CC80-4307-BE20-F5A42FB432D9", "status": "Deleting", "startTime": - "2025-09-03T07:39:55.3200000Z"}' + string: '{"value": [{"properties": {"provisioningState": "Succeeded", "state": + "Active", "administration": {"members": ["mocked@admin_test_user", "4fdd0762-85fe-4f8b-90dc-776e8605e0b9"]}}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/mocked_fabriccli_capacity_name", + "name": "mocked_fabriccli_capacity_name", "type": "Microsoft.Fabric/capacities", + "location": "Central US", "sku": {"name": "F16", "tier": "Fabric"}, "tags": + {}}, {"properties": {"provisioningState": "Succeeded", "state": "Active", + "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", + "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": + "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}]}' headers: Cache-Control: - no-cache Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' + - '2562' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:39:56 GMT + - Wed, 20 May 2026 10:22:59 GMT Expires: - '-1' Pragma: @@ -830,10 +531,6 @@ interactions: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block status: code: 200 message: OK @@ -846,78 +543,32 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/3383ECC1-CC80-4307-BE20-F5A42FB432D9?api-version=2022-07-01-preview&t=638924819957508181&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=nA9CLiZg8Y-Jna-vQni0L-np-UxI78xtyauiH8CBvBxpl3O9cMWpRoeJPPpiw9jvqvf88HgOts23BPLU49Z94D-7jB_6A3ai1FiSbknNBVP0kFnj72B9RUV9Fy61MvZLW3DT2Ntxl5poVJwhbcN3Beyd4JWadLj9J9P4OFouQ3rdmbRyj5XeVbhYy0EtZDXap0gQxo4P0NGzSsKWKN5ddSX_ft-KnFKPjswMW9cReo5VFz10iGSh970nPQj4vD-DgUcqam8kjGH_Jy9IwNUXZmEiPCk68DG6USEAoo78qhRrtG2nvsj1Wh9bEGaiun5OleeTqgkhaIwibVCovolcwA&h=IE06Dzu6F72_7yW_hWKCrT-TuRnK8Gatsl_jaH4BRa0 - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/3383ECC1-CC80-4307-BE20-F5A42FB432D9", - "name": "3383ECC1-CC80-4307-BE20-F5A42FB432D9", "status": "Deleting", "startTime": - "2025-09-03T07:39:55.3200000Z"}' - headers: - Cache-Control: - - no-cache Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:39:58 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive + - '0' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/3383ECC1-CC80-4307-BE20-F5A42FB432D9?api-version=2022-07-01-preview&t=638924819957508181&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=nA9CLiZg8Y-Jna-vQni0L-np-UxI78xtyauiH8CBvBxpl3O9cMWpRoeJPPpiw9jvqvf88HgOts23BPLU49Z94D-7jB_6A3ai1FiSbknNBVP0kFnj72B9RUV9Fy61MvZLW3DT2Ntxl5poVJwhbcN3Beyd4JWadLj9J9P4OFouQ3rdmbRyj5XeVbhYy0EtZDXap0gQxo4P0NGzSsKWKN5ddSX_ft-KnFKPjswMW9cReo5VFz10iGSh970nPQj4vD-DgUcqam8kjGH_Jy9IwNUXZmEiPCk68DG6USEAoo78qhRrtG2nvsj1Wh9bEGaiun5OleeTqgkhaIwibVCovolcwA&h=IE06Dzu6F72_7yW_hWKCrT-TuRnK8Gatsl_jaH4BRa0 + - ms-fabric-cli-test/1.6.1 + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/3383ECC1-CC80-4307-BE20-F5A42FB432D9", - "name": "3383ECC1-CC80-4307-BE20-F5A42FB432D9", "status": "Deleting", "startTime": - "2025-09-03T07:39:55.3200000Z"}' + string: '' headers: + Azure-AsyncOperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/9BD5A816-18DD-4FD4-8791-3858398D2270?api-version=2022-07-01-preview&t=639148693816263636&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=wK9nkbOr3oRL4fnAFc_xDRrBScQaouVVEUplPopLxpPU0dWd3hUmtzjVyjCby8yvDB6Jo5tBEThKryrqeSJ4oKzEX2J3dsBG5uN98WZjmr37XkcVJZzIWHOTknmrxjONNgna4mUOIcoej7HmxnJxiyYrqu3dd54EqIgNyc5fAjSNq5CeNqRXCbuL3l-A9fk5d6N3W1iTm94d8tIWPG6RjCn0C6g6wVD0FPyF5WPOh2TLbEqtZIu_Z5xwvkmIt2VdqAP31TcQSk2api91og9GwS13TLyWi-l__EBLm6jB_Yt7kgsGudQijdpk_p5Hu2P7BcKS5iPk2bIPOsATUkBA-A&h=fe7Im_Xk8qG5SCVjd4FwkDMwnnJpk2EL801fHcWlFgU Cache-Control: - no-cache Content-Length: - - '245' + - '0' Content-Security-Policy: - script-src 'self' - Content-Type: - - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:40:02 GMT + - Wed, 20 May 2026 10:23:01 GMT Expires: - '-1' + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/9BD5A816-18DD-4FD4-8791-3858398D2270?api-version=2022-07-01-preview&t=639148693816263636&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=gtSJLZ_gOf_lBLapiFe0qqHrXUI5FvH8VcXEYA-N1GL6mwT-Wn5KVs7ITdAJexQ1k9tdxVwrnzlkVbxx_UxkkPVW1cZCbPMAx8qMUl6KG-2cMLhdsDwbtsQQQkdR7nT52t16cVvFtzdfDTrUXj64dAwJ54yhKJH-jyYJeuBrMzhr_jrjPg7ADpZSVm4teca_l2igJuVRjQhn5yZCpFzAGdkkH60p6lquuhnSMUORUu9OnmReRhM0A3--a0_k1jbw81GakE_5ZCWe-ndIXxAH0Cf8tx9Hh3dpp914RiWm2tYzjrW2i4Ho3Z5mMWo5ujDoR0t9DET9Mzpvr92B-M7Mrw&h=NO1_i6MLSRrX0vyx9Xy-BLzcWiAOE3ipQN0A3LrO_bA Pragma: - no-cache Strict-Transport-Security: @@ -931,8 +582,8 @@ interactions: X-XSS-Protection: - 1; mode=block status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -945,14 +596,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/3383ECC1-CC80-4307-BE20-F5A42FB432D9?api-version=2022-07-01-preview&t=638924819957508181&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=nA9CLiZg8Y-Jna-vQni0L-np-UxI78xtyauiH8CBvBxpl3O9cMWpRoeJPPpiw9jvqvf88HgOts23BPLU49Z94D-7jB_6A3ai1FiSbknNBVP0kFnj72B9RUV9Fy61MvZLW3DT2Ntxl5poVJwhbcN3Beyd4JWadLj9J9P4OFouQ3rdmbRyj5XeVbhYy0EtZDXap0gQxo4P0NGzSsKWKN5ddSX_ft-KnFKPjswMW9cReo5VFz10iGSh970nPQj4vD-DgUcqam8kjGH_Jy9IwNUXZmEiPCk68DG6USEAoo78qhRrtG2nvsj1Wh9bEGaiun5OleeTqgkhaIwibVCovolcwA&h=IE06Dzu6F72_7yW_hWKCrT-TuRnK8Gatsl_jaH4BRa0 + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/9BD5A816-18DD-4FD4-8791-3858398D2270?api-version=2022-07-01-preview&t=639148693816263636&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=wK9nkbOr3oRL4fnAFc_xDRrBScQaouVVEUplPopLxpPU0dWd3hUmtzjVyjCby8yvDB6Jo5tBEThKryrqeSJ4oKzEX2J3dsBG5uN98WZjmr37XkcVJZzIWHOTknmrxjONNgna4mUOIcoej7HmxnJxiyYrqu3dd54EqIgNyc5fAjSNq5CeNqRXCbuL3l-A9fk5d6N3W1iTm94d8tIWPG6RjCn0C6g6wVD0FPyF5WPOh2TLbEqtZIu_Z5xwvkmIt2VdqAP31TcQSk2api91og9GwS13TLyWi-l__EBLm6jB_Yt7kgsGudQijdpk_p5Hu2P7BcKS5iPk2bIPOsATUkBA-A&h=fe7Im_Xk8qG5SCVjd4FwkDMwnnJpk2EL801fHcWlFgU response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/3383ECC1-CC80-4307-BE20-F5A42FB432D9", - "name": "3383ECC1-CC80-4307-BE20-F5A42FB432D9", "status": "Deleting", "startTime": - "2025-09-03T07:39:55.3200000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/9BD5A816-18DD-4FD4-8791-3858398D2270", + "name": "9BD5A816-18DD-4FD4-8791-3858398D2270", "status": "Deleting", "startTime": + "2026-05-20T10:23:01.0570000Z"}' headers: Cache-Control: - no-cache @@ -963,7 +614,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:40:10 GMT + - Wed, 20 May 2026 10:23:12 GMT Expires: - '-1' Pragma: @@ -993,14 +644,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/3383ECC1-CC80-4307-BE20-F5A42FB432D9?api-version=2022-07-01-preview&t=638924819957508181&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=nA9CLiZg8Y-Jna-vQni0L-np-UxI78xtyauiH8CBvBxpl3O9cMWpRoeJPPpiw9jvqvf88HgOts23BPLU49Z94D-7jB_6A3ai1FiSbknNBVP0kFnj72B9RUV9Fy61MvZLW3DT2Ntxl5poVJwhbcN3Beyd4JWadLj9J9P4OFouQ3rdmbRyj5XeVbhYy0EtZDXap0gQxo4P0NGzSsKWKN5ddSX_ft-KnFKPjswMW9cReo5VFz10iGSh970nPQj4vD-DgUcqam8kjGH_Jy9IwNUXZmEiPCk68DG6USEAoo78qhRrtG2nvsj1Wh9bEGaiun5OleeTqgkhaIwibVCovolcwA&h=IE06Dzu6F72_7yW_hWKCrT-TuRnK8Gatsl_jaH4BRa0 + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/9BD5A816-18DD-4FD4-8791-3858398D2270?api-version=2022-07-01-preview&t=639148693816263636&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=wK9nkbOr3oRL4fnAFc_xDRrBScQaouVVEUplPopLxpPU0dWd3hUmtzjVyjCby8yvDB6Jo5tBEThKryrqeSJ4oKzEX2J3dsBG5uN98WZjmr37XkcVJZzIWHOTknmrxjONNgna4mUOIcoej7HmxnJxiyYrqu3dd54EqIgNyc5fAjSNq5CeNqRXCbuL3l-A9fk5d6N3W1iTm94d8tIWPG6RjCn0C6g6wVD0FPyF5WPOh2TLbEqtZIu_Z5xwvkmIt2VdqAP31TcQSk2api91og9GwS13TLyWi-l__EBLm6jB_Yt7kgsGudQijdpk_p5Hu2P7BcKS5iPk2bIPOsATUkBA-A&h=fe7Im_Xk8qG5SCVjd4FwkDMwnnJpk2EL801fHcWlFgU response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/3383ECC1-CC80-4307-BE20-F5A42FB432D9", - "name": "3383ECC1-CC80-4307-BE20-F5A42FB432D9", "status": "Succeeded", "startTime": - "2025-09-03T07:39:55.3200000Z", "endTime": "2025-09-03T07:40:14.4000000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/9BD5A816-18DD-4FD4-8791-3858398D2270", + "name": "9BD5A816-18DD-4FD4-8791-3858398D2270", "status": "Succeeded", "startTime": + "2026-05-20T10:23:01.0570000Z", "endTime": "2026-05-20T10:23:16.4130000Z"}' headers: Cache-Control: - no-cache @@ -1011,7 +662,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:40:25 GMT + - Wed, 20 May 2026 10:23:22 GMT Expires: - '-1' Pragma: diff --git a/tests/test_commands/recordings/test_commands/test_start/test_start_capacity_success.yaml b/tests/test_commands/recordings/test_commands/test_start/test_start_capacity_success.yaml index 8a39a42c2..6c56b73ad 100644 --- a/tests/test_commands/recordings/test_commands/test_start/test_start_capacity_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_start/test_start_capacity_success.yaml @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -27,15 +27,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '456' + - '425' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:35:10 GMT + - Wed, 20 May 2026 10:16:14 GMT Pragma: - no-cache RequestId: - - 4a79febf-34a8-4e88-b8d5-ad6828d19b12 + - 27ee8f4b-914c-47ea-9425-f8e33c8e9501 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -43,7 +43,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -60,11 +60,11 @@ interactions: Connection: - keep-alive Content-Length: - - '149' + - '165' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -75,21 +75,21 @@ interactions: "westeurope", "sku": {"name": "F2", "tier": "Fabric"}}' headers: Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/B40C6702-F0AA-48A8-BD80-B7528A531FC3?api-version=2022-07-01-preview&t=638924817135843854&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=xOlB2oCy7A27FhNtcHwS63jLH2VMblbTQxD7SKZcpyZmuccuq2cues_gvKYfVhwWQsnuTlxUNElaObnE-R6FBcV35C0-NQppOiyXDy-PZDxraVRRPM7htAHqlfQJ3hZqn7bLjlWbVml1-83jb80mMfVSKawuFB8_gclWM1xLPFpGtCABPx31WnmWp97yLeaZJ1F4QFrLucZ9dAMyg-CJqR-_nTLR4Bw7pxZab2jW9Led3tvPjxpXk-9_4w-K3o3Clr6CNhkHxrqA-g1ebhfcYAP01xxzN0OYk20M7ob2uucHy91igL3PORJbfShh9rSlHi82S5zIsOkz8s_D2dRJLA&h=4Zvhz1PMiGVbFs9zkUrlufDN5pNSqaN5II6v3H8MkDg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/EA90FAD9-8342-4281-82F4-AC77C5536D61?api-version=2022-07-01-preview&t=639148689806090297&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=Q5Hn_jGo9Cn6gW0P38qu_24wNFrCtQSIkhYPlICyKChH7fKzwdbGkQKN2b-ZmgIgThVwJwzi1l7Uyzl_dSXwFKWCiS4hqpJCXBaLF8D_HinqDzuyZ-37SgcWfzQpd4mS_ND7nsgfBmX9rYL591ki65ktJzYn23IAVkxFCxBOxv4MRTrrEwONvRTMG_04rHESaMq1OFvCVxsXsORW8AKzPzMp9UdzCOVEQ46SN-vB672-rLjdgF9SDOgdqeyVoN9JVaH1oBCth2bGvtKh4JlCyzz0h7aoHnEuux33uvrpKhyCK2hn4fOy4O0LgMRRtGTVKsCv8bOC0NZUP3IBMZdO3Q&h=efZjI8hZp1Jdmo5_wE5pgtpEPtDLNJ2zSQP5P_o_cqI Cache-Control: - no-cache Content-Length: - - '406' + - '422' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:35:12 GMT + - Wed, 20 May 2026 10:16:20 GMT Expires: - '-1' Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/B40C6702-F0AA-48A8-BD80-B7528A531FC3?api-version=2022-07-01-preview&t=638924817135999599&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=HjVJlr6ohuutKUtaOY5kZHTg5kSBEAk-drcUmGBk7thIco7IrFkHOlSKHi5WEiIGYoOlWFF6CyvYkJldIjKHuNENIAoc52vD-8JqRqw-Ao55lkH_mK1cMQwpMNmTGQnjfQjmEVz71UxLbzuSSuwfvlzEBNLe7u-_LDqeStW7CogNZZscVXpsUvqJQSM5hmjxlcsCbFt1ofRmAKX7wYeMh3X1ehz7ISVb9LnjWUwiQU_D6_Z75W5J7hnyJ3biKV2iOuOXdOp0Scx2hCZxAqMp2_wazf53hZw_OT_utpm0_5U4wm-wKTz7OcjP47sP-ItaRQwgRB4DSYVyL8odaLbeAA&h=-d6b0FPUNJTywKn2PtJuRsglHirJx0jkBDO-869k1Ms + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/EA90FAD9-8342-4281-82F4-AC77C5536D61?api-version=2022-07-01-preview&t=639148689806246563&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=Pd4jKGyIeLpFd4v-bKoWV2IvvL1SHQ7al4sHkVB76pRyh_v3AmIeBQ-DrTpjqWlk4dMTTIFE12X1gfj5d9bOneOZV2Nx9IOBbiimjRjj-GFiI2IoCwjCbAaBQNQICdHGz1xmNAS6Xsj8jgcgowtFtLs1Lx1gu6a1QvleVWFmj_ZnVoqshRTdTuqEmK4ARo1ec4K0eXWjpv7_szoUzA2LowcUUGyjWRjx4FvcbtIjdxKK0UroDeNK8KEU_CcBmBjHNisUblpgjF1m-EIwGKPGltKNkxMCsIzulem-NaSort10ALH7h6VSBKuOAohBCiufA_T3bqVCghTDvnu9ZdY1HQ&h=p9Su2Qw52ZLVe4jLZsX3QqxE_vIgCKEO3gx5y7uXYm4 Pragma: - no-cache Strict-Transport-Security: @@ -117,659 +117,25 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/B40C6702-F0AA-48A8-BD80-B7528A531FC3?api-version=2022-07-01-preview&t=638924817135843854&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=xOlB2oCy7A27FhNtcHwS63jLH2VMblbTQxD7SKZcpyZmuccuq2cues_gvKYfVhwWQsnuTlxUNElaObnE-R6FBcV35C0-NQppOiyXDy-PZDxraVRRPM7htAHqlfQJ3hZqn7bLjlWbVml1-83jb80mMfVSKawuFB8_gclWM1xLPFpGtCABPx31WnmWp97yLeaZJ1F4QFrLucZ9dAMyg-CJqR-_nTLR4Bw7pxZab2jW9Led3tvPjxpXk-9_4w-K3o3Clr6CNhkHxrqA-g1ebhfcYAP01xxzN0OYk20M7ob2uucHy91igL3PORJbfShh9rSlHi82S5zIsOkz8s_D2dRJLA&h=4Zvhz1PMiGVbFs9zkUrlufDN5pNSqaN5II6v3H8MkDg + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/EA90FAD9-8342-4281-82F4-AC77C5536D61?api-version=2022-07-01-preview&t=639148689806090297&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=Q5Hn_jGo9Cn6gW0P38qu_24wNFrCtQSIkhYPlICyKChH7fKzwdbGkQKN2b-ZmgIgThVwJwzi1l7Uyzl_dSXwFKWCiS4hqpJCXBaLF8D_HinqDzuyZ-37SgcWfzQpd4mS_ND7nsgfBmX9rYL591ki65ktJzYn23IAVkxFCxBOxv4MRTrrEwONvRTMG_04rHESaMq1OFvCVxsXsORW8AKzPzMp9UdzCOVEQ46SN-vB672-rLjdgF9SDOgdqeyVoN9JVaH1oBCth2bGvtKh4JlCyzz0h7aoHnEuux33uvrpKhyCK2hn4fOy4O0LgMRRtGTVKsCv8bOC0NZUP3IBMZdO3Q&h=efZjI8hZp1Jdmo5_wE5pgtpEPtDLNJ2zSQP5P_o_cqI response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/B40C6702-F0AA-48A8-BD80-B7528A531FC3", - "name": "B40C6702-F0AA-48A8-BD80-B7528A531FC3", "status": "Provisioning", - "startTime": "2025-09-03T07:35:12.8430000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/EA90FAD9-8342-4281-82F4-AC77C5536D61", + "name": "EA90FAD9-8342-4281-82F4-AC77C5536D61", "status": "Succeeded", "startTime": + "2026-05-20T10:16:19.7800000Z", "endTime": "2026-05-20T10:16:22.1470000Z"}' headers: Cache-Control: - no-cache Content-Length: - - '249' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:35:12 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/B40C6702-F0AA-48A8-BD80-B7528A531FC3?api-version=2022-07-01-preview&t=638924817135843854&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=xOlB2oCy7A27FhNtcHwS63jLH2VMblbTQxD7SKZcpyZmuccuq2cues_gvKYfVhwWQsnuTlxUNElaObnE-R6FBcV35C0-NQppOiyXDy-PZDxraVRRPM7htAHqlfQJ3hZqn7bLjlWbVml1-83jb80mMfVSKawuFB8_gclWM1xLPFpGtCABPx31WnmWp97yLeaZJ1F4QFrLucZ9dAMyg-CJqR-_nTLR4Bw7pxZab2jW9Led3tvPjxpXk-9_4w-K3o3Clr6CNhkHxrqA-g1ebhfcYAP01xxzN0OYk20M7ob2uucHy91igL3PORJbfShh9rSlHi82S5zIsOkz8s_D2dRJLA&h=4Zvhz1PMiGVbFs9zkUrlufDN5pNSqaN5II6v3H8MkDg - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/B40C6702-F0AA-48A8-BD80-B7528A531FC3", - "name": "B40C6702-F0AA-48A8-BD80-B7528A531FC3", "status": "Provisioning", - "startTime": "2025-09-03T07:35:12.8430000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '249' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:35:13 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/B40C6702-F0AA-48A8-BD80-B7528A531FC3?api-version=2022-07-01-preview&t=638924817135843854&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=xOlB2oCy7A27FhNtcHwS63jLH2VMblbTQxD7SKZcpyZmuccuq2cues_gvKYfVhwWQsnuTlxUNElaObnE-R6FBcV35C0-NQppOiyXDy-PZDxraVRRPM7htAHqlfQJ3hZqn7bLjlWbVml1-83jb80mMfVSKawuFB8_gclWM1xLPFpGtCABPx31WnmWp97yLeaZJ1F4QFrLucZ9dAMyg-CJqR-_nTLR4Bw7pxZab2jW9Led3tvPjxpXk-9_4w-K3o3Clr6CNhkHxrqA-g1ebhfcYAP01xxzN0OYk20M7ob2uucHy91igL3PORJbfShh9rSlHi82S5zIsOkz8s_D2dRJLA&h=4Zvhz1PMiGVbFs9zkUrlufDN5pNSqaN5II6v3H8MkDg - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/B40C6702-F0AA-48A8-BD80-B7528A531FC3", - "name": "B40C6702-F0AA-48A8-BD80-B7528A531FC3", "status": "Provisioning", - "startTime": "2025-09-03T07:35:12.8430000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '249' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:35:14 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/B40C6702-F0AA-48A8-BD80-B7528A531FC3?api-version=2022-07-01-preview&t=638924817135843854&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=xOlB2oCy7A27FhNtcHwS63jLH2VMblbTQxD7SKZcpyZmuccuq2cues_gvKYfVhwWQsnuTlxUNElaObnE-R6FBcV35C0-NQppOiyXDy-PZDxraVRRPM7htAHqlfQJ3hZqn7bLjlWbVml1-83jb80mMfVSKawuFB8_gclWM1xLPFpGtCABPx31WnmWp97yLeaZJ1F4QFrLucZ9dAMyg-CJqR-_nTLR4Bw7pxZab2jW9Led3tvPjxpXk-9_4w-K3o3Clr6CNhkHxrqA-g1ebhfcYAP01xxzN0OYk20M7ob2uucHy91igL3PORJbfShh9rSlHi82S5zIsOkz8s_D2dRJLA&h=4Zvhz1PMiGVbFs9zkUrlufDN5pNSqaN5II6v3H8MkDg - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/B40C6702-F0AA-48A8-BD80-B7528A531FC3", - "name": "B40C6702-F0AA-48A8-BD80-B7528A531FC3", "status": "Succeeded", "startTime": - "2025-09-03T07:35:12.8430000Z", "endTime": "2025-09-03T07:35:15.5000000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '287' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:35:16 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/capacities - response: - body: - string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F16", "region": "West Europe", "state": - "Active"}, {"id": "d5e180d1-ccd3-47fa-ae45-ac55d6277376", "displayName": "fabcli000001", - "sku": "F2", "region": "West Europe", "state": "Active"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '492' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:35:19 GMT - Pragma: - - no-cache - RequestId: - - 29c14365-cf0d-45ca-b6c7-7cc5b03164b6 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/capacities - response: - body: - string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F16", "region": "West Europe", "state": - "Active"}, {"id": "d5e180d1-ccd3-47fa-ae45-ac55d6277376", "displayName": "fabcli000001", - "sku": "F2", "region": "West Europe", "state": "Active"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '492' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:35:25 GMT - Pragma: - - no-cache - RequestId: - - d72af633-1b32-4a7d-adec-244afb869efe - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 - response: - body: - string: '{"properties": {"provisioningState": "Succeeded", "state": "Active", - "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", - "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": - "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '408' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:35:26 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 - response: - body: - string: '{"properties": {"provisioningState": "Succeeded", "state": "Active", - "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", - "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": - "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '408' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:35:26 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - 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.0.0 - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001/suspend?api-version=2023-11-01 - response: - body: - string: '' - headers: - Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/AC953F23-88EE-4454-9585-6B769849D76C?api-version=2022-07-01-preview&t=638924817275267175&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=lbFuVd94FDvMluDcJlqbYhPtDfHQXEGKSikgISc4Rw8-kfUWcIPy-7CQpHkrSDnyHsHIhE6v-lD-aJOwDO8WM6G3dn7mWuuMXuop93egGdIZZwOvIDR_z4FPIVjXduMp1qJaU0bf8C5UAY0VXuePuz6vjt1fBGyZbeXP0WxTHMV4dAljbluXwlJuh5TEshk4ULz_3kILftQlUWPGfSCxJn2F-qEsNSZbYt42H6paLI7M9WPKN6hCaPIUuzLmwMCssYDM9ntcn9pi7BKuYaXVv_WuBejFkJoWPpKaCqKXuE4iZQb0hMEck3SdhpbMtLskcLlnTgo6GpFzWOaM_8-1aw&h=xaTdvledsJ9QLt5PRrFi6veaKHBD4FRzPxt4J-FpQa0 - Cache-Control: - - no-cache - Content-Length: - - '0' - Content-Security-Policy: - - script-src 'self' - Date: - - Wed, 03 Sep 2025 07:35:26 GMT - Expires: - - '-1' - Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/AC953F23-88EE-4454-9585-6B769849D76C?api-version=2022-07-01-preview&t=638924817275267175&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=YoBQJ0nW9XacUfi_tosZF4X4PpHj9QYQx7K2VEgIkCVf40ykh_PGHXpdwEf11hvsh3o-lDjVEnBxkYq1tgMfeHDL0dPq04mtlixv_UNNrKsRmDIRvvRvkA-EExe4qXnSjEcYr7mQy-DlDyuDxTHFzCx_5G1-Ob5CXap_tjIUpeyLDKwFhxG6lum2vmA8ILYPjdqKiHLgfLvkzgpVZfXmRn0cee-gcyrdhZacYbp_nW4Q6basfWnRBnGp3XcNQY1TEM1ooUl4gTTPPYAEutJ1Mvnkg95ePWaOWcFCAnUfkvl6g3oYia_vWYXZbW1Uf_66g9e-SK4IkmndNlvToDYtlQ&h=yTUKhNViAKMNVUA-5B966m3MfR0RBLHBOij3EyHUZos - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - 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.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/AC953F23-88EE-4454-9585-6B769849D76C?api-version=2022-07-01-preview&t=638924817275267175&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=lbFuVd94FDvMluDcJlqbYhPtDfHQXEGKSikgISc4Rw8-kfUWcIPy-7CQpHkrSDnyHsHIhE6v-lD-aJOwDO8WM6G3dn7mWuuMXuop93egGdIZZwOvIDR_z4FPIVjXduMp1qJaU0bf8C5UAY0VXuePuz6vjt1fBGyZbeXP0WxTHMV4dAljbluXwlJuh5TEshk4ULz_3kILftQlUWPGfSCxJn2F-qEsNSZbYt42H6paLI7M9WPKN6hCaPIUuzLmwMCssYDM9ntcn9pi7BKuYaXVv_WuBejFkJoWPpKaCqKXuE4iZQb0hMEck3SdhpbMtLskcLlnTgo6GpFzWOaM_8-1aw&h=xaTdvledsJ9QLt5PRrFi6veaKHBD4FRzPxt4J-FpQa0 - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/AC953F23-88EE-4454-9585-6B769849D76C", - "name": "AC953F23-88EE-4454-9585-6B769849D76C", "status": "Pausing", "startTime": - "2025-09-03T07:35:26.9370000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '244' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:35:27 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/AC953F23-88EE-4454-9585-6B769849D76C?api-version=2022-07-01-preview&t=638924817275267175&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=lbFuVd94FDvMluDcJlqbYhPtDfHQXEGKSikgISc4Rw8-kfUWcIPy-7CQpHkrSDnyHsHIhE6v-lD-aJOwDO8WM6G3dn7mWuuMXuop93egGdIZZwOvIDR_z4FPIVjXduMp1qJaU0bf8C5UAY0VXuePuz6vjt1fBGyZbeXP0WxTHMV4dAljbluXwlJuh5TEshk4ULz_3kILftQlUWPGfSCxJn2F-qEsNSZbYt42H6paLI7M9WPKN6hCaPIUuzLmwMCssYDM9ntcn9pi7BKuYaXVv_WuBejFkJoWPpKaCqKXuE4iZQb0hMEck3SdhpbMtLskcLlnTgo6GpFzWOaM_8-1aw&h=xaTdvledsJ9QLt5PRrFi6veaKHBD4FRzPxt4J-FpQa0 - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/AC953F23-88EE-4454-9585-6B769849D76C", - "name": "AC953F23-88EE-4454-9585-6B769849D76C", "status": "Pausing", "startTime": - "2025-09-03T07:35:26.9370000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '244' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:35:27 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/AC953F23-88EE-4454-9585-6B769849D76C?api-version=2022-07-01-preview&t=638924817275267175&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=lbFuVd94FDvMluDcJlqbYhPtDfHQXEGKSikgISc4Rw8-kfUWcIPy-7CQpHkrSDnyHsHIhE6v-lD-aJOwDO8WM6G3dn7mWuuMXuop93egGdIZZwOvIDR_z4FPIVjXduMp1qJaU0bf8C5UAY0VXuePuz6vjt1fBGyZbeXP0WxTHMV4dAljbluXwlJuh5TEshk4ULz_3kILftQlUWPGfSCxJn2F-qEsNSZbYt42H6paLI7M9WPKN6hCaPIUuzLmwMCssYDM9ntcn9pi7BKuYaXVv_WuBejFkJoWPpKaCqKXuE4iZQb0hMEck3SdhpbMtLskcLlnTgo6GpFzWOaM_8-1aw&h=xaTdvledsJ9QLt5PRrFi6veaKHBD4FRzPxt4J-FpQa0 - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/AC953F23-88EE-4454-9585-6B769849D76C", - "name": "AC953F23-88EE-4454-9585-6B769849D76C", "status": "Pausing", "startTime": - "2025-09-03T07:35:26.9370000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '244' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:35:28 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/AC953F23-88EE-4454-9585-6B769849D76C?api-version=2022-07-01-preview&t=638924817275267175&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=lbFuVd94FDvMluDcJlqbYhPtDfHQXEGKSikgISc4Rw8-kfUWcIPy-7CQpHkrSDnyHsHIhE6v-lD-aJOwDO8WM6G3dn7mWuuMXuop93egGdIZZwOvIDR_z4FPIVjXduMp1qJaU0bf8C5UAY0VXuePuz6vjt1fBGyZbeXP0WxTHMV4dAljbluXwlJuh5TEshk4ULz_3kILftQlUWPGfSCxJn2F-qEsNSZbYt42H6paLI7M9WPKN6hCaPIUuzLmwMCssYDM9ntcn9pi7BKuYaXVv_WuBejFkJoWPpKaCqKXuE4iZQb0hMEck3SdhpbMtLskcLlnTgo6GpFzWOaM_8-1aw&h=xaTdvledsJ9QLt5PRrFi6veaKHBD4FRzPxt4J-FpQa0 - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/AC953F23-88EE-4454-9585-6B769849D76C", - "name": "AC953F23-88EE-4454-9585-6B769849D76C", "status": "Pausing", "startTime": - "2025-09-03T07:35:26.9370000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '244' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:35:30 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/AC953F23-88EE-4454-9585-6B769849D76C?api-version=2022-07-01-preview&t=638924817275267175&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=lbFuVd94FDvMluDcJlqbYhPtDfHQXEGKSikgISc4Rw8-kfUWcIPy-7CQpHkrSDnyHsHIhE6v-lD-aJOwDO8WM6G3dn7mWuuMXuop93egGdIZZwOvIDR_z4FPIVjXduMp1qJaU0bf8C5UAY0VXuePuz6vjt1fBGyZbeXP0WxTHMV4dAljbluXwlJuh5TEshk4ULz_3kILftQlUWPGfSCxJn2F-qEsNSZbYt42H6paLI7M9WPKN6hCaPIUuzLmwMCssYDM9ntcn9pi7BKuYaXVv_WuBejFkJoWPpKaCqKXuE4iZQb0hMEck3SdhpbMtLskcLlnTgo6GpFzWOaM_8-1aw&h=xaTdvledsJ9QLt5PRrFi6veaKHBD4FRzPxt4J-FpQa0 - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/AC953F23-88EE-4454-9585-6B769849D76C", - "name": "AC953F23-88EE-4454-9585-6B769849D76C", "status": "Pausing", "startTime": - "2025-09-03T07:35:26.9370000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '244' + - '287' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:35:34 GMT + - Wed, 20 May 2026 10:16:31 GMT Expires: - '-1' Pragma: @@ -799,39 +165,42 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/AC953F23-88EE-4454-9585-6B769849D76C?api-version=2022-07-01-preview&t=638924817275267175&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=lbFuVd94FDvMluDcJlqbYhPtDfHQXEGKSikgISc4Rw8-kfUWcIPy-7CQpHkrSDnyHsHIhE6v-lD-aJOwDO8WM6G3dn7mWuuMXuop93egGdIZZwOvIDR_z4FPIVjXduMp1qJaU0bf8C5UAY0VXuePuz6vjt1fBGyZbeXP0WxTHMV4dAljbluXwlJuh5TEshk4ULz_3kILftQlUWPGfSCxJn2F-qEsNSZbYt42H6paLI7M9WPKN6hCaPIUuzLmwMCssYDM9ntcn9pi7BKuYaXVv_WuBejFkJoWPpKaCqKXuE4iZQb0hMEck3SdhpbMtLskcLlnTgo6GpFzWOaM_8-1aw&h=xaTdvledsJ9QLt5PRrFi6veaKHBD4FRzPxt4J-FpQa0 + uri: https://api.fabric.microsoft.com/v1/capacities response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/AC953F23-88EE-4454-9585-6B769849D76C", - "name": "AC953F23-88EE-4454-9585-6B769849D76C", "status": "Succeeded", "startTime": - "2025-09-03T07:35:26.9370000Z", "endTime": "2025-09-03T07:35:37.0370000Z"}' + string: '{"value": [{"id": "c9e1ea7f-3b58-4496-b238-f0fc2d9adb77", "displayName": + "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}, + {"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-cache + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip Content-Length: - - '287' - Content-Security-Policy: - - script-src 'self' + - '457' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:35:42 GMT - Expires: - - '-1' + - Wed, 20 May 2026 10:16:36 GMT Pragma: - no-cache + RequestId: + - d92a3d0b-5f9a-4d8e-bd53-8bacccd0211c Strict-Transport-Security: - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Frame-Options: - deny - X-XSS-Protection: - - 1; mode=block + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' status: code: 200 message: OK @@ -847,15 +216,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: body: - string: '{"value": [{"id": "d5e180d1-ccd3-47fa-ae45-ac55d6277376", "displayName": - "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Inactive"}, - {"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", - "sku": "F16", "region": "West Europe", "state": "Active"}]}' + string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "c9e1ea7f-3b58-4496-b238-f0fc2d9adb77", "displayName": "fabcli000001", + "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -864,15 +233,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '491' + - '457' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:35:47 GMT + - Wed, 20 May 2026 10:16:41 GMT Pragma: - no-cache RequestId: - - 45a4419e-be3d-497b-a2c5-fbef5268ae0a + - c6039877-884e-4696-b93f-ae387520db0c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -880,7 +249,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -898,12 +267,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: body: - string: '{"properties": {"provisioningState": "Succeeded", "state": "Paused", + string: '{"properties": {"provisioningState": "Succeeded", "state": "Active", "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}' @@ -911,13 +280,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:35:48 GMT + - Wed, 20 May 2026 10:16:42 GMT Expires: - '-1' Pragma: @@ -947,12 +316,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: body: - string: '{"properties": {"provisioningState": "Succeeded", "state": "Paused", + string: '{"properties": {"provisioningState": "Succeeded", "state": "Active", "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}' @@ -960,13 +329,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:35:48 GMT + - Wed, 20 May 2026 10:16:43 GMT Expires: - '-1' Pragma: @@ -998,15 +367,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001/resume?api-version=2023-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001/suspend?api-version=2023-11-01 response: body: string: '' headers: Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/A1C0A3E3-B65B-41E7-AA47-6A6A1531C19E?api-version=2022-07-01-preview&t=638924817506413671&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=LVr-HuRpxgww-kqY-_GrenS9qx3A1jjYa3LqegQGe2uxndq3673ChLXQ9OI2gAE3RnGfWcAmswWZjnF3vRcxG1Dk5U4tQ_cJRXFXd2YiIzIqEfnTjtQRGkK2blPD6O-XLnquk9jy0f1VjBnL7pEOQJeBYD-PR14iaSVaMJO0x1OdbWEBHCWvjrm5SWzNoU4iCwtKyuiJyDTSeeuWmbg3AD-e3-fLHAI6aSLa480kl3jaUzPAq42yOaa9VbrKQyVE90E877NjATPbkr007NCuZHecw8RlgqJyEvs5kViP82lCnBwZdnuDH_Ad6Gq26ZiPEgK36qBGED0Wi7vRluxRaA&h=RJ5Hky1Vw1_U11qPqBiaTiW4_RUzpbJM1C3WYVcBexA + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/D8E43A63-89C6-43BC-8728-46693CBE3D46?api-version=2022-07-01-preview&t=639148690055525280&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=XkcYK8Q6G7R0jWM_iPWi4vSuTC59JM0K__5D0UL-BDxYDnV24-GoKgoxpDuFhzNqJJ0Z5QRGkMMzF23a831YbMXvwco3bia6s8YkY-ppk3NDMQgDZRMiyRsA-1jW_bqqvDgdWWkKg8uW7yZ56mQg-sAPiVodJfIOLua4raV4efq73-LrqtZp3VmHB9D4uingVAe-ASZPuYTkKUJQGtwW4o6iHzCSdRctniPP2MjlFMUbZwlxXNKLBgSUw_wH0K_VmIEJ9bflQhtgAOUfkEk98ljtM1JPSxUX6k4siABpi0A7cAN53od6-wdv7zEpb-Z3jJ7KU9LrSpPrrdu5BdkXuQ&h=T7X00Z87ZRMVDrmmy45RwzGM5SIhbz0H9vu8Up-7IhY Cache-Control: - no-cache Content-Length: @@ -1014,11 +383,11 @@ interactions: Content-Security-Policy: - script-src 'self' Date: - - Wed, 03 Sep 2025 07:35:50 GMT + - Wed, 20 May 2026 10:16:44 GMT Expires: - '-1' Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/A1C0A3E3-B65B-41E7-AA47-6A6A1531C19E?api-version=2022-07-01-preview&t=638924817506882603&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=L8pDZ7RSnEnkddlKICnXKZSbf7rtGtQiu7i28x1xv6auqaCF3ofs1hn0NXR2-FC3UnfXKl5P1uANI6UgNi1iyr0rUY6vN9HLSKwybY6KyAamrNj7Drd19AY5vD95RmvOSQuB7IiUf_US8QLcolpDeeJZh6RV7SrLu_bsnUxnL72GnfTuM4kFCzV3uYt6aXSloVXD7eCd1cJ_KHUDW7NKtzSiKwVXtazDcQn3u4sFeTGvc1VuWkmsuVZFFrrgYnfZM6dd6wFFlRhkZmsFaFa9MATR19tE-aC8gX8NyezKXoV-MTPrWQFo3Jzt2Ym62dlx7cpSmdDmdyGluQUlUy513w&h=PoQ8BkRSC1ayDpF9s1DINPcweGzDghOxDuEhOcXlF1M + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/D8E43A63-89C6-43BC-8728-46693CBE3D46?api-version=2022-07-01-preview&t=639148690055525280&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=cYyfXpqPbbRI5Av8J-Z3ldyW0bW7SfZxnIemZIXIbDdBEIEsiYidQjEDdXLyD8edQO8pYzYN32kbgwVXkE3rt1jqwE_67uQRhc9kq4obZs91O69-dOP2vpRhO3g1szt8BaQ7uskcMIPc6ejVfYzhrwcouvs8bynnee0lNRuVGn9Oy96BhbzgEEJIiKYeD4EQvjTW0KuRbT7_Uqpe41oe48-nRFEgyz5WEE2e9HUbXBP0AjEZRih4QTrMyFs6MjBODRHzLWp8-BgDO4F4mq0a5gNq0rGt1zGjy7M17FlZebYApZF4mXyM80ZQkmWJD1q3tHhY9EMTzVAOxQIy-XsTIg&h=d0ZjH3pfRpCHeXGamo9tHTrrIqb7dwYTUmrWgyYi6ew Pragma: - no-cache Strict-Transport-Security: @@ -1046,25 +415,25 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/A1C0A3E3-B65B-41E7-AA47-6A6A1531C19E?api-version=2022-07-01-preview&t=638924817506413671&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=LVr-HuRpxgww-kqY-_GrenS9qx3A1jjYa3LqegQGe2uxndq3673ChLXQ9OI2gAE3RnGfWcAmswWZjnF3vRcxG1Dk5U4tQ_cJRXFXd2YiIzIqEfnTjtQRGkK2blPD6O-XLnquk9jy0f1VjBnL7pEOQJeBYD-PR14iaSVaMJO0x1OdbWEBHCWvjrm5SWzNoU4iCwtKyuiJyDTSeeuWmbg3AD-e3-fLHAI6aSLa480kl3jaUzPAq42yOaa9VbrKQyVE90E877NjATPbkr007NCuZHecw8RlgqJyEvs5kViP82lCnBwZdnuDH_Ad6Gq26ZiPEgK36qBGED0Wi7vRluxRaA&h=RJ5Hky1Vw1_U11qPqBiaTiW4_RUzpbJM1C3WYVcBexA + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/D8E43A63-89C6-43BC-8728-46693CBE3D46?api-version=2022-07-01-preview&t=639148690055525280&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=XkcYK8Q6G7R0jWM_iPWi4vSuTC59JM0K__5D0UL-BDxYDnV24-GoKgoxpDuFhzNqJJ0Z5QRGkMMzF23a831YbMXvwco3bia6s8YkY-ppk3NDMQgDZRMiyRsA-1jW_bqqvDgdWWkKg8uW7yZ56mQg-sAPiVodJfIOLua4raV4efq73-LrqtZp3VmHB9D4uingVAe-ASZPuYTkKUJQGtwW4o6iHzCSdRctniPP2MjlFMUbZwlxXNKLBgSUw_wH0K_VmIEJ9bflQhtgAOUfkEk98ljtM1JPSxUX6k4siABpi0A7cAN53od6-wdv7zEpb-Z3jJ7KU9LrSpPrrdu5BdkXuQ&h=T7X00Z87ZRMVDrmmy45RwzGM5SIhbz0H9vu8Up-7IhY response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/A1C0A3E3-B65B-41E7-AA47-6A6A1531C19E", - "name": "A1C0A3E3-B65B-41E7-AA47-6A6A1531C19E", "status": "Resuming", "startTime": - "2025-09-03T07:35:49.9200000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/D8E43A63-89C6-43BC-8728-46693CBE3D46", + "name": "D8E43A63-89C6-43BC-8728-46693CBE3D46", "status": "Succeeded", "startTime": + "2026-05-20T10:16:44.9270000Z", "endTime": "2026-05-20T10:16:53.1670000Z"}' headers: Cache-Control: - no-cache Content-Length: - - '245' + - '287' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:35:51 GMT + - Wed, 20 May 2026 10:16:56 GMT Expires: - '-1' Pragma: @@ -1094,25 +463,77 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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"}, {"id": "c9e1ea7f-3b58-4496-b238-f0fc2d9adb77", "displayName": "fabcli000001", + "sku": "F2", "region": "West Europe", "state": "Inactive"}]}' + 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: + - Wed, 20 May 2026 10:17:01 GMT + Pragma: + - no-cache + RequestId: + - 1ae000b3-fac8-4e81-935d-a9b550d1ce00 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: 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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/A1C0A3E3-B65B-41E7-AA47-6A6A1531C19E?api-version=2022-07-01-preview&t=638924817506413671&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=LVr-HuRpxgww-kqY-_GrenS9qx3A1jjYa3LqegQGe2uxndq3673ChLXQ9OI2gAE3RnGfWcAmswWZjnF3vRcxG1Dk5U4tQ_cJRXFXd2YiIzIqEfnTjtQRGkK2blPD6O-XLnquk9jy0f1VjBnL7pEOQJeBYD-PR14iaSVaMJO0x1OdbWEBHCWvjrm5SWzNoU4iCwtKyuiJyDTSeeuWmbg3AD-e3-fLHAI6aSLa480kl3jaUzPAq42yOaa9VbrKQyVE90E877NjATPbkr007NCuZHecw8RlgqJyEvs5kViP82lCnBwZdnuDH_Ad6Gq26ZiPEgK36qBGED0Wi7vRluxRaA&h=RJ5Hky1Vw1_U11qPqBiaTiW4_RUzpbJM1C3WYVcBexA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/A1C0A3E3-B65B-41E7-AA47-6A6A1531C19E", - "name": "A1C0A3E3-B65B-41E7-AA47-6A6A1531C19E", "status": "Resuming", "startTime": - "2025-09-03T07:35:49.9200000Z"}' + string: '{"properties": {"provisioningState": "Succeeded", "state": "Paused", + "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", + "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": + "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}' headers: Cache-Control: - no-cache Content-Length: - - '245' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:35:51 GMT + - Wed, 20 May 2026 10:17:03 GMT Expires: - '-1' Pragma: @@ -1142,25 +563,26 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/A1C0A3E3-B65B-41E7-AA47-6A6A1531C19E?api-version=2022-07-01-preview&t=638924817506413671&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=LVr-HuRpxgww-kqY-_GrenS9qx3A1jjYa3LqegQGe2uxndq3673ChLXQ9OI2gAE3RnGfWcAmswWZjnF3vRcxG1Dk5U4tQ_cJRXFXd2YiIzIqEfnTjtQRGkK2blPD6O-XLnquk9jy0f1VjBnL7pEOQJeBYD-PR14iaSVaMJO0x1OdbWEBHCWvjrm5SWzNoU4iCwtKyuiJyDTSeeuWmbg3AD-e3-fLHAI6aSLa480kl3jaUzPAq42yOaa9VbrKQyVE90E877NjATPbkr007NCuZHecw8RlgqJyEvs5kViP82lCnBwZdnuDH_Ad6Gq26ZiPEgK36qBGED0Wi7vRluxRaA&h=RJ5Hky1Vw1_U11qPqBiaTiW4_RUzpbJM1C3WYVcBexA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/A1C0A3E3-B65B-41E7-AA47-6A6A1531C19E", - "name": "A1C0A3E3-B65B-41E7-AA47-6A6A1531C19E", "status": "Resuming", "startTime": - "2025-09-03T07:35:49.9200000Z"}' + string: '{"properties": {"provisioningState": "Succeeded", "state": "Paused", + "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", + "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": + "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}' headers: Cache-Control: - no-cache Content-Length: - - '245' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:35:51 GMT + - Wed, 20 May 2026 10:17:03 GMT Expires: - '-1' Pragma: @@ -1187,30 +609,32 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Length: + - '0' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/A1C0A3E3-B65B-41E7-AA47-6A6A1531C19E?api-version=2022-07-01-preview&t=638924817506413671&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=LVr-HuRpxgww-kqY-_GrenS9qx3A1jjYa3LqegQGe2uxndq3673ChLXQ9OI2gAE3RnGfWcAmswWZjnF3vRcxG1Dk5U4tQ_cJRXFXd2YiIzIqEfnTjtQRGkK2blPD6O-XLnquk9jy0f1VjBnL7pEOQJeBYD-PR14iaSVaMJO0x1OdbWEBHCWvjrm5SWzNoU4iCwtKyuiJyDTSeeuWmbg3AD-e3-fLHAI6aSLa480kl3jaUzPAq42yOaa9VbrKQyVE90E877NjATPbkr007NCuZHecw8RlgqJyEvs5kViP82lCnBwZdnuDH_Ad6Gq26ZiPEgK36qBGED0Wi7vRluxRaA&h=RJ5Hky1Vw1_U11qPqBiaTiW4_RUzpbJM1C3WYVcBexA + - ms-fabric-cli-test/1.6.1 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001/resume?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/A1C0A3E3-B65B-41E7-AA47-6A6A1531C19E", - "name": "A1C0A3E3-B65B-41E7-AA47-6A6A1531C19E", "status": "Resuming", "startTime": - "2025-09-03T07:35:49.9200000Z"}' + string: '' headers: + Azure-AsyncOperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/D6E31D23-45C6-45AC-8642-DF3000B3C496?api-version=2022-07-01-preview&t=639148690261625208&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=DBrWJ8PyklhRnvRvwHVzGc3NyoV0LYPtAf7lDtN01i3RYQcy6ksby9RzV3YfGgz1hK2XzBmOKY__zbPKhwqV9hYK6jSTalL3uLHKsJiWO5xi3dPZUowCy01qt7408PZ6NuGTz1rqqyQWjalCsj9IVLs5jM3qu7eypW2EiH12dadZdEKK1vYiuOqq0n9MfL0oXbOATGTUbq-UjlggmytYqiwme0EFOUkxrUxTXT0RQHzI5UTFvr3jntK-coK76uAQ7LPPLESyhUTjQaBpGi-0-wYkRSeqYgWrEJOJ4Mo-yZU2LZjCJtUZmC5lXNaUCi0XopL_TBHrSo3S0gVP9aAxAg&h=U7EZsp_wesnY_plzlyG6AdJg38PyAJ-f6UAvXNmxYCE Cache-Control: - no-cache Content-Length: - - '245' + - '0' Content-Security-Policy: - script-src 'self' - Content-Type: - - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:35:54 GMT + - Wed, 20 May 2026 10:17:05 GMT Expires: - '-1' + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/D6E31D23-45C6-45AC-8642-DF3000B3C496?api-version=2022-07-01-preview&t=639148690261781436&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=VyL4f5aSevATYuM4UlNGFF85arW_vB-1kOGR88Q0rZ9PjVGn9EZDGX303_ouKUeLfrOO9e56EGzj0Ulsc4iRZvtI3mVXdSukhXY7qJGFci2FU4-NEnt4EQeJivfTZvKpDA6eU8DSpeSbk7hfFlz9W7joZawIWXWSEzqxrDkHBBDTzlHWBEnc0x7MD9obvz3lVmYKyrNL8rdNHDFY2eZ5WT4DOVRwRxxYpbroWHd7Cjm3tBLCAccBH5yXtnA6iEKf_p9Vqq-gkaLBHSA9dMeYupbaIZZq5KYHj6gu7ByctjZp2AhR1jIi1fvOfAqQR80w1t93jSbKGEPtKw4y71SWvQ&h=tZigsn9CQK2k6MYWg7ezqqAWke0cj5f_TMwy7rqsiQ4 Pragma: - no-cache Strict-Transport-Security: @@ -1224,8 +648,8 @@ interactions: X-XSS-Protection: - 1; mode=block status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1238,14 +662,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/A1C0A3E3-B65B-41E7-AA47-6A6A1531C19E?api-version=2022-07-01-preview&t=638924817506413671&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=LVr-HuRpxgww-kqY-_GrenS9qx3A1jjYa3LqegQGe2uxndq3673ChLXQ9OI2gAE3RnGfWcAmswWZjnF3vRcxG1Dk5U4tQ_cJRXFXd2YiIzIqEfnTjtQRGkK2blPD6O-XLnquk9jy0f1VjBnL7pEOQJeBYD-PR14iaSVaMJO0x1OdbWEBHCWvjrm5SWzNoU4iCwtKyuiJyDTSeeuWmbg3AD-e3-fLHAI6aSLa480kl3jaUzPAq42yOaa9VbrKQyVE90E877NjATPbkr007NCuZHecw8RlgqJyEvs5kViP82lCnBwZdnuDH_Ad6Gq26ZiPEgK36qBGED0Wi7vRluxRaA&h=RJ5Hky1Vw1_U11qPqBiaTiW4_RUzpbJM1C3WYVcBexA + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/D6E31D23-45C6-45AC-8642-DF3000B3C496?api-version=2022-07-01-preview&t=639148690261625208&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=DBrWJ8PyklhRnvRvwHVzGc3NyoV0LYPtAf7lDtN01i3RYQcy6ksby9RzV3YfGgz1hK2XzBmOKY__zbPKhwqV9hYK6jSTalL3uLHKsJiWO5xi3dPZUowCy01qt7408PZ6NuGTz1rqqyQWjalCsj9IVLs5jM3qu7eypW2EiH12dadZdEKK1vYiuOqq0n9MfL0oXbOATGTUbq-UjlggmytYqiwme0EFOUkxrUxTXT0RQHzI5UTFvr3jntK-coK76uAQ7LPPLESyhUTjQaBpGi-0-wYkRSeqYgWrEJOJ4Mo-yZU2LZjCJtUZmC5lXNaUCi0XopL_TBHrSo3S0gVP9aAxAg&h=U7EZsp_wesnY_plzlyG6AdJg38PyAJ-f6UAvXNmxYCE response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/A1C0A3E3-B65B-41E7-AA47-6A6A1531C19E", - "name": "A1C0A3E3-B65B-41E7-AA47-6A6A1531C19E", "status": "Succeeded", "startTime": - "2025-09-03T07:35:49.9200000Z", "endTime": "2025-09-03T07:35:54.4170000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/D6E31D23-45C6-45AC-8642-DF3000B3C496", + "name": "D6E31D23-45C6-45AC-8642-DF3000B3C496", "status": "Succeeded", "startTime": + "2026-05-20T10:17:05.5800000Z", "endTime": "2026-05-20T10:17:10.6330000Z"}' headers: Cache-Control: - no-cache @@ -1256,7 +680,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:35:57 GMT + - Wed, 20 May 2026 10:17:16 GMT Expires: - '-1' Pragma: @@ -1286,14 +710,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": - "Active"}, {"id": "d5e180d1-ccd3-47fa-ae45-ac55d6277376", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "c9e1ea7f-3b58-4496-b238-f0fc2d9adb77", "displayName": "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -1303,15 +727,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '492' + - '457' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:36:02 GMT + - Wed, 20 May 2026 10:17:19 GMT Pragma: - no-cache RequestId: - - 757b78b1-72f9-4ee5-b59e-f3f142725aa7 + - ecd400f0-24de-4a1e-aa2b-f89f74bb4e03 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1319,7 +743,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -1337,15 +761,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": - "Active"}, {"id": "d5e180d1-ccd3-47fa-ae45-ac55d6277376", "displayName": "fabcli000001", - "sku": "F2", "region": "West Europe", "state": "Active"}]}' + string: '{"value": [{"id": "c9e1ea7f-3b58-4496-b238-f0fc2d9adb77", "displayName": + "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}, + {"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", + "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1354,15 +778,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '492' + - '457' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:36:06 GMT + - Wed, 20 May 2026 10:17:24 GMT Pragma: - no-cache RequestId: - - bed2d17f-3c96-4533-8443-6ff839da3a77 + - 88da2051-8393-46e2-b6f2-a93e32798764 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1370,7 +794,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -1388,7 +812,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -1401,13 +825,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:36:06 GMT + - Wed, 20 May 2026 10:17:24 GMT Expires: - '-1' Pragma: @@ -1437,7 +861,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -1450,13 +874,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:36:07 GMT + - Wed, 20 May 2026 10:17:25 GMT Expires: - '-1' Pragma: @@ -1486,15 +910,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": - "Active"}, {"id": "d5e180d1-ccd3-47fa-ae45-ac55d6277376", "displayName": "fabcli000001", - "sku": "F2", "region": "West Europe", "state": "Active"}]}' + string: '{"value": [{"id": "c9e1ea7f-3b58-4496-b238-f0fc2d9adb77", "displayName": + "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}, + {"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", + "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1503,15 +927,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '492' + - '457' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:36:12 GMT + - Wed, 20 May 2026 10:17:31 GMT Pragma: - no-cache RequestId: - - 41c79fbc-b581-4cda-9f54-51a11822d081 + - 931d9832-fbfa-47a2-a490-62848af2effc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1519,7 +943,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -1537,22 +961,22 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions?api-version=2022-12-01 + uri: https://management.azure.com/subscriptions/placeholder/resourceGroups/placeholder/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: body: - string: '{"value": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000"}], - "count": {"type": "Total", "value": 1}}' + string: '{"error": {"code": "InvalidSubscriptionId", "message": "The provided + subscription identifier ''placeholder'' is malformed or invalid."}}' headers: Cache-Control: - no-cache Content-Length: - - '479' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:36:12 GMT + - Wed, 20 May 2026 10:17:31 GMT Expires: - '-1' Pragma: @@ -1564,8 +988,8 @@ interactions: X-Content-Type-Options: - nosniff status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: body: null headers: @@ -1578,31 +1002,22 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/capacities?api-version=2023-11-01 + uri: https://management.azure.com/subscriptions?api-version=2022-12-01 response: body: - string: '{"value": [{"properties": {"provisioningState": "Succeeded", "state": - "Active", "administration": {"members": ["mocked@admin_test_user"]}}, "id": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/mocked_fabriccli_capacity_name", - "name": "mocked_fabriccli_capacity_name", "type": "Microsoft.Fabric/capacities", - "location": "West Europe", "sku": {"name": "F16", "tier": "Fabric"}, "tags": - {}}, {"properties": {"provisioningState": "Succeeded", "state": "Active", - "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", - "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": - "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}]}' + string: '{"value": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000"}], + "count": {"type": "Total", "value": 1}}' headers: Cache-Control: - no-cache Content-Length: - - '2480' - Content-Security-Policy: - - script-src 'self' + - '469' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:36:13 GMT + - Wed, 20 May 2026 10:17:32 GMT Expires: - '-1' Pragma: @@ -1613,63 +1028,9 @@ interactions: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block 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.0.0 - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 - response: - body: - string: '' - headers: - Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/8E7AB81F-7BD1-4A1D-8968-E52286CDE49D?api-version=2022-07-01-preview&t=638924817741580050&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=v90MBHElIC_K4Bwanv5PRcWZn7PZpY5SKt7gThhmLYvBWCNAhMhc5-THliSO3ukC4Ud7-RxZRjLOpKdfC-ehK9lojGAKM-1iWWmrstzOGeswW1A8OkvRk-fTHGJIC5xv55p0Q1HjAykpgcrvLhppiTQ8GZ4z_-TqMDpS92-ZMCjkThatwh4-0XRvZ0RD1CW0GRcNutli8CyOHqJiIKE63TXDKvtqTHXpa7XmWhSMjZ7oLaBeDgDLyEO_YR95BPLnOJWDgPOOyRKZuXzpZjV08wnrilngQPdHQUU72HhJ58ufdeEAduPO0EeOo-HJ3noYtDl5sRppl4q9AFThBIBQOQ&h=apDTMZwU_h6Mm4GS0STYxZ5gO0l7lj0_iZPjotBuYtM - Cache-Control: - - no-cache - Content-Length: - - '0' - Content-Security-Policy: - - script-src 'self' - Date: - - Wed, 03 Sep 2025 07:36:13 GMT - Expires: - - '-1' - Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/8E7AB81F-7BD1-4A1D-8968-E52286CDE49D?api-version=2022-07-01-preview&t=638924817741736302&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=zI_0toybGFzvWjfgPRBe4ga2lAdQzs--ShGZklBSvuPp_Krr_boLQvaL0MhOI1TEXuUyQfE2Hd3y2njuQQcxAl4GyYgWsUSf49WEAOpvT1Z5dgA0WyfPnQQYTlwh7Qh51YNhiJaj9d7it1wtJ_QAw4CY8XiNS9MaMlOOoZEsLhck-rBhZM_P4XLfQLKe6C9q0OErVWWJnAdvCKBPRUevOJXXK1dEGFnIjxc8uhlfQ3HEKEd-pQfA2aiAd97JYJ4BI6y9EZaIPFvAFWZvxoLQF-rVGOJKRYJ0nw-G6zcvKyBtfUH5MY-BW2h8PSMxQ63Z7uvZpctmuk-59gwMdbMcnQ&h=9d2BQ21jZxXGjzdHqWe1brAu7FBLjNdt3026XHHu5Qo - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 202 - message: Accepted - request: body: null headers: @@ -1682,25 +1043,29 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/8E7AB81F-7BD1-4A1D-8968-E52286CDE49D?api-version=2022-07-01-preview&t=638924817741580050&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=v90MBHElIC_K4Bwanv5PRcWZn7PZpY5SKt7gThhmLYvBWCNAhMhc5-THliSO3ukC4Ud7-RxZRjLOpKdfC-ehK9lojGAKM-1iWWmrstzOGeswW1A8OkvRk-fTHGJIC5xv55p0Q1HjAykpgcrvLhppiTQ8GZ4z_-TqMDpS92-ZMCjkThatwh4-0XRvZ0RD1CW0GRcNutli8CyOHqJiIKE63TXDKvtqTHXpa7XmWhSMjZ7oLaBeDgDLyEO_YR95BPLnOJWDgPOOyRKZuXzpZjV08wnrilngQPdHQUU72HhJ58ufdeEAduPO0EeOo-HJ3noYtDl5sRppl4q9AFThBIBQOQ&h=apDTMZwU_h6Mm4GS0STYxZ5gO0l7lj0_iZPjotBuYtM + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/capacities?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/8E7AB81F-7BD1-4A1D-8968-E52286CDE49D", - "name": "8E7AB81F-7BD1-4A1D-8968-E52286CDE49D", "status": "Deleting", "startTime": - "2025-09-03T07:36:13.7630000Z"}' + string: '{"value": [{"properties": {"provisioningState": "Succeeded", "state": + "Active", "administration": {"members": ["mocked@admin_test_user", "4fdd0762-85fe-4f8b-90dc-776e8605e0b9"]}}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/mocked_fabriccli_capacity_name", + "name": "mocked_fabriccli_capacity_name", "type": "Microsoft.Fabric/capacities", + "location": "Central US", "sku": {"name": "F16", "tier": "Fabric"}, "tags": + {}}, {"properties": {"provisioningState": "Succeeded", "state": "Active", + "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", + "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": + "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}]}' headers: Cache-Control: - no-cache Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' + - '2562' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:36:14 GMT + - Wed, 20 May 2026 10:17:34 GMT Expires: - '-1' Pragma: @@ -1711,10 +1076,6 @@ interactions: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block status: code: 200 message: OK @@ -1727,78 +1088,32 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/8E7AB81F-7BD1-4A1D-8968-E52286CDE49D?api-version=2022-07-01-preview&t=638924817741580050&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=v90MBHElIC_K4Bwanv5PRcWZn7PZpY5SKt7gThhmLYvBWCNAhMhc5-THliSO3ukC4Ud7-RxZRjLOpKdfC-ehK9lojGAKM-1iWWmrstzOGeswW1A8OkvRk-fTHGJIC5xv55p0Q1HjAykpgcrvLhppiTQ8GZ4z_-TqMDpS92-ZMCjkThatwh4-0XRvZ0RD1CW0GRcNutli8CyOHqJiIKE63TXDKvtqTHXpa7XmWhSMjZ7oLaBeDgDLyEO_YR95BPLnOJWDgPOOyRKZuXzpZjV08wnrilngQPdHQUU72HhJ58ufdeEAduPO0EeOo-HJ3noYtDl5sRppl4q9AFThBIBQOQ&h=apDTMZwU_h6Mm4GS0STYxZ5gO0l7lj0_iZPjotBuYtM - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/8E7AB81F-7BD1-4A1D-8968-E52286CDE49D", - "name": "8E7AB81F-7BD1-4A1D-8968-E52286CDE49D", "status": "Deleting", "startTime": - "2025-09-03T07:36:13.7630000Z"}' - headers: - Cache-Control: - - no-cache Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:36:14 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive + - '0' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/8E7AB81F-7BD1-4A1D-8968-E52286CDE49D?api-version=2022-07-01-preview&t=638924817741580050&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=v90MBHElIC_K4Bwanv5PRcWZn7PZpY5SKt7gThhmLYvBWCNAhMhc5-THliSO3ukC4Ud7-RxZRjLOpKdfC-ehK9lojGAKM-1iWWmrstzOGeswW1A8OkvRk-fTHGJIC5xv55p0Q1HjAykpgcrvLhppiTQ8GZ4z_-TqMDpS92-ZMCjkThatwh4-0XRvZ0RD1CW0GRcNutli8CyOHqJiIKE63TXDKvtqTHXpa7XmWhSMjZ7oLaBeDgDLyEO_YR95BPLnOJWDgPOOyRKZuXzpZjV08wnrilngQPdHQUU72HhJ58ufdeEAduPO0EeOo-HJ3noYtDl5sRppl4q9AFThBIBQOQ&h=apDTMZwU_h6Mm4GS0STYxZ5gO0l7lj0_iZPjotBuYtM + - ms-fabric-cli-test/1.6.1 + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/8E7AB81F-7BD1-4A1D-8968-E52286CDE49D", - "name": "8E7AB81F-7BD1-4A1D-8968-E52286CDE49D", "status": "Deleting", "startTime": - "2025-09-03T07:36:13.7630000Z"}' + string: '' headers: + Azure-AsyncOperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/279587C7-75B4-4113-A01A-5F9FAC9566D8?api-version=2022-07-01-preview&t=639148690569910196&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=cP2Sw50NzyptK1TlhX7jjkS4umh9zTMNqTFIXpGb5I678EnzjLbNcr3XAogz2btUk55-d5f8VNPD2j8cD5_S4MWGkwSB02Fh1alOIllUTtok58maSoDgB6IqPhaisbpy8xo08THSLHGozJqGVKzMacUQt-OrnpqbKgkrq2T8q96oOeM5CbwkFC59IM6vHUcqVauD8tPNipkfHzEfvwLRlf4xF37tX1kdM3rZATk6w9Dq5gcRwK-d3dUZ73m4_fw7xYcb9gekgZbArhs8RGILoVd8IZlhdl0sc07UMIjIJi_cUx2KS0YNVFp7n5wTqLZ40rkcBOHpcqIe72qxH-FukQ&h=H3gtzUH7QxImKwGlvu5r7VA_gLdMSN6RF809k0gI0pI Cache-Control: - no-cache Content-Length: - - '245' + - '0' Content-Security-Policy: - script-src 'self' - Content-Type: - - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:36:15 GMT + - Wed, 20 May 2026 10:17:36 GMT Expires: - '-1' + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/279587C7-75B4-4113-A01A-5F9FAC9566D8?api-version=2022-07-01-preview&t=639148690570066458&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=BxFdWln5WVRZl6Ozz2Uuinm5YHbG3cPenHs15abCOVq8i20-ogGYxU8TDl2PVge_fTdsEOlqbtZ9w9N2GDOzlp8NijCn_c7fInYzgO5uS4I4pXlLaDdjPtKOn72n4-0TTc9sWRwVE4BTFFwfmpJO1HpKHOTMfiKKWH7UG6oogI_nGI4cTeMLVtnGQgSjF76oQg_HkUSp32IsS0AYP70iesLTS0dC2arhN-zPGxe_DS__CC7Lz7diu7MEwTYN5--tCH0vgpPE9uyU50kBBrSY7HCZR6WSLF9yFEFWrc7eHgqyvrm_QSrmshbwpG2LoMVF0FeAiw9RKE0y9b73rMUerQ&h=hApvnY6UoDIXdweTgI_koQzXONfmyDz8zyEK9yHuq4Q Pragma: - no-cache Strict-Transport-Security: @@ -1812,8 +1127,8 @@ interactions: X-XSS-Protection: - 1; mode=block status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1826,14 +1141,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/8E7AB81F-7BD1-4A1D-8968-E52286CDE49D?api-version=2022-07-01-preview&t=638924817741580050&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=v90MBHElIC_K4Bwanv5PRcWZn7PZpY5SKt7gThhmLYvBWCNAhMhc5-THliSO3ukC4Ud7-RxZRjLOpKdfC-ehK9lojGAKM-1iWWmrstzOGeswW1A8OkvRk-fTHGJIC5xv55p0Q1HjAykpgcrvLhppiTQ8GZ4z_-TqMDpS92-ZMCjkThatwh4-0XRvZ0RD1CW0GRcNutli8CyOHqJiIKE63TXDKvtqTHXpa7XmWhSMjZ7oLaBeDgDLyEO_YR95BPLnOJWDgPOOyRKZuXzpZjV08wnrilngQPdHQUU72HhJ58ufdeEAduPO0EeOo-HJ3noYtDl5sRppl4q9AFThBIBQOQ&h=apDTMZwU_h6Mm4GS0STYxZ5gO0l7lj0_iZPjotBuYtM + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/279587C7-75B4-4113-A01A-5F9FAC9566D8?api-version=2022-07-01-preview&t=639148690569910196&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=cP2Sw50NzyptK1TlhX7jjkS4umh9zTMNqTFIXpGb5I678EnzjLbNcr3XAogz2btUk55-d5f8VNPD2j8cD5_S4MWGkwSB02Fh1alOIllUTtok58maSoDgB6IqPhaisbpy8xo08THSLHGozJqGVKzMacUQt-OrnpqbKgkrq2T8q96oOeM5CbwkFC59IM6vHUcqVauD8tPNipkfHzEfvwLRlf4xF37tX1kdM3rZATk6w9Dq5gcRwK-d3dUZ73m4_fw7xYcb9gekgZbArhs8RGILoVd8IZlhdl0sc07UMIjIJi_cUx2KS0YNVFp7n5wTqLZ40rkcBOHpcqIe72qxH-FukQ&h=H3gtzUH7QxImKwGlvu5r7VA_gLdMSN6RF809k0gI0pI response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/8E7AB81F-7BD1-4A1D-8968-E52286CDE49D", - "name": "8E7AB81F-7BD1-4A1D-8968-E52286CDE49D", "status": "Deleting", "startTime": - "2025-09-03T07:36:13.7630000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/279587C7-75B4-4113-A01A-5F9FAC9566D8", + "name": "279587C7-75B4-4113-A01A-5F9FAC9566D8", "status": "Deleting", "startTime": + "2026-05-20T10:17:36.4300000Z"}' headers: Cache-Control: - no-cache @@ -1844,7 +1159,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:36:17 GMT + - Wed, 20 May 2026 10:17:47 GMT Expires: - '-1' Pragma: @@ -1874,14 +1189,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/8E7AB81F-7BD1-4A1D-8968-E52286CDE49D?api-version=2022-07-01-preview&t=638924817741580050&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=v90MBHElIC_K4Bwanv5PRcWZn7PZpY5SKt7gThhmLYvBWCNAhMhc5-THliSO3ukC4Ud7-RxZRjLOpKdfC-ehK9lojGAKM-1iWWmrstzOGeswW1A8OkvRk-fTHGJIC5xv55p0Q1HjAykpgcrvLhppiTQ8GZ4z_-TqMDpS92-ZMCjkThatwh4-0XRvZ0RD1CW0GRcNutli8CyOHqJiIKE63TXDKvtqTHXpa7XmWhSMjZ7oLaBeDgDLyEO_YR95BPLnOJWDgPOOyRKZuXzpZjV08wnrilngQPdHQUU72HhJ58ufdeEAduPO0EeOo-HJ3noYtDl5sRppl4q9AFThBIBQOQ&h=apDTMZwU_h6Mm4GS0STYxZ5gO0l7lj0_iZPjotBuYtM + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/279587C7-75B4-4113-A01A-5F9FAC9566D8?api-version=2022-07-01-preview&t=639148690569910196&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=cP2Sw50NzyptK1TlhX7jjkS4umh9zTMNqTFIXpGb5I678EnzjLbNcr3XAogz2btUk55-d5f8VNPD2j8cD5_S4MWGkwSB02Fh1alOIllUTtok58maSoDgB6IqPhaisbpy8xo08THSLHGozJqGVKzMacUQt-OrnpqbKgkrq2T8q96oOeM5CbwkFC59IM6vHUcqVauD8tPNipkfHzEfvwLRlf4xF37tX1kdM3rZATk6w9Dq5gcRwK-d3dUZ73m4_fw7xYcb9gekgZbArhs8RGILoVd8IZlhdl0sc07UMIjIJi_cUx2KS0YNVFp7n5wTqLZ40rkcBOHpcqIe72qxH-FukQ&h=H3gtzUH7QxImKwGlvu5r7VA_gLdMSN6RF809k0gI0pI response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/8E7AB81F-7BD1-4A1D-8968-E52286CDE49D", - "name": "8E7AB81F-7BD1-4A1D-8968-E52286CDE49D", "status": "Deleting", "startTime": - "2025-09-03T07:36:13.7630000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/279587C7-75B4-4113-A01A-5F9FAC9566D8", + "name": "279587C7-75B4-4113-A01A-5F9FAC9566D8", "status": "Deleting", "startTime": + "2026-05-20T10:17:36.4300000Z"}' headers: Cache-Control: - no-cache @@ -1892,7 +1207,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:36:21 GMT + - Wed, 20 May 2026 10:17:58 GMT Expires: - '-1' Pragma: @@ -1922,14 +1237,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/8E7AB81F-7BD1-4A1D-8968-E52286CDE49D?api-version=2022-07-01-preview&t=638924817741580050&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=v90MBHElIC_K4Bwanv5PRcWZn7PZpY5SKt7gThhmLYvBWCNAhMhc5-THliSO3ukC4Ud7-RxZRjLOpKdfC-ehK9lojGAKM-1iWWmrstzOGeswW1A8OkvRk-fTHGJIC5xv55p0Q1HjAykpgcrvLhppiTQ8GZ4z_-TqMDpS92-ZMCjkThatwh4-0XRvZ0RD1CW0GRcNutli8CyOHqJiIKE63TXDKvtqTHXpa7XmWhSMjZ7oLaBeDgDLyEO_YR95BPLnOJWDgPOOyRKZuXzpZjV08wnrilngQPdHQUU72HhJ58ufdeEAduPO0EeOo-HJ3noYtDl5sRppl4q9AFThBIBQOQ&h=apDTMZwU_h6Mm4GS0STYxZ5gO0l7lj0_iZPjotBuYtM + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/279587C7-75B4-4113-A01A-5F9FAC9566D8?api-version=2022-07-01-preview&t=639148690569910196&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=cP2Sw50NzyptK1TlhX7jjkS4umh9zTMNqTFIXpGb5I678EnzjLbNcr3XAogz2btUk55-d5f8VNPD2j8cD5_S4MWGkwSB02Fh1alOIllUTtok58maSoDgB6IqPhaisbpy8xo08THSLHGozJqGVKzMacUQt-OrnpqbKgkrq2T8q96oOeM5CbwkFC59IM6vHUcqVauD8tPNipkfHzEfvwLRlf4xF37tX1kdM3rZATk6w9Dq5gcRwK-d3dUZ73m4_fw7xYcb9gekgZbArhs8RGILoVd8IZlhdl0sc07UMIjIJi_cUx2KS0YNVFp7n5wTqLZ40rkcBOHpcqIe72qxH-FukQ&h=H3gtzUH7QxImKwGlvu5r7VA_gLdMSN6RF809k0gI0pI response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/8E7AB81F-7BD1-4A1D-8968-E52286CDE49D", - "name": "8E7AB81F-7BD1-4A1D-8968-E52286CDE49D", "status": "Succeeded", "startTime": - "2025-09-03T07:36:13.7630000Z", "endTime": "2025-09-03T07:36:28.4770000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/279587C7-75B4-4113-A01A-5F9FAC9566D8", + "name": "279587C7-75B4-4113-A01A-5F9FAC9566D8", "status": "Succeeded", "startTime": + "2026-05-20T10:17:36.4300000Z", "endTime": "2026-05-20T10:18:06.3230000Z"}' headers: Cache-Control: - no-cache @@ -1940,7 +1255,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:36:29 GMT + - Wed, 20 May 2026 10:18:09 GMT Expires: - '-1' Pragma: diff --git a/tests/test_commands/recordings/test_commands/test_start/test_start_capacity_without_force_cancel_operation_success.yaml b/tests/test_commands/recordings/test_commands/test_start/test_start_capacity_without_force_cancel_operation_success.yaml index bc338c65b..954e8e840 100644 --- a/tests/test_commands/recordings/test_commands/test_start/test_start_capacity_without_force_cancel_operation_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_start/test_start_capacity_without_force_cancel_operation_success.yaml @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -27,15 +27,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '456' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:37:48 GMT + - Wed, 20 May 2026 10:20:26 GMT Pragma: - no-cache RequestId: - - 0e640160-78c8-44d9-a902-f4966f6b876d + - 6b5c92f6-9003-4247-999c-e5e332c91e24 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -43,7 +43,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -60,11 +60,11 @@ interactions: Connection: - keep-alive Content-Length: - - '149' + - '165' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -75,21 +75,21 @@ interactions: "westeurope", "sku": {"name": "F2", "tier": "Fabric"}}' headers: Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/D3F924AF-2C5E-40D4-8561-BEB52F1D04D2?api-version=2022-07-01-preview&t=638924818714941026&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=FhZiw2PvSbvr576zeYOD2ACm-XV69Ehsujb20AcP7aUMhvsQFYoaElzLZwEU3dW0xoMQm8OescklRCuklRZhvASXTz52HR3a_FnbbB0H5StFmXe3FvAS-g4tjiNiUT7Kx00_rjnsA0hgj5wuwm07AxcUA671668NgwjPlJEPz1tRju4DScO6BU4qzZmuLUw07VPN_RChYfLWYagJOi-b3i7FUlQ0XmCNbvSvJq-Ql8X4hn3peBfFY_1TWUN-1RwrxnwQqhLMf3_9cHoxubR8dessoaRotrbysmGhti0GpKGHuvCk95skb8U5mzrEkJqlwuSKYJcuj4OT9XjaeM2ePw&h=0bUkxTxXGzcg8ZKGVOqkQL3yqKzufqpZuu3i0ylwFck + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/C2605BCF-3411-446E-8450-FD6CCBECA989?api-version=2022-07-01-preview&t=639148692324634126&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=mfffg50a3PfHoA50nY0jf34h-OUL3d9KU_eS2hQFVfIdoMLSghu5nCe6VqxVYlN6AbIgK6o2w4EmhKk_yvIu9zRxD76oZvy_-yH1mnkpMcreqBzKQ-3zr3v-4I-XQ_nFgD-q-i16iSFy0SvGSGUPYvTbry7utzUk-FQ810-NrfCiiqWZAZ7r1D6QJBErkgN_0FjwtuYQn9v_UrDQldrjeIFpSB-RkpE7tSY6v6ONkcOTjx9pR66LzZd93UOS2ekz-JfI24-XFW6HttxfecPSJ6z0D0tPx9zzuMyl3WuxAIjXNfi5PvM07BhNiMMuBuMXIrc4lGus18TEfK0JBUx1cA&h=l95vrLcKuPOsAKDnyw7bj6EQUQQK-YAwbyHEbdtXtSc Cache-Control: - no-cache Content-Length: - - '406' + - '422' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:37:51 GMT + - Wed, 20 May 2026 10:20:31 GMT Expires: - '-1' Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/D3F924AF-2C5E-40D4-8561-BEB52F1D04D2?api-version=2022-07-01-preview&t=638924818714941026&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=dd8qBmLHlfUIdsz_b1SILX7j9qKwfoHiGD3CDTSeKAeXHv8MJcO5sZ5HTBL382lCStmV0HDApLleqxOsDsbdomFi7n4b5mwFSBXK44um4QzXT1fPGkMEabixQC8lDnjxiUdxvw9ACxYlzSH2YxWAcvQK2i7M06Y3aJqIK5gNIEPDX6bSMFdpWrjBOcbsNRuu51IK2Zmd3gnQXZvnmHI8YyON4pafkE1ohZjil8OUw-DL1XGYQjyCMa9pmZzsg2p4zutfLX-9Q0Pd7GW2t6D8I3UgZ8Q3_xOHFDh4nFOaFNOD0LD89-VAKSR1AaBSgkWNn65abvMPW1M-KqBnOMTJZA&h=72Ye35qEhKof632CDuycVD8q3D0B-3qeCN4NHifvWl0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/C2605BCF-3411-446E-8450-FD6CCBECA989?api-version=2022-07-01-preview&t=639148692324789970&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=kPY0n_MDAoyfkiBSdgMWTSkmHriibMg100r6drAEf_bBCzowYnnynHPCuCqebXWUYRimDMNcVi9pZVWg4MdZ2YK23ut5inFeCTtTl0jWfJ452unQsfrUV6wAAZsWtM9OsxIgPlVHMEiv6LBxkwfwdoyJegYGWGDxF1T1T4E8ymsFzwCub8zRV8yZvsTwrnVaiMNnCo1sP4cJif-lWsna6GxIQwj0-Wl4iNBkJo9JXUdVRbLzK9crtBxVVY4AsFMi5e777IVu7COYuyK99w3BynmcX48SaCG_P5lNAwdH3QzMWgZHtFV8OOeSgdaRekud_FQhGhfTDzomZ9aVJDicyA&h=rUh0jJjF2UaZPfZ7sbb5Zft8dTa2V3ZIqkUQA2WdQKE Pragma: - no-cache Strict-Transport-Security: @@ -117,158 +117,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/D3F924AF-2C5E-40D4-8561-BEB52F1D04D2?api-version=2022-07-01-preview&t=638924818714941026&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=FhZiw2PvSbvr576zeYOD2ACm-XV69Ehsujb20AcP7aUMhvsQFYoaElzLZwEU3dW0xoMQm8OescklRCuklRZhvASXTz52HR3a_FnbbB0H5StFmXe3FvAS-g4tjiNiUT7Kx00_rjnsA0hgj5wuwm07AxcUA671668NgwjPlJEPz1tRju4DScO6BU4qzZmuLUw07VPN_RChYfLWYagJOi-b3i7FUlQ0XmCNbvSvJq-Ql8X4hn3peBfFY_1TWUN-1RwrxnwQqhLMf3_9cHoxubR8dessoaRotrbysmGhti0GpKGHuvCk95skb8U5mzrEkJqlwuSKYJcuj4OT9XjaeM2ePw&h=0bUkxTxXGzcg8ZKGVOqkQL3yqKzufqpZuu3i0ylwFck + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/C2605BCF-3411-446E-8450-FD6CCBECA989?api-version=2022-07-01-preview&t=639148692324634126&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=mfffg50a3PfHoA50nY0jf34h-OUL3d9KU_eS2hQFVfIdoMLSghu5nCe6VqxVYlN6AbIgK6o2w4EmhKk_yvIu9zRxD76oZvy_-yH1mnkpMcreqBzKQ-3zr3v-4I-XQ_nFgD-q-i16iSFy0SvGSGUPYvTbry7utzUk-FQ810-NrfCiiqWZAZ7r1D6QJBErkgN_0FjwtuYQn9v_UrDQldrjeIFpSB-RkpE7tSY6v6ONkcOTjx9pR66LzZd93UOS2ekz-JfI24-XFW6HttxfecPSJ6z0D0tPx9zzuMyl3WuxAIjXNfi5PvM07BhNiMMuBuMXIrc4lGus18TEfK0JBUx1cA&h=l95vrLcKuPOsAKDnyw7bj6EQUQQK-YAwbyHEbdtXtSc response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/D3F924AF-2C5E-40D4-8561-BEB52F1D04D2", - "name": "D3F924AF-2C5E-40D4-8561-BEB52F1D04D2", "status": "Provisioning", - "startTime": "2025-09-03T07:37:50.7000000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '249' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:37:51 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/D3F924AF-2C5E-40D4-8561-BEB52F1D04D2?api-version=2022-07-01-preview&t=638924818714941026&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=FhZiw2PvSbvr576zeYOD2ACm-XV69Ehsujb20AcP7aUMhvsQFYoaElzLZwEU3dW0xoMQm8OescklRCuklRZhvASXTz52HR3a_FnbbB0H5StFmXe3FvAS-g4tjiNiUT7Kx00_rjnsA0hgj5wuwm07AxcUA671668NgwjPlJEPz1tRju4DScO6BU4qzZmuLUw07VPN_RChYfLWYagJOi-b3i7FUlQ0XmCNbvSvJq-Ql8X4hn3peBfFY_1TWUN-1RwrxnwQqhLMf3_9cHoxubR8dessoaRotrbysmGhti0GpKGHuvCk95skb8U5mzrEkJqlwuSKYJcuj4OT9XjaeM2ePw&h=0bUkxTxXGzcg8ZKGVOqkQL3yqKzufqpZuu3i0ylwFck - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/D3F924AF-2C5E-40D4-8561-BEB52F1D04D2", - "name": "D3F924AF-2C5E-40D4-8561-BEB52F1D04D2", "status": "Provisioning", - "startTime": "2025-09-03T07:37:50.7000000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '249' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:37:50 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/D3F924AF-2C5E-40D4-8561-BEB52F1D04D2?api-version=2022-07-01-preview&t=638924818714941026&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=FhZiw2PvSbvr576zeYOD2ACm-XV69Ehsujb20AcP7aUMhvsQFYoaElzLZwEU3dW0xoMQm8OescklRCuklRZhvASXTz52HR3a_FnbbB0H5StFmXe3FvAS-g4tjiNiUT7Kx00_rjnsA0hgj5wuwm07AxcUA671668NgwjPlJEPz1tRju4DScO6BU4qzZmuLUw07VPN_RChYfLWYagJOi-b3i7FUlQ0XmCNbvSvJq-Ql8X4hn3peBfFY_1TWUN-1RwrxnwQqhLMf3_9cHoxubR8dessoaRotrbysmGhti0GpKGHuvCk95skb8U5mzrEkJqlwuSKYJcuj4OT9XjaeM2ePw&h=0bUkxTxXGzcg8ZKGVOqkQL3yqKzufqpZuu3i0ylwFck - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/D3F924AF-2C5E-40D4-8561-BEB52F1D04D2", - "name": "D3F924AF-2C5E-40D4-8561-BEB52F1D04D2", "status": "Provisioning", - "startTime": "2025-09-03T07:37:50.7000000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '249' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:37:51 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/D3F924AF-2C5E-40D4-8561-BEB52F1D04D2?api-version=2022-07-01-preview&t=638924818714941026&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=FhZiw2PvSbvr576zeYOD2ACm-XV69Ehsujb20AcP7aUMhvsQFYoaElzLZwEU3dW0xoMQm8OescklRCuklRZhvASXTz52HR3a_FnbbB0H5StFmXe3FvAS-g4tjiNiUT7Kx00_rjnsA0hgj5wuwm07AxcUA671668NgwjPlJEPz1tRju4DScO6BU4qzZmuLUw07VPN_RChYfLWYagJOi-b3i7FUlQ0XmCNbvSvJq-Ql8X4hn3peBfFY_1TWUN-1RwrxnwQqhLMf3_9cHoxubR8dessoaRotrbysmGhti0GpKGHuvCk95skb8U5mzrEkJqlwuSKYJcuj4OT9XjaeM2ePw&h=0bUkxTxXGzcg8ZKGVOqkQL3yqKzufqpZuu3i0ylwFck - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/D3F924AF-2C5E-40D4-8561-BEB52F1D04D2", - "name": "D3F924AF-2C5E-40D4-8561-BEB52F1D04D2", "status": "Succeeded", "startTime": - "2025-09-03T07:37:50.7000000Z", "endTime": "2025-09-03T07:37:53.1900000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/C2605BCF-3411-446E-8450-FD6CCBECA989", + "name": "C2605BCF-3411-446E-8450-FD6CCBECA989", "status": "Succeeded", "startTime": + "2026-05-20T10:20:31.2130000Z", "endTime": "2026-05-20T10:20:34.3530000Z"}' headers: Cache-Control: - no-cache @@ -279,7 +135,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:37:53 GMT + - Wed, 20 May 2026 10:20:43 GMT Expires: - '-1' Pragma: @@ -309,289 +165,42 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": - "Active"}, {"id": "adce8140-11f7-4774-93b7-36fe767586ea", "displayName": "fabcli000001", - "sku": "F2", "region": "West Europe", "state": "Active"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '489' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:37:59 GMT - Pragma: - - no-cache - RequestId: - - f1da41e3-e340-408e-afa7-0b8bcd4d73a8 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/capacities - response: - body: - string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F16", "region": "West Europe", "state": - "Active"}, {"id": "adce8140-11f7-4774-93b7-36fe767586ea", "displayName": "fabcli000001", - "sku": "F2", "region": "West Europe", "state": "Active"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '489' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:38:03 GMT - Pragma: - - no-cache - RequestId: - - c55574e9-2587-4554-8fdf-c50d485808b1 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 - response: - body: - string: '{"properties": {"provisioningState": "Succeeded", "state": "Active", - "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", - "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": - "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '408' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:38:03 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 - response: - body: - string: '{"properties": {"provisioningState": "Succeeded", "state": "Active", - "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", - "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": - "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '408' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:38:04 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - 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.0.0 - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001/suspend?api-version=2023-11-01 - response: - body: - string: '' - headers: - Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/25C4D32C-93A5-4521-9F5C-A52EABF065A5?api-version=2022-07-01-preview&t=638924818853400541&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=eE9_r6M3ptIjRH9xc3LYm5hqzldWDpDof7RhSuXowa309q-tMfDAe16ZFgVnLmbCWhcprkUXl-Okwl7XAGbheJIUtfuraLhLOqr7ff_snErnbE6SrpNaYGP9MQJT8l-Vo0ys5BQtS2mF-EqY0RcVVrnHqwKjFBthTc1bUwBIRe6J6bOVarb-ymYh45TWXYp6ClGvXSqABByI3a_ZDU8o1grA_SoTLHrKTAlyE4Uw0SF2FkDmnUOPb6GkaxpW8VqAX1aRJIfmvgdfbsf2-hebunbchYUYOx4-FOaeeGyxyowKSvY5Sjqq4t4q57H15donETM49uHswKxz-ffNHv4XIQ&h=VIy2XWCod-vFXN-2yCzDTdoXSMqkfu57TW3h0Ofu9ts - Cache-Control: - - no-cache - Content-Length: - - '0' - Content-Security-Policy: - - script-src 'self' - Date: - - Wed, 03 Sep 2025 07:38:04 GMT - Expires: - - '-1' - Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/25C4D32C-93A5-4521-9F5C-A52EABF065A5?api-version=2022-07-01-preview&t=638924818853400541&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=Ihg-PIQm2ab93MxHLEHbf0cbcFDGngME2J2ksPgGb752Mwsenw_YTHh88zQLQRs4JOvyym6gICT1xBkHKc0pBdIeK5_kmPLlgW1RIwpdDID1t1zmvRpab08KJwWModRZNSxwGRGD-k_pmXFQNDX0QPoz8lKo9664u6Up06TU2uv_MeFQqEOa3nAlNko31HK6nDQ3irPtewWBFQhWTqMRkgvbhDh5Q_YQ5GHSvt-eMzY0GV_cFolg3DDoEm7v_8FuF7pS3LPZoDJkaWiqG4NwBPeT7KV_c4urx9BLOG1BUgJ2owZ-tD4rNzmHLMN0ONZpc9kcYu0_zXaEWsdVaIbP5w&h=9qi3mIv2Jm2DqxqFj6OEotT7LMMZsCKdT1vZZNfqba0 - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - 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.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/25C4D32C-93A5-4521-9F5C-A52EABF065A5?api-version=2022-07-01-preview&t=638924818853400541&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=eE9_r6M3ptIjRH9xc3LYm5hqzldWDpDof7RhSuXowa309q-tMfDAe16ZFgVnLmbCWhcprkUXl-Okwl7XAGbheJIUtfuraLhLOqr7ff_snErnbE6SrpNaYGP9MQJT8l-Vo0ys5BQtS2mF-EqY0RcVVrnHqwKjFBthTc1bUwBIRe6J6bOVarb-ymYh45TWXYp6ClGvXSqABByI3a_ZDU8o1grA_SoTLHrKTAlyE4Uw0SF2FkDmnUOPb6GkaxpW8VqAX1aRJIfmvgdfbsf2-hebunbchYUYOx4-FOaeeGyxyowKSvY5Sjqq4t4q57H15donETM49uHswKxz-ffNHv4XIQ&h=VIy2XWCod-vFXN-2yCzDTdoXSMqkfu57TW3h0Ofu9ts - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/25C4D32C-93A5-4521-9F5C-A52EABF065A5", - "name": "25C4D32C-93A5-4521-9F5C-A52EABF065A5", "status": "Pausing", "startTime": - "2025-09-03T07:38:04.7200000Z"}' + string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "b3a0f195-6f2d-458c-9e48-852904927475", "displayName": "fabcli000001", + "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: + Access-Control-Expose-Headers: + - RequestId Cache-Control: - - no-cache + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip Content-Length: - - '244' - Content-Security-Policy: - - script-src 'self' + - '461' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:38:05 GMT - Expires: - - '-1' + - Wed, 20 May 2026 10:20:49 GMT Pragma: - no-cache + RequestId: + - 8ca3e4fa-372c-4639-a9a0-84ac0d396a7d Strict-Transport-Security: - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Frame-Options: - deny - X-XSS-Protection: - - 1; mode=block + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' status: code: 200 message: OK @@ -607,39 +216,42 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/25C4D32C-93A5-4521-9F5C-A52EABF065A5?api-version=2022-07-01-preview&t=638924818853400541&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=eE9_r6M3ptIjRH9xc3LYm5hqzldWDpDof7RhSuXowa309q-tMfDAe16ZFgVnLmbCWhcprkUXl-Okwl7XAGbheJIUtfuraLhLOqr7ff_snErnbE6SrpNaYGP9MQJT8l-Vo0ys5BQtS2mF-EqY0RcVVrnHqwKjFBthTc1bUwBIRe6J6bOVarb-ymYh45TWXYp6ClGvXSqABByI3a_ZDU8o1grA_SoTLHrKTAlyE4Uw0SF2FkDmnUOPb6GkaxpW8VqAX1aRJIfmvgdfbsf2-hebunbchYUYOx4-FOaeeGyxyowKSvY5Sjqq4t4q57H15donETM49uHswKxz-ffNHv4XIQ&h=VIy2XWCod-vFXN-2yCzDTdoXSMqkfu57TW3h0Ofu9ts + uri: https://api.fabric.microsoft.com/v1/capacities response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/25C4D32C-93A5-4521-9F5C-A52EABF065A5", - "name": "25C4D32C-93A5-4521-9F5C-A52EABF065A5", "status": "Pausing", "startTime": - "2025-09-03T07:38:04.7200000Z"}' + string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "b3a0f195-6f2d-458c-9e48-852904927475", "displayName": "fabcli000001", + "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: + Access-Control-Expose-Headers: + - RequestId Cache-Control: - - no-cache + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip Content-Length: - - '244' - Content-Security-Policy: - - script-src 'self' + - '461' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:38:05 GMT - Expires: - - '-1' + - Wed, 20 May 2026 10:20:54 GMT Pragma: - no-cache + RequestId: + - 13539e2a-d23b-4422-a99e-99be061a3071 Strict-Transport-Security: - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Frame-Options: - deny - X-XSS-Protection: - - 1; mode=block + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' status: code: 200 message: OK @@ -655,25 +267,26 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/25C4D32C-93A5-4521-9F5C-A52EABF065A5?api-version=2022-07-01-preview&t=638924818853400541&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=eE9_r6M3ptIjRH9xc3LYm5hqzldWDpDof7RhSuXowa309q-tMfDAe16ZFgVnLmbCWhcprkUXl-Okwl7XAGbheJIUtfuraLhLOqr7ff_snErnbE6SrpNaYGP9MQJT8l-Vo0ys5BQtS2mF-EqY0RcVVrnHqwKjFBthTc1bUwBIRe6J6bOVarb-ymYh45TWXYp6ClGvXSqABByI3a_ZDU8o1grA_SoTLHrKTAlyE4Uw0SF2FkDmnUOPb6GkaxpW8VqAX1aRJIfmvgdfbsf2-hebunbchYUYOx4-FOaeeGyxyowKSvY5Sjqq4t4q57H15donETM49uHswKxz-ffNHv4XIQ&h=VIy2XWCod-vFXN-2yCzDTdoXSMqkfu57TW3h0Ofu9ts + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/25C4D32C-93A5-4521-9F5C-A52EABF065A5", - "name": "25C4D32C-93A5-4521-9F5C-A52EABF065A5", "status": "Pausing", "startTime": - "2025-09-03T07:38:04.7200000Z"}' + string: '{"properties": {"provisioningState": "Succeeded", "state": "Active", + "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", + "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": + "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}' headers: Cache-Control: - no-cache Content-Length: - - '244' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:38:05 GMT + - Wed, 20 May 2026 10:20:55 GMT Expires: - '-1' Pragma: @@ -703,25 +316,26 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/25C4D32C-93A5-4521-9F5C-A52EABF065A5?api-version=2022-07-01-preview&t=638924818853400541&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=eE9_r6M3ptIjRH9xc3LYm5hqzldWDpDof7RhSuXowa309q-tMfDAe16ZFgVnLmbCWhcprkUXl-Okwl7XAGbheJIUtfuraLhLOqr7ff_snErnbE6SrpNaYGP9MQJT8l-Vo0ys5BQtS2mF-EqY0RcVVrnHqwKjFBthTc1bUwBIRe6J6bOVarb-ymYh45TWXYp6ClGvXSqABByI3a_ZDU8o1grA_SoTLHrKTAlyE4Uw0SF2FkDmnUOPb6GkaxpW8VqAX1aRJIfmvgdfbsf2-hebunbchYUYOx4-FOaeeGyxyowKSvY5Sjqq4t4q57H15donETM49uHswKxz-ffNHv4XIQ&h=VIy2XWCod-vFXN-2yCzDTdoXSMqkfu57TW3h0Ofu9ts + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/25C4D32C-93A5-4521-9F5C-A52EABF065A5", - "name": "25C4D32C-93A5-4521-9F5C-A52EABF065A5", "status": "Pausing", "startTime": - "2025-09-03T07:38:04.7200000Z"}' + string: '{"properties": {"provisioningState": "Succeeded", "state": "Active", + "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", + "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": + "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}' headers: Cache-Control: - no-cache Content-Length: - - '244' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:38:08 GMT + - Wed, 20 May 2026 10:20:57 GMT Expires: - '-1' Pragma: @@ -748,30 +362,32 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Length: + - '0' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/25C4D32C-93A5-4521-9F5C-A52EABF065A5?api-version=2022-07-01-preview&t=638924818853400541&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=eE9_r6M3ptIjRH9xc3LYm5hqzldWDpDof7RhSuXowa309q-tMfDAe16ZFgVnLmbCWhcprkUXl-Okwl7XAGbheJIUtfuraLhLOqr7ff_snErnbE6SrpNaYGP9MQJT8l-Vo0ys5BQtS2mF-EqY0RcVVrnHqwKjFBthTc1bUwBIRe6J6bOVarb-ymYh45TWXYp6ClGvXSqABByI3a_ZDU8o1grA_SoTLHrKTAlyE4Uw0SF2FkDmnUOPb6GkaxpW8VqAX1aRJIfmvgdfbsf2-hebunbchYUYOx4-FOaeeGyxyowKSvY5Sjqq4t4q57H15donETM49uHswKxz-ffNHv4XIQ&h=VIy2XWCod-vFXN-2yCzDTdoXSMqkfu57TW3h0Ofu9ts + - ms-fabric-cli-test/1.6.1 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001/suspend?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/25C4D32C-93A5-4521-9F5C-A52EABF065A5", - "name": "25C4D32C-93A5-4521-9F5C-A52EABF065A5", "status": "Pausing", "startTime": - "2025-09-03T07:38:04.7200000Z"}' + string: '' headers: + Azure-AsyncOperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/C4E71572-E8D0-4BB8-B959-2E4061870230?api-version=2022-07-01-preview&t=639148692590727920&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=0B-29OIMp8UrnKgg_sBqsVwFBIIYGagC6LzZ55pA0GYniP4KhIWCeuAYwWdR92sJqIBs1F0dnDxlWBeh0VKpAfJ3kDkCPAX920SYSc7msAeugkKZl_mxjg13OEAI1m9nDnlIwHQz2jojlamSPTA5VlImC9X8Kv21ZTx6EAhc3CUhu7HgNUFm8ihsfI7L4Wbs8cT-wAyxhpc2KunzAp-BDd77cIlvSL1FTWuSAZlKiQ55Xpv6O2yPzf5orG5f8i8x-RzaIrKTI9EOsZeM-FQExECbVZ86j-iSrOt0jTa-59GHLnVAhAH7BHZ8Eh1e8Trh8BA0eR20-S8lvomIKYvZxA&h=v-XsPSAfWqtVOKahD30SeSbkTLt2nEpzsJ8HmWSruWU Cache-Control: - no-cache Content-Length: - - '244' + - '0' Content-Security-Policy: - script-src 'self' - Content-Type: - - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:38:11 GMT + - Wed, 20 May 2026 10:20:58 GMT Expires: - '-1' + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/C4E71572-E8D0-4BB8-B959-2E4061870230?api-version=2022-07-01-preview&t=639148692590727920&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=FjOpZFZfDBmhAnsF0XN8fY6QvzhfxmM7OWOMDXnEMNrIQmJG4p_44O6Rqq2uk5uPsniSR2jKmBht2Vt_QhgTClnBH5eJ4xuWQoVBbcji5S5yijs1XGHuOgMHsp8DYWFsfo3kwkoQ9F5BigaeVKeXajL9LS-R3lkgj942lpH_Wj0f6dNdNeFSj3AJz9DCZo2yTNtq625oS2eBdJCdszdFCdbyevFT6p2vnAZ1T2yhOPlIhCtCdNhPbtBC81CvqD9481ciYf7i4oFFDkVFEWjKnBtaBLS1RRH-a3CFDFw6gPbiIaPk1wHd3OcFi74tUzJnu0quXtYv4w9a7wj1svEpig&h=i4WODWS-vsvrk4zStAIjjNMdLyDE4YqSaeFST29CZDY Pragma: - no-cache Strict-Transport-Security: @@ -785,8 +401,8 @@ interactions: X-XSS-Protection: - 1; mode=block status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -799,14 +415,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/25C4D32C-93A5-4521-9F5C-A52EABF065A5?api-version=2022-07-01-preview&t=638924818853400541&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=eE9_r6M3ptIjRH9xc3LYm5hqzldWDpDof7RhSuXowa309q-tMfDAe16ZFgVnLmbCWhcprkUXl-Okwl7XAGbheJIUtfuraLhLOqr7ff_snErnbE6SrpNaYGP9MQJT8l-Vo0ys5BQtS2mF-EqY0RcVVrnHqwKjFBthTc1bUwBIRe6J6bOVarb-ymYh45TWXYp6ClGvXSqABByI3a_ZDU8o1grA_SoTLHrKTAlyE4Uw0SF2FkDmnUOPb6GkaxpW8VqAX1aRJIfmvgdfbsf2-hebunbchYUYOx4-FOaeeGyxyowKSvY5Sjqq4t4q57H15donETM49uHswKxz-ffNHv4XIQ&h=VIy2XWCod-vFXN-2yCzDTdoXSMqkfu57TW3h0Ofu9ts + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/C4E71572-E8D0-4BB8-B959-2E4061870230?api-version=2022-07-01-preview&t=639148692590727920&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=0B-29OIMp8UrnKgg_sBqsVwFBIIYGagC6LzZ55pA0GYniP4KhIWCeuAYwWdR92sJqIBs1F0dnDxlWBeh0VKpAfJ3kDkCPAX920SYSc7msAeugkKZl_mxjg13OEAI1m9nDnlIwHQz2jojlamSPTA5VlImC9X8Kv21ZTx6EAhc3CUhu7HgNUFm8ihsfI7L4Wbs8cT-wAyxhpc2KunzAp-BDd77cIlvSL1FTWuSAZlKiQ55Xpv6O2yPzf5orG5f8i8x-RzaIrKTI9EOsZeM-FQExECbVZ86j-iSrOt0jTa-59GHLnVAhAH7BHZ8Eh1e8Trh8BA0eR20-S8lvomIKYvZxA&h=v-XsPSAfWqtVOKahD30SeSbkTLt2nEpzsJ8HmWSruWU response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/25C4D32C-93A5-4521-9F5C-A52EABF065A5", - "name": "25C4D32C-93A5-4521-9F5C-A52EABF065A5", "status": "Pausing", "startTime": - "2025-09-03T07:38:04.7200000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/C4E71572-E8D0-4BB8-B959-2E4061870230", + "name": "C4E71572-E8D0-4BB8-B959-2E4061870230", "status": "Pausing", "startTime": + "2026-05-20T10:20:58.4400000Z"}' headers: Cache-Control: - no-cache @@ -817,7 +433,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:38:19 GMT + - Wed, 20 May 2026 10:21:09 GMT Expires: - '-1' Pragma: @@ -847,14 +463,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/25C4D32C-93A5-4521-9F5C-A52EABF065A5?api-version=2022-07-01-preview&t=638924818853400541&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=eE9_r6M3ptIjRH9xc3LYm5hqzldWDpDof7RhSuXowa309q-tMfDAe16ZFgVnLmbCWhcprkUXl-Okwl7XAGbheJIUtfuraLhLOqr7ff_snErnbE6SrpNaYGP9MQJT8l-Vo0ys5BQtS2mF-EqY0RcVVrnHqwKjFBthTc1bUwBIRe6J6bOVarb-ymYh45TWXYp6ClGvXSqABByI3a_ZDU8o1grA_SoTLHrKTAlyE4Uw0SF2FkDmnUOPb6GkaxpW8VqAX1aRJIfmvgdfbsf2-hebunbchYUYOx4-FOaeeGyxyowKSvY5Sjqq4t4q57H15donETM49uHswKxz-ffNHv4XIQ&h=VIy2XWCod-vFXN-2yCzDTdoXSMqkfu57TW3h0Ofu9ts + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/C4E71572-E8D0-4BB8-B959-2E4061870230?api-version=2022-07-01-preview&t=639148692590727920&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=0B-29OIMp8UrnKgg_sBqsVwFBIIYGagC6LzZ55pA0GYniP4KhIWCeuAYwWdR92sJqIBs1F0dnDxlWBeh0VKpAfJ3kDkCPAX920SYSc7msAeugkKZl_mxjg13OEAI1m9nDnlIwHQz2jojlamSPTA5VlImC9X8Kv21ZTx6EAhc3CUhu7HgNUFm8ihsfI7L4Wbs8cT-wAyxhpc2KunzAp-BDd77cIlvSL1FTWuSAZlKiQ55Xpv6O2yPzf5orG5f8i8x-RzaIrKTI9EOsZeM-FQExECbVZ86j-iSrOt0jTa-59GHLnVAhAH7BHZ8Eh1e8Trh8BA0eR20-S8lvomIKYvZxA&h=v-XsPSAfWqtVOKahD30SeSbkTLt2nEpzsJ8HmWSruWU response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/25C4D32C-93A5-4521-9F5C-A52EABF065A5", - "name": "25C4D32C-93A5-4521-9F5C-A52EABF065A5", "status": "Succeeded", "startTime": - "2025-09-03T07:38:04.7200000Z", "endTime": "2025-09-03T07:38:28.4030000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/C4E71572-E8D0-4BB8-B959-2E4061870230", + "name": "C4E71572-E8D0-4BB8-B959-2E4061870230", "status": "Succeeded", "startTime": + "2026-05-20T10:20:58.4400000Z", "endTime": "2026-05-20T10:21:17.2900000Z"}' headers: Cache-Control: - no-cache @@ -865,7 +481,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:38:35 GMT + - Wed, 20 May 2026 10:21:19 GMT Expires: - '-1' Pragma: @@ -895,15 +511,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: body: - string: '{"value": [{"id": "adce8140-11f7-4774-93b7-36fe767586ea", "displayName": + string: '{"value": [{"id": "b3a0f195-6f2d-458c-9e48-852904927475", "displayName": "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Inactive"}, {"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", - "sku": "F16", "region": "West Europe", "state": "Active"}]}' + "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -912,15 +528,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '489' + - '466' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:38:39 GMT + - Wed, 20 May 2026 10:21:25 GMT Pragma: - no-cache RequestId: - - 6c460b3a-37b5-4e0e-b51b-377f0b4722b3 + - f6c2558f-7de6-4b92-bf67-60c835ee6cea Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -928,7 +544,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -946,7 +562,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -959,13 +575,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:38:39 GMT + - Wed, 20 May 2026 10:21:27 GMT Expires: - '-1' Pragma: @@ -995,7 +611,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -1008,13 +624,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:38:39 GMT + - Wed, 20 May 2026 10:21:27 GMT Expires: - '-1' Pragma: @@ -1044,15 +660,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: body: - string: '{"value": [{"id": "adce8140-11f7-4774-93b7-36fe767586ea", "displayName": - "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Inactive"}, - {"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", - "sku": "F16", "region": "West Europe", "state": "Active"}]}' + string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "b3a0f195-6f2d-458c-9e48-852904927475", "displayName": "fabcli000001", + "sku": "F2", "region": "West Europe", "state": "Inactive"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1061,15 +677,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '489' + - '469' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:38:44 GMT + - Wed, 20 May 2026 10:21:32 GMT Pragma: - no-cache RequestId: - - f6eebde3-9e01-438c-b9e2-5429f45ac348 + - ced067d7-0791-4d30-8bbb-880452c01aaf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1077,7 +693,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -1095,15 +711,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: body: - string: '{"value": [{"id": "adce8140-11f7-4774-93b7-36fe767586ea", "displayName": - "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Inactive"}, - {"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", - "sku": "F16", "region": "West Europe", "state": "Active"}]}' + string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "b3a0f195-6f2d-458c-9e48-852904927475", "displayName": "fabcli000001", + "sku": "F2", "region": "West Europe", "state": "Inactive"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1112,15 +728,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '489' + - '469' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:38:49 GMT + - Wed, 20 May 2026 10:21:38 GMT Pragma: - no-cache RequestId: - - f28a5ec3-38a3-4b9e-bcef-01d24e22c9e9 + - a4781d72-5b26-4c39-8af5-5c775117fd7e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1128,7 +744,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -1146,7 +762,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -1159,13 +775,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:38:49 GMT + - Wed, 20 May 2026 10:21:38 GMT Expires: - '-1' Pragma: @@ -1195,7 +811,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -1208,13 +824,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:38:50 GMT + - Wed, 20 May 2026 10:21:40 GMT Expires: - '-1' Pragma: @@ -1244,15 +860,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: body: - string: '{"value": [{"id": "adce8140-11f7-4774-93b7-36fe767586ea", "displayName": + string: '{"value": [{"id": "b3a0f195-6f2d-458c-9e48-852904927475", "displayName": "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Inactive"}, {"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", - "sku": "F16", "region": "West Europe", "state": "Active"}]}' + "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1261,15 +877,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '489' + - '466' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:38:56 GMT + - Wed, 20 May 2026 10:21:45 GMT Pragma: - no-cache RequestId: - - 28b0654a-68b0-4776-94c5-bfcbd5c04a15 + - 6ce80632-f415-43eb-836a-f8249f788726 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1277,7 +893,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -1295,124 +911,24 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions?api-version=2022-12-01 - response: - body: - string: '{"value": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000"}], - "count": {"type": "Total", "value": 1}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '479' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:38:56 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/capacities?api-version=2023-11-01 + uri: https://management.azure.com/subscriptions/placeholder/resourceGroups/placeholder/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: body: - string: '{"value": [{"properties": {"provisioningState": "Succeeded", "state": - "Active", "administration": {"members": ["mocked@admin_test_user"]}}, "id": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/mocked_fabriccli_capacity_name", - "name": "mocked_fabriccli_capacity_name", "type": "Microsoft.Fabric/capacities", - "location": "West Europe", "sku": {"name": "F16", "tier": "Fabric"}, "tags": - {}}, {"properties": {"provisioningState": "Succeeded", "state": "Paused", - "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", - "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": - "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}]}' + string: '{"error": {"code": "InvalidSubscriptionId", "message": "The provided + subscription identifier ''placeholder'' is malformed or invalid."}}' headers: Cache-Control: - no-cache Content-Length: - - '2480' - Content-Security-Policy: - - script-src 'self' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:38:57 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - 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.0.0 - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 - response: - body: - string: '' - headers: - Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/188062D2-30DC-49B1-BCA7-9F6FD1E986E7?api-version=2022-07-01-preview&t=638924819391435350&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=JX_9xxhIP7qOUDIa8seBeJk_9zrCQdraC36IhJWNt3QmIYftB9PURXtMtWpd9GEqUG3N_2_Vk2In-lCpYo8HzEpJXlzXsazwollz9MVMGC4Yl_6JJUi0DkLTFaue_QU3FkPSllr7DDgqZlwKrPIxssByfVj1G56FCRja8j6RDy4Y0-AykvLKOrDxcw3HT63CFNs_wdfRt2Xcb4mGnIW8fNON2wyEb-y7YhFuByTfBZC_9aHwMFGE26dsasmUuBtCgv_ILD6e0o4wiQoE5z3Zqok_40QIgFYw6FFeIH0ICxm_DzObHK28zZ6OXuvliBiojbl0mBHO2xsEtmNNuGBLrQ&h=rZVDJZMDxR630NKOCPYS0loEcLU55DiNYc3mGxKLglc - Cache-Control: - - no-cache - Content-Length: - - '0' - Content-Security-Policy: - - script-src 'self' - Date: - - Wed, 03 Sep 2025 07:38:58 GMT + - Wed, 20 May 2026 10:21:45 GMT Expires: - '-1' - Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/188062D2-30DC-49B1-BCA7-9F6FD1E986E7?api-version=2022-07-01-preview&t=638924819391435350&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=naVBByO8NTpd-oBimsSgfjxcqaPRQ4M-7ZCM5OFd2J1u3rYJ0jEAEWqLmj9TSgl8kkGvOmk0yv7xiHH15f0r5F2CidEszWiyZi-qaQ8JuVQlqyCHnTFgjwOArRkOISr7z1RT8yh3ggqtBD6pzbhgDnsSWAIHLg7EO6Y3mtds7PRkKHfEO2UgmyKviLVt89-64EfUpCPGMRlkW18fnAxL29wSosHnXFW7F6AdpZl2Y5oJGT8J3jeZY6CPnTCqJ69acmwcogldLPt0RTxIM1G6x3RJLdWA0EPY8-OeQ-rDxxKX8lU7SLco5IHvamKFL85Jr3XKraGHJUQ7GqbIYsgSdg&h=zaJh6z1tdwp0IKBg9LAGkORt9tnsCNpX0_ynr_4H5CE Pragma: - no-cache Strict-Transport-Security: @@ -1421,13 +937,9 @@ interactions: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block status: - code: 202 - message: Accepted + code: 400 + message: Bad Request - request: body: null headers: @@ -1440,25 +952,22 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/188062D2-30DC-49B1-BCA7-9F6FD1E986E7?api-version=2022-07-01-preview&t=638924819391435350&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=JX_9xxhIP7qOUDIa8seBeJk_9zrCQdraC36IhJWNt3QmIYftB9PURXtMtWpd9GEqUG3N_2_Vk2In-lCpYo8HzEpJXlzXsazwollz9MVMGC4Yl_6JJUi0DkLTFaue_QU3FkPSllr7DDgqZlwKrPIxssByfVj1G56FCRja8j6RDy4Y0-AykvLKOrDxcw3HT63CFNs_wdfRt2Xcb4mGnIW8fNON2wyEb-y7YhFuByTfBZC_9aHwMFGE26dsasmUuBtCgv_ILD6e0o4wiQoE5z3Zqok_40QIgFYw6FFeIH0ICxm_DzObHK28zZ6OXuvliBiojbl0mBHO2xsEtmNNuGBLrQ&h=rZVDJZMDxR630NKOCPYS0loEcLU55DiNYc3mGxKLglc + uri: https://management.azure.com/subscriptions?api-version=2022-12-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/188062D2-30DC-49B1-BCA7-9F6FD1E986E7", - "name": "188062D2-30DC-49B1-BCA7-9F6FD1E986E7", "status": "Deleting", "startTime": - "2025-09-03T07:38:58.5530000Z"}' + string: '{"value": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000"}], + "count": {"type": "Total", "value": 1}}' headers: Cache-Control: - no-cache Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' + - '469' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:38:59 GMT + - Wed, 20 May 2026 10:21:45 GMT Expires: - '-1' Pragma: @@ -1469,10 +978,6 @@ interactions: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block status: code: 200 message: OK @@ -1488,25 +993,29 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/188062D2-30DC-49B1-BCA7-9F6FD1E986E7?api-version=2022-07-01-preview&t=638924819391435350&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=JX_9xxhIP7qOUDIa8seBeJk_9zrCQdraC36IhJWNt3QmIYftB9PURXtMtWpd9GEqUG3N_2_Vk2In-lCpYo8HzEpJXlzXsazwollz9MVMGC4Yl_6JJUi0DkLTFaue_QU3FkPSllr7DDgqZlwKrPIxssByfVj1G56FCRja8j6RDy4Y0-AykvLKOrDxcw3HT63CFNs_wdfRt2Xcb4mGnIW8fNON2wyEb-y7YhFuByTfBZC_9aHwMFGE26dsasmUuBtCgv_ILD6e0o4wiQoE5z3Zqok_40QIgFYw6FFeIH0ICxm_DzObHK28zZ6OXuvliBiojbl0mBHO2xsEtmNNuGBLrQ&h=rZVDJZMDxR630NKOCPYS0loEcLU55DiNYc3mGxKLglc + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/capacities?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/188062D2-30DC-49B1-BCA7-9F6FD1E986E7", - "name": "188062D2-30DC-49B1-BCA7-9F6FD1E986E7", "status": "Deleting", "startTime": - "2025-09-03T07:38:58.5530000Z"}' + string: '{"value": [{"properties": {"provisioningState": "Succeeded", "state": + "Active", "administration": {"members": ["mocked@admin_test_user", "4fdd0762-85fe-4f8b-90dc-776e8605e0b9"]}}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/mocked_fabriccli_capacity_name", + "name": "mocked_fabriccli_capacity_name", "type": "Microsoft.Fabric/capacities", + "location": "Central US", "sku": {"name": "F16", "tier": "Fabric"}, "tags": + {}}, {"properties": {"provisioningState": "Succeeded", "state": "Paused", + "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", + "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": + "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}]}' headers: Cache-Control: - no-cache Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' + - '2562' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:38:58 GMT + - Wed, 20 May 2026 10:21:46 GMT Expires: - '-1' Pragma: @@ -1517,10 +1026,6 @@ interactions: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block status: code: 200 message: OK @@ -1533,78 +1038,32 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/188062D2-30DC-49B1-BCA7-9F6FD1E986E7?api-version=2022-07-01-preview&t=638924819391435350&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=JX_9xxhIP7qOUDIa8seBeJk_9zrCQdraC36IhJWNt3QmIYftB9PURXtMtWpd9GEqUG3N_2_Vk2In-lCpYo8HzEpJXlzXsazwollz9MVMGC4Yl_6JJUi0DkLTFaue_QU3FkPSllr7DDgqZlwKrPIxssByfVj1G56FCRja8j6RDy4Y0-AykvLKOrDxcw3HT63CFNs_wdfRt2Xcb4mGnIW8fNON2wyEb-y7YhFuByTfBZC_9aHwMFGE26dsasmUuBtCgv_ILD6e0o4wiQoE5z3Zqok_40QIgFYw6FFeIH0ICxm_DzObHK28zZ6OXuvliBiojbl0mBHO2xsEtmNNuGBLrQ&h=rZVDJZMDxR630NKOCPYS0loEcLU55DiNYc3mGxKLglc - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/188062D2-30DC-49B1-BCA7-9F6FD1E986E7", - "name": "188062D2-30DC-49B1-BCA7-9F6FD1E986E7", "status": "Deleting", "startTime": - "2025-09-03T07:38:58.5530000Z"}' - headers: - Cache-Control: - - no-cache Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:38:59 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive + - '0' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/188062D2-30DC-49B1-BCA7-9F6FD1E986E7?api-version=2022-07-01-preview&t=638924819391435350&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=JX_9xxhIP7qOUDIa8seBeJk_9zrCQdraC36IhJWNt3QmIYftB9PURXtMtWpd9GEqUG3N_2_Vk2In-lCpYo8HzEpJXlzXsazwollz9MVMGC4Yl_6JJUi0DkLTFaue_QU3FkPSllr7DDgqZlwKrPIxssByfVj1G56FCRja8j6RDy4Y0-AykvLKOrDxcw3HT63CFNs_wdfRt2Xcb4mGnIW8fNON2wyEb-y7YhFuByTfBZC_9aHwMFGE26dsasmUuBtCgv_ILD6e0o4wiQoE5z3Zqok_40QIgFYw6FFeIH0ICxm_DzObHK28zZ6OXuvliBiojbl0mBHO2xsEtmNNuGBLrQ&h=rZVDJZMDxR630NKOCPYS0loEcLU55DiNYc3mGxKLglc + - ms-fabric-cli-test/1.6.1 + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/188062D2-30DC-49B1-BCA7-9F6FD1E986E7", - "name": "188062D2-30DC-49B1-BCA7-9F6FD1E986E7", "status": "Deleting", "startTime": - "2025-09-03T07:38:58.5530000Z"}' + string: '' headers: + Azure-AsyncOperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/15AD56F9-B355-48C0-91B2-790EA0B3BDB2?api-version=2022-07-01-preview&t=639148693090517974&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=IOAVfceo2Taay0DEQ1NoFT3KXwtU1qZCytcodZjncqFNNeeEnySmHxK4bzqS2-hT38RMslj9nEVIK04RNPK5sc3-TI-uSXTP9KNy-YupzuUFwIiPGIw7JmFpXyWxKnSEpI_XwAOC2Rb4xqW19K9ggVTRhm9TD-UrSAZFFiBCoPZnNDIK4nF9tAmjg4fFOJnW566GKMs8AJ4YFrxbxO7fX9jVh6oSluRPNoXKpVIcRvE57ydMzob8ieqDT7fSBo9cqJX685omZ2if9eZhh8GuBHp6aKTtt0KLK6nXAWciwl6Q09iBVwDMfMAZEj-4fS7NJWTGgHMQM1454InK14Q-tw&h=-nxTVc1jThKdYkI28WX2a24xtMQrrNYqBJvHLHigLV0 Cache-Control: - no-cache Content-Length: - - '245' + - '0' Content-Security-Policy: - script-src 'self' - Content-Type: - - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:39:02 GMT + - Wed, 20 May 2026 10:21:48 GMT Expires: - '-1' + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/15AD56F9-B355-48C0-91B2-790EA0B3BDB2?api-version=2022-07-01-preview&t=639148693090674233&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=b45hhIEM3PEiiAOISQZbzmE-Bn6Fu0wnsfS_JUuwdEb5yzavu0GlIuEqXsGbGTWyRXXsFfHJyQDTqDj2uXCxsnokeTTT2fsYstF6ECNylSGybERqqawrLAnBzVizPQ5d6eoQfgjcl8yLV00-PFPNzkIo4VUa_hycaCNfZh0j5mJSq_Aj1FYpSya65Dyt-0ZwOjJE0_thjHQoEydUWLEF5ViOG20fEuh2erMIP8cfwTCDk2VOKQyD88xnWIa3lc4qYpk59wF_kjo_rnsir98sVHceNQZCQgVccLexbaY_vjpIpHHW240sSV_UuPv8eCSMfxPdbQYahSW1XkVUJSTWUA&h=RkrsKOxUOAX4CHKCsw6osbj0omJPk5oh8IHLC1SbszM Pragma: - no-cache Strict-Transport-Security: @@ -1618,8 +1077,8 @@ interactions: X-XSS-Protection: - 1; mode=block status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1632,14 +1091,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/188062D2-30DC-49B1-BCA7-9F6FD1E986E7?api-version=2022-07-01-preview&t=638924819391435350&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=JX_9xxhIP7qOUDIa8seBeJk_9zrCQdraC36IhJWNt3QmIYftB9PURXtMtWpd9GEqUG3N_2_Vk2In-lCpYo8HzEpJXlzXsazwollz9MVMGC4Yl_6JJUi0DkLTFaue_QU3FkPSllr7DDgqZlwKrPIxssByfVj1G56FCRja8j6RDy4Y0-AykvLKOrDxcw3HT63CFNs_wdfRt2Xcb4mGnIW8fNON2wyEb-y7YhFuByTfBZC_9aHwMFGE26dsasmUuBtCgv_ILD6e0o4wiQoE5z3Zqok_40QIgFYw6FFeIH0ICxm_DzObHK28zZ6OXuvliBiojbl0mBHO2xsEtmNNuGBLrQ&h=rZVDJZMDxR630NKOCPYS0loEcLU55DiNYc3mGxKLglc + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/15AD56F9-B355-48C0-91B2-790EA0B3BDB2?api-version=2022-07-01-preview&t=639148693090517974&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=IOAVfceo2Taay0DEQ1NoFT3KXwtU1qZCytcodZjncqFNNeeEnySmHxK4bzqS2-hT38RMslj9nEVIK04RNPK5sc3-TI-uSXTP9KNy-YupzuUFwIiPGIw7JmFpXyWxKnSEpI_XwAOC2Rb4xqW19K9ggVTRhm9TD-UrSAZFFiBCoPZnNDIK4nF9tAmjg4fFOJnW566GKMs8AJ4YFrxbxO7fX9jVh6oSluRPNoXKpVIcRvE57ydMzob8ieqDT7fSBo9cqJX685omZ2if9eZhh8GuBHp6aKTtt0KLK6nXAWciwl6Q09iBVwDMfMAZEj-4fS7NJWTGgHMQM1454InK14Q-tw&h=-nxTVc1jThKdYkI28WX2a24xtMQrrNYqBJvHLHigLV0 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/188062D2-30DC-49B1-BCA7-9F6FD1E986E7", - "name": "188062D2-30DC-49B1-BCA7-9F6FD1E986E7", "status": "Deleting", "startTime": - "2025-09-03T07:38:58.5530000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/15AD56F9-B355-48C0-91B2-790EA0B3BDB2", + "name": "15AD56F9-B355-48C0-91B2-790EA0B3BDB2", "status": "Deleting", "startTime": + "2026-05-20T10:21:48.4300000Z"}' headers: Cache-Control: - no-cache @@ -1650,7 +1109,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:39:05 GMT + - Wed, 20 May 2026 10:21:58 GMT Expires: - '-1' Pragma: @@ -1680,14 +1139,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/188062D2-30DC-49B1-BCA7-9F6FD1E986E7?api-version=2022-07-01-preview&t=638924819391435350&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=JX_9xxhIP7qOUDIa8seBeJk_9zrCQdraC36IhJWNt3QmIYftB9PURXtMtWpd9GEqUG3N_2_Vk2In-lCpYo8HzEpJXlzXsazwollz9MVMGC4Yl_6JJUi0DkLTFaue_QU3FkPSllr7DDgqZlwKrPIxssByfVj1G56FCRja8j6RDy4Y0-AykvLKOrDxcw3HT63CFNs_wdfRt2Xcb4mGnIW8fNON2wyEb-y7YhFuByTfBZC_9aHwMFGE26dsasmUuBtCgv_ILD6e0o4wiQoE5z3Zqok_40QIgFYw6FFeIH0ICxm_DzObHK28zZ6OXuvliBiojbl0mBHO2xsEtmNNuGBLrQ&h=rZVDJZMDxR630NKOCPYS0loEcLU55DiNYc3mGxKLglc + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/15AD56F9-B355-48C0-91B2-790EA0B3BDB2?api-version=2022-07-01-preview&t=639148693090517974&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=IOAVfceo2Taay0DEQ1NoFT3KXwtU1qZCytcodZjncqFNNeeEnySmHxK4bzqS2-hT38RMslj9nEVIK04RNPK5sc3-TI-uSXTP9KNy-YupzuUFwIiPGIw7JmFpXyWxKnSEpI_XwAOC2Rb4xqW19K9ggVTRhm9TD-UrSAZFFiBCoPZnNDIK4nF9tAmjg4fFOJnW566GKMs8AJ4YFrxbxO7fX9jVh6oSluRPNoXKpVIcRvE57ydMzob8ieqDT7fSBo9cqJX685omZ2if9eZhh8GuBHp6aKTtt0KLK6nXAWciwl6Q09iBVwDMfMAZEj-4fS7NJWTGgHMQM1454InK14Q-tw&h=-nxTVc1jThKdYkI28WX2a24xtMQrrNYqBJvHLHigLV0 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/188062D2-30DC-49B1-BCA7-9F6FD1E986E7", - "name": "188062D2-30DC-49B1-BCA7-9F6FD1E986E7", "status": "Deleting", "startTime": - "2025-09-03T07:38:58.5530000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/15AD56F9-B355-48C0-91B2-790EA0B3BDB2", + "name": "15AD56F9-B355-48C0-91B2-790EA0B3BDB2", "status": "Deleting", "startTime": + "2026-05-20T10:21:48.4300000Z"}' headers: Cache-Control: - no-cache @@ -1698,7 +1157,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:39:14 GMT + - Wed, 20 May 2026 10:22:09 GMT Expires: - '-1' Pragma: @@ -1728,14 +1187,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/188062D2-30DC-49B1-BCA7-9F6FD1E986E7?api-version=2022-07-01-preview&t=638924819391435350&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=JX_9xxhIP7qOUDIa8seBeJk_9zrCQdraC36IhJWNt3QmIYftB9PURXtMtWpd9GEqUG3N_2_Vk2In-lCpYo8HzEpJXlzXsazwollz9MVMGC4Yl_6JJUi0DkLTFaue_QU3FkPSllr7DDgqZlwKrPIxssByfVj1G56FCRja8j6RDy4Y0-AykvLKOrDxcw3HT63CFNs_wdfRt2Xcb4mGnIW8fNON2wyEb-y7YhFuByTfBZC_9aHwMFGE26dsasmUuBtCgv_ILD6e0o4wiQoE5z3Zqok_40QIgFYw6FFeIH0ICxm_DzObHK28zZ6OXuvliBiojbl0mBHO2xsEtmNNuGBLrQ&h=rZVDJZMDxR630NKOCPYS0loEcLU55DiNYc3mGxKLglc + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/15AD56F9-B355-48C0-91B2-790EA0B3BDB2?api-version=2022-07-01-preview&t=639148693090517974&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=IOAVfceo2Taay0DEQ1NoFT3KXwtU1qZCytcodZjncqFNNeeEnySmHxK4bzqS2-hT38RMslj9nEVIK04RNPK5sc3-TI-uSXTP9KNy-YupzuUFwIiPGIw7JmFpXyWxKnSEpI_XwAOC2Rb4xqW19K9ggVTRhm9TD-UrSAZFFiBCoPZnNDIK4nF9tAmjg4fFOJnW566GKMs8AJ4YFrxbxO7fX9jVh6oSluRPNoXKpVIcRvE57ydMzob8ieqDT7fSBo9cqJX685omZ2if9eZhh8GuBHp6aKTtt0KLK6nXAWciwl6Q09iBVwDMfMAZEj-4fS7NJWTGgHMQM1454InK14Q-tw&h=-nxTVc1jThKdYkI28WX2a24xtMQrrNYqBJvHLHigLV0 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/188062D2-30DC-49B1-BCA7-9F6FD1E986E7", - "name": "188062D2-30DC-49B1-BCA7-9F6FD1E986E7", "status": "Succeeded", "startTime": - "2025-09-03T07:38:58.5530000Z", "endTime": "2025-09-03T07:39:17.2670000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/15AD56F9-B355-48C0-91B2-790EA0B3BDB2", + "name": "15AD56F9-B355-48C0-91B2-790EA0B3BDB2", "status": "Succeeded", "startTime": + "2026-05-20T10:21:48.4300000Z", "endTime": "2026-05-20T10:22:13.0670000Z"}' headers: Cache-Control: - no-cache @@ -1746,7 +1205,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:39:30 GMT + - Wed, 20 May 2026 10:22:20 GMT Expires: - '-1' Pragma: diff --git a/tests/test_commands/recordings/test_commands/test_start/test_start_capacity_without_force_success.yaml b/tests/test_commands/recordings/test_commands/test_start/test_start_capacity_without_force_success.yaml index 5cdd6a024..97a51b6b1 100644 --- a/tests/test_commands/recordings/test_commands/test_start/test_start_capacity_without_force_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_start/test_start_capacity_without_force_success.yaml @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -27,15 +27,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '456' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:36:34 GMT + - Wed, 20 May 2026 10:18:14 GMT Pragma: - no-cache RequestId: - - 16ef5c18-fa55-4116-8673-0cfbb232d365 + - 8a74e258-2804-4492-af1f-49aab8f07cfe Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -43,7 +43,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -60,11 +60,11 @@ interactions: Connection: - keep-alive Content-Length: - - '149' + - '165' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -75,21 +75,21 @@ interactions: "westeurope", "sku": {"name": "F2", "tier": "Fabric"}}' headers: Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/C7F8021F-E021-4925-A650-DC0F1EF289A6?api-version=2022-07-01-preview&t=638924817971298270&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=AbP58iV_4rWtjtBgN6p3957KsBjdVSg7QrevFU8qvt0QdEiDjNwoiYg_VFCODczlr_NV2L4tCIxlDoxEbzZ_QYEoHf9oKmkRMrWYnS0EY_ilBCKZMapTTx8gu5xClfk_p2riIRZbeHrIXoZfoJPIo6t0rswQ_uaf_kwCcLEoHcC68yUlTWPyj8kDtt-iEnaG6-G5cUKY1jxJfe0tT27ndmvNbtInDYK-ON-Qd5nZdsfualgwHYhNH3O_EaiG5w8G6QB2Xe0M1poMyFpZm9Tr5VcYB75nW3VFW8LHDm1UCM0C7LSA2s8ltjA8wDT25J_skXtSyJRpbdcRnScnKt1NNQ&h=nhEoDJcg8xdOa7pH2uRHDp6i8KNE9DcaHgrJ-_41gQo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/FFCA838B-3885-4506-AC76-46A9D801EF60?api-version=2022-07-01-preview&t=639148690994712157&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=o_AR38rE0FDUoU-wuyVkwASe2t8IMIJEomE6EK1Bt8B8BLIIaWRPRcdm73773NzUgIipU_Yv8rLQdt76Jzhed1dvYdUxgd0MCEJ23BrEk4AecYBpXQsf0gdHxBFQsRoXF9UGCg1RPmMkPcXex8dbyYW1c--MOJqWw62MxXRwRAjB0_6Kuq0NSSD2cZ3sHPBSJnUjsvPNtBluxM8bhAGXhdNjbRals3FmP48N1oQSJOdtAsAvCp53qavZmlsIouXcumsDdFaKZlYpSMPyO1FqD23iEQTXRQYMt_cWzrWUzAwe9rCycehlm-MHPQYLvGEwbNUaxdUQiX-QJvXXWGqDBA&h=UuCwrw3plJAuJ6pGwSj-ZHOQ8-lcHZSnZK9e_BQ0KLo Cache-Control: - no-cache Content-Length: - - '406' + - '422' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:36:36 GMT + - Wed, 20 May 2026 10:18:18 GMT Expires: - '-1' Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/C7F8021F-E021-4925-A650-DC0F1EF289A6?api-version=2022-07-01-preview&t=638924817971454522&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=I0p7ILipsjwWzkKX4J6ZTTGw97htMBiC_GAvDkbyncf-hH_F0BaZaqX0k5IF5WJdo4l2lBkjKKCK0quBSdXIc5bfLUmm_HQfrVmmpKnJ1XkpWIQF_SFgVnnST_Y1jocB7GTEf13NXjcltNZ-_ZkvdRseW3Pn_1IPUV5NLTSft7AYmaF6r9pMoGfnWdOHV5Yjz7lLgnsGKTgCBnklNMmT83zygi9WDpKV58C_opeGEZuntjq-odDHXO42_KTnz_JRGbwfhjzaHjDj_8izsmBp33Mp-hyqhT88S3QHg-2SKv1tIs6zotj2l6lDYqZl_qLNKSKaN9Hy1aa9pRN02pXETw&h=72fwhkb3rkIeOR0NBDIqlvwXOlX3dfWFGhni4ToeN4A + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/FFCA838B-3885-4506-AC76-46A9D801EF60?api-version=2022-07-01-preview&t=639148690994712157&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=Fd6daIUq_vtXnSTPHreBg9a9GYoyTUzpY8P-60khSWnPhTHTsGbhmBGDLcoyX5MLo15Rrt0-9P80n-_NdS0nUQyhOZSLgDxQEiCUrW6RWkMWTlTYHdU_usYqQPgsVkcBl0wlrXUFxFKTgcIPScCR8hgy04VVDy4D4c7gK9E-HAL6_RGyr2f3_hl11tFxoB7ohXyyQoH3h8loax1Wjv7UzxrB-gWtzYunmDZBPpPSG4c0UEIAyoSgwWSmI7dUZhKJ8z7CkIuchdfYRXeOMvTl_72fgRQ11DO8XZBADQm0YMKZxqPwYRJoDoW-bRLIujdtaG8xmTGeQSIOpsGJTWwdbg&h=hx60THEwZPcjJ0TTarwY8wuYwFUJqmRMkrkvU5fwCig Pragma: - no-cache Strict-Transport-Security: @@ -117,158 +117,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/C7F8021F-E021-4925-A650-DC0F1EF289A6?api-version=2022-07-01-preview&t=638924817971298270&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=AbP58iV_4rWtjtBgN6p3957KsBjdVSg7QrevFU8qvt0QdEiDjNwoiYg_VFCODczlr_NV2L4tCIxlDoxEbzZ_QYEoHf9oKmkRMrWYnS0EY_ilBCKZMapTTx8gu5xClfk_p2riIRZbeHrIXoZfoJPIo6t0rswQ_uaf_kwCcLEoHcC68yUlTWPyj8kDtt-iEnaG6-G5cUKY1jxJfe0tT27ndmvNbtInDYK-ON-Qd5nZdsfualgwHYhNH3O_EaiG5w8G6QB2Xe0M1poMyFpZm9Tr5VcYB75nW3VFW8LHDm1UCM0C7LSA2s8ltjA8wDT25J_skXtSyJRpbdcRnScnKt1NNQ&h=nhEoDJcg8xdOa7pH2uRHDp6i8KNE9DcaHgrJ-_41gQo + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/FFCA838B-3885-4506-AC76-46A9D801EF60?api-version=2022-07-01-preview&t=639148690994712157&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=o_AR38rE0FDUoU-wuyVkwASe2t8IMIJEomE6EK1Bt8B8BLIIaWRPRcdm73773NzUgIipU_Yv8rLQdt76Jzhed1dvYdUxgd0MCEJ23BrEk4AecYBpXQsf0gdHxBFQsRoXF9UGCg1RPmMkPcXex8dbyYW1c--MOJqWw62MxXRwRAjB0_6Kuq0NSSD2cZ3sHPBSJnUjsvPNtBluxM8bhAGXhdNjbRals3FmP48N1oQSJOdtAsAvCp53qavZmlsIouXcumsDdFaKZlYpSMPyO1FqD23iEQTXRQYMt_cWzrWUzAwe9rCycehlm-MHPQYLvGEwbNUaxdUQiX-QJvXXWGqDBA&h=UuCwrw3plJAuJ6pGwSj-ZHOQ8-lcHZSnZK9e_BQ0KLo response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/C7F8021F-E021-4925-A650-DC0F1EF289A6", - "name": "C7F8021F-E021-4925-A650-DC0F1EF289A6", "status": "Provisioning", - "startTime": "2025-09-03T07:36:36.4400000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '249' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:36:37 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/C7F8021F-E021-4925-A650-DC0F1EF289A6?api-version=2022-07-01-preview&t=638924817971298270&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=AbP58iV_4rWtjtBgN6p3957KsBjdVSg7QrevFU8qvt0QdEiDjNwoiYg_VFCODczlr_NV2L4tCIxlDoxEbzZ_QYEoHf9oKmkRMrWYnS0EY_ilBCKZMapTTx8gu5xClfk_p2riIRZbeHrIXoZfoJPIo6t0rswQ_uaf_kwCcLEoHcC68yUlTWPyj8kDtt-iEnaG6-G5cUKY1jxJfe0tT27ndmvNbtInDYK-ON-Qd5nZdsfualgwHYhNH3O_EaiG5w8G6QB2Xe0M1poMyFpZm9Tr5VcYB75nW3VFW8LHDm1UCM0C7LSA2s8ltjA8wDT25J_skXtSyJRpbdcRnScnKt1NNQ&h=nhEoDJcg8xdOa7pH2uRHDp6i8KNE9DcaHgrJ-_41gQo - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/C7F8021F-E021-4925-A650-DC0F1EF289A6", - "name": "C7F8021F-E021-4925-A650-DC0F1EF289A6", "status": "Provisioning", - "startTime": "2025-09-03T07:36:36.4400000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '249' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:36:37 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/C7F8021F-E021-4925-A650-DC0F1EF289A6?api-version=2022-07-01-preview&t=638924817971298270&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=AbP58iV_4rWtjtBgN6p3957KsBjdVSg7QrevFU8qvt0QdEiDjNwoiYg_VFCODczlr_NV2L4tCIxlDoxEbzZ_QYEoHf9oKmkRMrWYnS0EY_ilBCKZMapTTx8gu5xClfk_p2riIRZbeHrIXoZfoJPIo6t0rswQ_uaf_kwCcLEoHcC68yUlTWPyj8kDtt-iEnaG6-G5cUKY1jxJfe0tT27ndmvNbtInDYK-ON-Qd5nZdsfualgwHYhNH3O_EaiG5w8G6QB2Xe0M1poMyFpZm9Tr5VcYB75nW3VFW8LHDm1UCM0C7LSA2s8ltjA8wDT25J_skXtSyJRpbdcRnScnKt1NNQ&h=nhEoDJcg8xdOa7pH2uRHDp6i8KNE9DcaHgrJ-_41gQo - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/C7F8021F-E021-4925-A650-DC0F1EF289A6", - "name": "C7F8021F-E021-4925-A650-DC0F1EF289A6", "status": "Provisioning", - "startTime": "2025-09-03T07:36:36.4400000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '249' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:36:37 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/C7F8021F-E021-4925-A650-DC0F1EF289A6?api-version=2022-07-01-preview&t=638924817971298270&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=AbP58iV_4rWtjtBgN6p3957KsBjdVSg7QrevFU8qvt0QdEiDjNwoiYg_VFCODczlr_NV2L4tCIxlDoxEbzZ_QYEoHf9oKmkRMrWYnS0EY_ilBCKZMapTTx8gu5xClfk_p2riIRZbeHrIXoZfoJPIo6t0rswQ_uaf_kwCcLEoHcC68yUlTWPyj8kDtt-iEnaG6-G5cUKY1jxJfe0tT27ndmvNbtInDYK-ON-Qd5nZdsfualgwHYhNH3O_EaiG5w8G6QB2Xe0M1poMyFpZm9Tr5VcYB75nW3VFW8LHDm1UCM0C7LSA2s8ltjA8wDT25J_skXtSyJRpbdcRnScnKt1NNQ&h=nhEoDJcg8xdOa7pH2uRHDp6i8KNE9DcaHgrJ-_41gQo - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/C7F8021F-E021-4925-A650-DC0F1EF289A6", - "name": "C7F8021F-E021-4925-A650-DC0F1EF289A6", "status": "Succeeded", "startTime": - "2025-09-03T07:36:36.4400000Z", "endTime": "2025-09-03T07:36:38.9900000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/FFCA838B-3885-4506-AC76-46A9D801EF60", + "name": "FFCA838B-3885-4506-AC76-46A9D801EF60", "status": "Succeeded", "startTime": + "2026-05-20T10:18:18.3130000Z", "endTime": "2026-05-20T10:18:21.2930000Z"}' headers: Cache-Control: - no-cache @@ -279,7 +135,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:36:40 GMT + - Wed, 20 May 2026 10:18:29 GMT Expires: - '-1' Pragma: @@ -309,14 +165,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": - "Active"}, {"id": "33d2203c-85c4-4a5b-a329-a6e94626f151", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "c6415064-7395-4c5f-b86b-b6a0090a4adc", "displayName": "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -326,15 +182,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '489' + - '458' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:36:43 GMT + - Wed, 20 May 2026 10:18:33 GMT Pragma: - no-cache RequestId: - - 27bb7dcd-6789-462c-bbd5-b03abd57e489 + - 6d42e491-722d-4f3e-a2ff-bfb2d48b8cca Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -342,7 +198,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -360,14 +216,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": - "Active"}, {"id": "33d2203c-85c4-4a5b-a329-a6e94626f151", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "c6415064-7395-4c5f-b86b-b6a0090a4adc", "displayName": "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -377,15 +233,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '489' + - '458' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:36:47 GMT + - Wed, 20 May 2026 10:18:38 GMT Pragma: - no-cache RequestId: - - 78b2344e-73fc-4b8b-be67-232a112be4e4 + - 876e5c39-1b95-4a81-8e54-93d784155a0f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -393,7 +249,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -411,7 +267,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -424,13 +280,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:36:48 GMT + - Wed, 20 May 2026 10:18:40 GMT Expires: - '-1' Pragma: @@ -460,7 +316,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -473,13 +329,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:36:48 GMT + - Wed, 20 May 2026 10:18:41 GMT Expires: - '-1' Pragma: @@ -511,7 +367,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001/suspend?api-version=2023-11-01 response: @@ -519,7 +375,7 @@ interactions: string: '' headers: Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/03927E56-2E41-4C3B-85ED-252DF2739DC7?api-version=2022-07-01-preview&t=638924818098433561&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=bdV4yDrhiEGW96Rq1iXujvoOuyNnyryrttb0Qs5qQf8lW_XssMGYuolLh1ASvAWHsMZZQ9BWBevGbRsR3QTW7EvHZfulReLKSLAkIWgqMrYyTN_4yFSkbkSqxOTwuonNoKs8Xrczt6BmVi177XdlGFcV9daC--5aEdbsyEvR7EMVGA0UGIGgIgVUagnNHJXP11k-RC_q0LvtpRKDWe4lpsOaqUPW3A43JnvoF_lasaHjsJyYlTRBFlzcsJ7ApHpHdVKZxU1X80wD6_WyPUsTLETUF8X8WwpKhOAB4VcKT_9JmNTGQ_OEDT88TVol2RHXgpXR7dGkkTEbMiDYSBvzzQ&h=hd4ul3Mbfyl_ikbH0SDQ9FXqv6knMJ8fwWNHlqeNg7A + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/5B35223D-07A3-453F-BDC8-3AE9165A6A4E?api-version=2022-07-01-preview&t=639148691232956115&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=Iye4WXWjVgn_j6mWf18qUZ_S2qYvxNDyj9n_MSMDTHhKTXHDdr2s-Ec3fbqcIrKfT5zMqNIVyjIyI-7f2bYncEloc0b3rZ4OplHB8H0fdoaxejXwblxqX5jqe-eg8LT-MVjszh06kiUF76zDhKfDnSZjkQVX33GNeanI8oXyV08z4KD4tzJQkbhiu9YFlSGtW0__vlkKJ9yjiw_nwF6Vx_qRcRV_g4n7DvdIuVTH2CNUXray0AhmS7sQuNr1WiL-QM0hJ0tMnfqaPD1J0wZD6CuBQ8tPnhkHa_Q7fuy3RZN9ESv9PRki2hnJmMLcP1mUYiroNPPS9F_ZkbAt8taXmw&h=lDluQeesBoZZ8x0uMXJ38qZBcBhfEIrOS8bP1E2qEhI Cache-Control: - no-cache Content-Length: @@ -527,11 +383,11 @@ interactions: Content-Security-Policy: - script-src 'self' Date: - - Wed, 03 Sep 2025 07:36:48 GMT + - Wed, 20 May 2026 10:18:42 GMT Expires: - '-1' Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/03927E56-2E41-4C3B-85ED-252DF2739DC7?api-version=2022-07-01-preview&t=638924818098433561&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=ixIN5pBiE-AVHRPSNVyEYWOgQJly40fR3sD8S2BECM32AJbkZe4NKCiwDg4s3QhmP7psUvENWgckytBjkN0hs0rM7qWSFZ_vEQ3-Y0vkcUBdTDVXqk3GdmObkRmXKpBjrXwxj6jFHTfiaEdFPS1wS5ndLPBfHAmN8hOPgPi6A9SP7juA7tkg_m3OqQ5ocuzuwsOudzGcZTGZrY5cAOyufEofpUMM27LLf6sTjghrvyYjh7FefhZkDw00zJuhb0YGLzOQYVraUq9LHw1ySsXRmIB685JYelaIASEVI58_imFQvh0YfISdrEzU6Gzy2p_193bf0balqdzFO7s1BBbKXg&h=vJwmztRfB8IkdStdjzkHpX8osk84V4tTHkTJcrOH6r8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/5B35223D-07A3-453F-BDC8-3AE9165A6A4E?api-version=2022-07-01-preview&t=639148691232956115&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=QNTuZ_PcsiIPC_nkcL2RMIwLgTDXPig4gUg1_75l_8t24JwwP7wTc8EqHBv8Kxxi7ZVjQVwss2ZPi1GZQ7UAJi4YFCKQSBF5b6Qk88UnKNjKL4zm1TrJYOWrJ3Q7pkMPt8_GW5PaWU549BIbJbI_XuUgWUq1v_KrxijQ3KR-lxkcQoNA6yKygP-B2SU6m5FFp5eoBq3O52DF5X9KfTKmIRzS8iSfuVcfvauO1fppJ3teBXnIsCuZtSY9gMASZ1EDyyEaCqcqVXEuKoDCkJsCxIwThDOD6tY8C84F94bYZjOhBOBWpaqc42O5K4PjX5DghcU-_S1Czu9lwLRpGE-apQ&h=YvS-Q6dqlUTYIGB3Uj2LrWsVn5SPN2_T6OjVx17gXUM Pragma: - no-cache Strict-Transport-Security: @@ -559,62 +415,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/03927E56-2E41-4C3B-85ED-252DF2739DC7?api-version=2022-07-01-preview&t=638924818098433561&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=bdV4yDrhiEGW96Rq1iXujvoOuyNnyryrttb0Qs5qQf8lW_XssMGYuolLh1ASvAWHsMZZQ9BWBevGbRsR3QTW7EvHZfulReLKSLAkIWgqMrYyTN_4yFSkbkSqxOTwuonNoKs8Xrczt6BmVi177XdlGFcV9daC--5aEdbsyEvR7EMVGA0UGIGgIgVUagnNHJXP11k-RC_q0LvtpRKDWe4lpsOaqUPW3A43JnvoF_lasaHjsJyYlTRBFlzcsJ7ApHpHdVKZxU1X80wD6_WyPUsTLETUF8X8WwpKhOAB4VcKT_9JmNTGQ_OEDT88TVol2RHXgpXR7dGkkTEbMiDYSBvzzQ&h=hd4ul3Mbfyl_ikbH0SDQ9FXqv6knMJ8fwWNHlqeNg7A - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/03927E56-2E41-4C3B-85ED-252DF2739DC7", - "name": "03927E56-2E41-4C3B-85ED-252DF2739DC7", "status": "Pausing", "startTime": - "2025-09-03T07:36:49.2500000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '244' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:36:50 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/03927E56-2E41-4C3B-85ED-252DF2739DC7?api-version=2022-07-01-preview&t=638924818098433561&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=bdV4yDrhiEGW96Rq1iXujvoOuyNnyryrttb0Qs5qQf8lW_XssMGYuolLh1ASvAWHsMZZQ9BWBevGbRsR3QTW7EvHZfulReLKSLAkIWgqMrYyTN_4yFSkbkSqxOTwuonNoKs8Xrczt6BmVi177XdlGFcV9daC--5aEdbsyEvR7EMVGA0UGIGgIgVUagnNHJXP11k-RC_q0LvtpRKDWe4lpsOaqUPW3A43JnvoF_lasaHjsJyYlTRBFlzcsJ7ApHpHdVKZxU1X80wD6_WyPUsTLETUF8X8WwpKhOAB4VcKT_9JmNTGQ_OEDT88TVol2RHXgpXR7dGkkTEbMiDYSBvzzQ&h=hd4ul3Mbfyl_ikbH0SDQ9FXqv6knMJ8fwWNHlqeNg7A + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/5B35223D-07A3-453F-BDC8-3AE9165A6A4E?api-version=2022-07-01-preview&t=639148691232956115&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=Iye4WXWjVgn_j6mWf18qUZ_S2qYvxNDyj9n_MSMDTHhKTXHDdr2s-Ec3fbqcIrKfT5zMqNIVyjIyI-7f2bYncEloc0b3rZ4OplHB8H0fdoaxejXwblxqX5jqe-eg8LT-MVjszh06kiUF76zDhKfDnSZjkQVX33GNeanI8oXyV08z4KD4tzJQkbhiu9YFlSGtW0__vlkKJ9yjiw_nwF6Vx_qRcRV_g4n7DvdIuVTH2CNUXray0AhmS7sQuNr1WiL-QM0hJ0tMnfqaPD1J0wZD6CuBQ8tPnhkHa_Q7fuy3RZN9ESv9PRki2hnJmMLcP1mUYiroNPPS9F_ZkbAt8taXmw&h=lDluQeesBoZZ8x0uMXJ38qZBcBhfEIrOS8bP1E2qEhI response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/03927E56-2E41-4C3B-85ED-252DF2739DC7", - "name": "03927E56-2E41-4C3B-85ED-252DF2739DC7", "status": "Pausing", "startTime": - "2025-09-03T07:36:49.2500000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/5B35223D-07A3-453F-BDC8-3AE9165A6A4E", + "name": "5B35223D-07A3-453F-BDC8-3AE9165A6A4E", "status": "Pausing", "startTime": + "2026-05-20T10:18:42.6800000Z"}' headers: Cache-Control: - no-cache @@ -625,7 +433,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:36:49 GMT + - Wed, 20 May 2026 10:18:53 GMT Expires: - '-1' Pragma: @@ -655,110 +463,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/03927E56-2E41-4C3B-85ED-252DF2739DC7?api-version=2022-07-01-preview&t=638924818098433561&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=bdV4yDrhiEGW96Rq1iXujvoOuyNnyryrttb0Qs5qQf8lW_XssMGYuolLh1ASvAWHsMZZQ9BWBevGbRsR3QTW7EvHZfulReLKSLAkIWgqMrYyTN_4yFSkbkSqxOTwuonNoKs8Xrczt6BmVi177XdlGFcV9daC--5aEdbsyEvR7EMVGA0UGIGgIgVUagnNHJXP11k-RC_q0LvtpRKDWe4lpsOaqUPW3A43JnvoF_lasaHjsJyYlTRBFlzcsJ7ApHpHdVKZxU1X80wD6_WyPUsTLETUF8X8WwpKhOAB4VcKT_9JmNTGQ_OEDT88TVol2RHXgpXR7dGkkTEbMiDYSBvzzQ&h=hd4ul3Mbfyl_ikbH0SDQ9FXqv6knMJ8fwWNHlqeNg7A + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/5B35223D-07A3-453F-BDC8-3AE9165A6A4E?api-version=2022-07-01-preview&t=639148691232956115&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=Iye4WXWjVgn_j6mWf18qUZ_S2qYvxNDyj9n_MSMDTHhKTXHDdr2s-Ec3fbqcIrKfT5zMqNIVyjIyI-7f2bYncEloc0b3rZ4OplHB8H0fdoaxejXwblxqX5jqe-eg8LT-MVjszh06kiUF76zDhKfDnSZjkQVX33GNeanI8oXyV08z4KD4tzJQkbhiu9YFlSGtW0__vlkKJ9yjiw_nwF6Vx_qRcRV_g4n7DvdIuVTH2CNUXray0AhmS7sQuNr1WiL-QM0hJ0tMnfqaPD1J0wZD6CuBQ8tPnhkHa_Q7fuy3RZN9ESv9PRki2hnJmMLcP1mUYiroNPPS9F_ZkbAt8taXmw&h=lDluQeesBoZZ8x0uMXJ38qZBcBhfEIrOS8bP1E2qEhI response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/03927E56-2E41-4C3B-85ED-252DF2739DC7", - "name": "03927E56-2E41-4C3B-85ED-252DF2739DC7", "status": "Pausing", "startTime": - "2025-09-03T07:36:49.2500000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '244' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:36:50 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/03927E56-2E41-4C3B-85ED-252DF2739DC7?api-version=2022-07-01-preview&t=638924818098433561&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=bdV4yDrhiEGW96Rq1iXujvoOuyNnyryrttb0Qs5qQf8lW_XssMGYuolLh1ASvAWHsMZZQ9BWBevGbRsR3QTW7EvHZfulReLKSLAkIWgqMrYyTN_4yFSkbkSqxOTwuonNoKs8Xrczt6BmVi177XdlGFcV9daC--5aEdbsyEvR7EMVGA0UGIGgIgVUagnNHJXP11k-RC_q0LvtpRKDWe4lpsOaqUPW3A43JnvoF_lasaHjsJyYlTRBFlzcsJ7ApHpHdVKZxU1X80wD6_WyPUsTLETUF8X8WwpKhOAB4VcKT_9JmNTGQ_OEDT88TVol2RHXgpXR7dGkkTEbMiDYSBvzzQ&h=hd4ul3Mbfyl_ikbH0SDQ9FXqv6knMJ8fwWNHlqeNg7A - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/03927E56-2E41-4C3B-85ED-252DF2739DC7", - "name": "03927E56-2E41-4C3B-85ED-252DF2739DC7", "status": "Pausing", "startTime": - "2025-09-03T07:36:49.2500000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '244' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:36:52 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/03927E56-2E41-4C3B-85ED-252DF2739DC7?api-version=2022-07-01-preview&t=638924818098433561&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=bdV4yDrhiEGW96Rq1iXujvoOuyNnyryrttb0Qs5qQf8lW_XssMGYuolLh1ASvAWHsMZZQ9BWBevGbRsR3QTW7EvHZfulReLKSLAkIWgqMrYyTN_4yFSkbkSqxOTwuonNoKs8Xrczt6BmVi177XdlGFcV9daC--5aEdbsyEvR7EMVGA0UGIGgIgVUagnNHJXP11k-RC_q0LvtpRKDWe4lpsOaqUPW3A43JnvoF_lasaHjsJyYlTRBFlzcsJ7ApHpHdVKZxU1X80wD6_WyPUsTLETUF8X8WwpKhOAB4VcKT_9JmNTGQ_OEDT88TVol2RHXgpXR7dGkkTEbMiDYSBvzzQ&h=hd4ul3Mbfyl_ikbH0SDQ9FXqv6knMJ8fwWNHlqeNg7A - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/03927E56-2E41-4C3B-85ED-252DF2739DC7", - "name": "03927E56-2E41-4C3B-85ED-252DF2739DC7", "status": "Succeeded", "startTime": - "2025-09-03T07:36:49.2500000Z", "endTime": "2025-09-03T07:36:56.2970000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/5B35223D-07A3-453F-BDC8-3AE9165A6A4E", + "name": "5B35223D-07A3-453F-BDC8-3AE9165A6A4E", "status": "Succeeded", "startTime": + "2026-05-20T10:18:42.6800000Z", "endTime": "2026-05-20T10:19:00.9800000Z"}' headers: Cache-Control: - no-cache @@ -769,7 +481,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:36:56 GMT + - Wed, 20 May 2026 10:19:04 GMT Expires: - '-1' Pragma: @@ -799,15 +511,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: body: - string: '{"value": [{"id": "33d2203c-85c4-4a5b-a329-a6e94626f151", "displayName": + string: '{"value": [{"id": "c6415064-7395-4c5f-b86b-b6a0090a4adc", "displayName": "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Inactive"}, {"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", - "sku": "F16", "region": "West Europe", "state": "Active"}]}' + "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -816,15 +528,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '490' + - '464' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:37:00 GMT + - Wed, 20 May 2026 10:19:10 GMT Pragma: - no-cache RequestId: - - 62beffcf-94b5-4b58-a88f-a5282f1a697f + - 614c5838-41f5-419d-a1aa-72b449d0ebd6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -832,7 +544,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -850,7 +562,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -863,13 +575,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:37:00 GMT + - Wed, 20 May 2026 10:19:11 GMT Expires: - '-1' Pragma: @@ -899,7 +611,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -912,13 +624,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:37:01 GMT + - Wed, 20 May 2026 10:19:11 GMT Expires: - '-1' Pragma: @@ -950,7 +662,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001/resume?api-version=2023-11-01 response: @@ -958,7 +670,7 @@ interactions: string: '' headers: Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/8082722B-D7DA-4FE2-930F-49EBFCC6804E?api-version=2022-07-01-preview&t=638924818226054211&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=dVxaLF8Lne3gXZB66hGiIAAvYS6werF6l1hfq2pU3IDzq-0ZN9UUTAN8tIarkFsSc0q956Q63QtHl2A2MS-SgbJe_Mq_G1kAIl5CLFrF9VyH74lHOwqGnVgvOzvU57Rl2n2ojQU2fNkXucSF5RSIwl-duEwl2r0QvjZr2RzqW8RDkH8s3LXX3ZWx-TTx2NoX7LT79L6LetoP7ak-EB-U_rCrEKJek-iFmFwnXXhEEAyOae5dnhPApa_n2escgEYY81FsXdYSCWEP7-6gYtOhrKFdmmaxccz96ioBAqamErv96_7jBC4wOBkI_JHkgxwdPeJaHnOS2lAvD_fIuF6R6w&h=mdRHRbvOnjQKvDnl2sj543-88DqxxyKclR5DbW-3jlU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/133AF09A-2DC5-4493-9A11-20AF9944D551?api-version=2022-07-01-preview&t=639148691546175059&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=sqtQ-OND7voNdlzdFhVzXl4bxQLCmjk9IOx1BKKMc1oJXpKPjKHfKq3AiIl4HAxoHWGuEdF_XyFsd-_NpKbGXfkCCkMwkLxZYCrgNc7nKkwWLGT35urN-utSlY80vL5R8oHQztgJZiq69uDeMlshlIWCaufEXFuvkEDUBGINLWpd09CdmaiTK3TH05VYSVAafBqcQfCEjErDm4MOip-timQczynLobgVYAQJF7Olu28QFuaj3iAkI-tJXdYavBrwcEsqiPA-lZ48gAlqcI4nfCFcsV_wpcRVBzxZ8CMYjS3ERQ3jYnO5KaMva_lVrGJtwp1-lKHFxPk4AW1o5kK80Q&h=UMXosthR5vOVePxsh8FCnryU9Z3UarflEu08IKguDgw Cache-Control: - no-cache Content-Length: @@ -966,11 +678,11 @@ interactions: Content-Security-Policy: - script-src 'self' Date: - - Wed, 03 Sep 2025 07:37:02 GMT + - Wed, 20 May 2026 10:19:14 GMT Expires: - '-1' Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/8082722B-D7DA-4FE2-930F-49EBFCC6804E?api-version=2022-07-01-preview&t=638924818226210451&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=IwcRiNcUZZgVY5BU4kP5hTCwtlZBZ4Xqe6YZhZJJfTvAn-YJS7FzP3sk0Lfahy1viinh0aD1wiO9ozGrQGzZzydTld9wSwsm4f4iEwjLW3UcassbkwxqR__iZyoXs3OU0O40K7a5hkSEnvfcYXv934RoqhxR5UvfhGF2prNAsjVgM77i0c88zIyvdCQhTJ1we-2XYRIUo9MzqxhF6951aNaRnXyVyTNxkdkREBvn6MCOT6s1Ye9-KPzawWiedDWncQMa9xHjC_USR_aGphXyUDW1s-g78KQuvHiYIgV1Nu6w0HnetXCN-lVCtKrr2n-jR2Cdt7FPq9Gh9_S9pQY-5g&h=R2jSU94MsK1fWG6BxC6KBpZgc2_MvK8b8AxDLI1W4rQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/133AF09A-2DC5-4493-9A11-20AF9944D551?api-version=2022-07-01-preview&t=639148691546175059&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=19qcl-rTONAK5Q5hwajB7SiQIrN5ImJoA50Vjx6h8yBjqceBmhAis_UNTKjcYZojncWdiFcHfEHs4mVeenAWGJutZ9lBINazUoUqpjdqeNmQYVsW9wzzRy7n0EH2f6_vqQ18nRa9CymPAvsxeU4yQfQEJs4zRR8vaJZ-kRmU_W2qJkMdb2XWq_WCTkmtzflkAOxZfDJfdBSSQGasTdmkmGji-2pu2PKPYlo54_EOkxcDOm-slG0xxeysd9MTmSgVoMPG0_5jG8hB5jYqQMu-iwPD-vX-wkqahxfBidkYphWdW0XbAgKeMD4r2z-vOsIQvWs6tPXaaoRuD_Dh_FWMvw&h=jUZW3D7YSGlTuE3EOxTcDT3VD0JPHKSXTS2YEW5VDEo Pragma: - no-cache Strict-Transport-Security: @@ -998,206 +710,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/8082722B-D7DA-4FE2-930F-49EBFCC6804E?api-version=2022-07-01-preview&t=638924818226054211&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=dVxaLF8Lne3gXZB66hGiIAAvYS6werF6l1hfq2pU3IDzq-0ZN9UUTAN8tIarkFsSc0q956Q63QtHl2A2MS-SgbJe_Mq_G1kAIl5CLFrF9VyH74lHOwqGnVgvOzvU57Rl2n2ojQU2fNkXucSF5RSIwl-duEwl2r0QvjZr2RzqW8RDkH8s3LXX3ZWx-TTx2NoX7LT79L6LetoP7ak-EB-U_rCrEKJek-iFmFwnXXhEEAyOae5dnhPApa_n2escgEYY81FsXdYSCWEP7-6gYtOhrKFdmmaxccz96ioBAqamErv96_7jBC4wOBkI_JHkgxwdPeJaHnOS2lAvD_fIuF6R6w&h=mdRHRbvOnjQKvDnl2sj543-88DqxxyKclR5DbW-3jlU + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/133AF09A-2DC5-4493-9A11-20AF9944D551?api-version=2022-07-01-preview&t=639148691546175059&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=sqtQ-OND7voNdlzdFhVzXl4bxQLCmjk9IOx1BKKMc1oJXpKPjKHfKq3AiIl4HAxoHWGuEdF_XyFsd-_NpKbGXfkCCkMwkLxZYCrgNc7nKkwWLGT35urN-utSlY80vL5R8oHQztgJZiq69uDeMlshlIWCaufEXFuvkEDUBGINLWpd09CdmaiTK3TH05VYSVAafBqcQfCEjErDm4MOip-timQczynLobgVYAQJF7Olu28QFuaj3iAkI-tJXdYavBrwcEsqiPA-lZ48gAlqcI4nfCFcsV_wpcRVBzxZ8CMYjS3ERQ3jYnO5KaMva_lVrGJtwp1-lKHFxPk4AW1o5kK80Q&h=UMXosthR5vOVePxsh8FCnryU9Z3UarflEu08IKguDgw response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/8082722B-D7DA-4FE2-930F-49EBFCC6804E", - "name": "8082722B-D7DA-4FE2-930F-49EBFCC6804E", "status": "Resuming", "startTime": - "2025-09-03T07:37:02.0130000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:37:02 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/8082722B-D7DA-4FE2-930F-49EBFCC6804E?api-version=2022-07-01-preview&t=638924818226054211&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=dVxaLF8Lne3gXZB66hGiIAAvYS6werF6l1hfq2pU3IDzq-0ZN9UUTAN8tIarkFsSc0q956Q63QtHl2A2MS-SgbJe_Mq_G1kAIl5CLFrF9VyH74lHOwqGnVgvOzvU57Rl2n2ojQU2fNkXucSF5RSIwl-duEwl2r0QvjZr2RzqW8RDkH8s3LXX3ZWx-TTx2NoX7LT79L6LetoP7ak-EB-U_rCrEKJek-iFmFwnXXhEEAyOae5dnhPApa_n2escgEYY81FsXdYSCWEP7-6gYtOhrKFdmmaxccz96ioBAqamErv96_7jBC4wOBkI_JHkgxwdPeJaHnOS2lAvD_fIuF6R6w&h=mdRHRbvOnjQKvDnl2sj543-88DqxxyKclR5DbW-3jlU - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/8082722B-D7DA-4FE2-930F-49EBFCC6804E", - "name": "8082722B-D7DA-4FE2-930F-49EBFCC6804E", "status": "Resuming", "startTime": - "2025-09-03T07:37:02.0130000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:37:03 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/8082722B-D7DA-4FE2-930F-49EBFCC6804E?api-version=2022-07-01-preview&t=638924818226054211&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=dVxaLF8Lne3gXZB66hGiIAAvYS6werF6l1hfq2pU3IDzq-0ZN9UUTAN8tIarkFsSc0q956Q63QtHl2A2MS-SgbJe_Mq_G1kAIl5CLFrF9VyH74lHOwqGnVgvOzvU57Rl2n2ojQU2fNkXucSF5RSIwl-duEwl2r0QvjZr2RzqW8RDkH8s3LXX3ZWx-TTx2NoX7LT79L6LetoP7ak-EB-U_rCrEKJek-iFmFwnXXhEEAyOae5dnhPApa_n2escgEYY81FsXdYSCWEP7-6gYtOhrKFdmmaxccz96ioBAqamErv96_7jBC4wOBkI_JHkgxwdPeJaHnOS2lAvD_fIuF6R6w&h=mdRHRbvOnjQKvDnl2sj543-88DqxxyKclR5DbW-3jlU - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/8082722B-D7DA-4FE2-930F-49EBFCC6804E", - "name": "8082722B-D7DA-4FE2-930F-49EBFCC6804E", "status": "Resuming", "startTime": - "2025-09-03T07:37:02.0130000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:37:03 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/8082722B-D7DA-4FE2-930F-49EBFCC6804E?api-version=2022-07-01-preview&t=638924818226054211&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=dVxaLF8Lne3gXZB66hGiIAAvYS6werF6l1hfq2pU3IDzq-0ZN9UUTAN8tIarkFsSc0q956Q63QtHl2A2MS-SgbJe_Mq_G1kAIl5CLFrF9VyH74lHOwqGnVgvOzvU57Rl2n2ojQU2fNkXucSF5RSIwl-duEwl2r0QvjZr2RzqW8RDkH8s3LXX3ZWx-TTx2NoX7LT79L6LetoP7ak-EB-U_rCrEKJek-iFmFwnXXhEEAyOae5dnhPApa_n2escgEYY81FsXdYSCWEP7-6gYtOhrKFdmmaxccz96ioBAqamErv96_7jBC4wOBkI_JHkgxwdPeJaHnOS2lAvD_fIuF6R6w&h=mdRHRbvOnjQKvDnl2sj543-88DqxxyKclR5DbW-3jlU - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/8082722B-D7DA-4FE2-930F-49EBFCC6804E", - "name": "8082722B-D7DA-4FE2-930F-49EBFCC6804E", "status": "Resuming", "startTime": - "2025-09-03T07:37:02.0130000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:37:05 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/8082722B-D7DA-4FE2-930F-49EBFCC6804E?api-version=2022-07-01-preview&t=638924818226054211&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=dVxaLF8Lne3gXZB66hGiIAAvYS6werF6l1hfq2pU3IDzq-0ZN9UUTAN8tIarkFsSc0q956Q63QtHl2A2MS-SgbJe_Mq_G1kAIl5CLFrF9VyH74lHOwqGnVgvOzvU57Rl2n2ojQU2fNkXucSF5RSIwl-duEwl2r0QvjZr2RzqW8RDkH8s3LXX3ZWx-TTx2NoX7LT79L6LetoP7ak-EB-U_rCrEKJek-iFmFwnXXhEEAyOae5dnhPApa_n2escgEYY81FsXdYSCWEP7-6gYtOhrKFdmmaxccz96ioBAqamErv96_7jBC4wOBkI_JHkgxwdPeJaHnOS2lAvD_fIuF6R6w&h=mdRHRbvOnjQKvDnl2sj543-88DqxxyKclR5DbW-3jlU - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/8082722B-D7DA-4FE2-930F-49EBFCC6804E", - "name": "8082722B-D7DA-4FE2-930F-49EBFCC6804E", "status": "Succeeded", "startTime": - "2025-09-03T07:37:02.0130000Z", "endTime": "2025-09-03T07:37:07.0070000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/133AF09A-2DC5-4493-9A11-20AF9944D551", + "name": "133AF09A-2DC5-4493-9A11-20AF9944D551", "status": "Succeeded", "startTime": + "2026-05-20T10:19:14.0230000Z", "endTime": "2026-05-20T10:19:23.1300000Z"}' headers: Cache-Control: - no-cache @@ -1208,7 +728,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:37:10 GMT + - Wed, 20 May 2026 10:19:24 GMT Expires: - '-1' Pragma: @@ -1238,14 +758,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": - "Active"}, {"id": "33d2203c-85c4-4a5b-a329-a6e94626f151", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "c6415064-7395-4c5f-b86b-b6a0090a4adc", "displayName": "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -1255,15 +775,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '489' + - '461' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:37:15 GMT + - Wed, 20 May 2026 10:19:30 GMT Pragma: - no-cache RequestId: - - 34abecc9-d21b-4c51-b949-965996b79a4f + - 83afc509-8e8d-472c-97a3-f24c679411ae Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1271,7 +791,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -1289,14 +809,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": - "Active"}, {"id": "33d2203c-85c4-4a5b-a329-a6e94626f151", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "c6415064-7395-4c5f-b86b-b6a0090a4adc", "displayName": "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -1306,15 +826,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '489' + - '458' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:37:19 GMT + - Wed, 20 May 2026 10:19:36 GMT Pragma: - no-cache RequestId: - - 666fff30-cb91-42f7-bf5b-a49d6e7a5a31 + - e0768755-b47d-4da6-b468-e4d513a1b585 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1322,7 +842,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -1340,7 +860,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -1353,13 +873,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:37:20 GMT + - Wed, 20 May 2026 10:19:37 GMT Expires: - '-1' Pragma: @@ -1389,7 +909,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -1402,13 +922,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:37:20 GMT + - Wed, 20 May 2026 10:19:38 GMT Expires: - '-1' Pragma: @@ -1438,15 +958,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": - "Active"}, {"id": "33d2203c-85c4-4a5b-a329-a6e94626f151", "displayName": "fabcli000001", - "sku": "F2", "region": "West Europe", "state": "Active"}]}' + string: '{"value": [{"id": "c6415064-7395-4c5f-b86b-b6a0090a4adc", "displayName": + "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}, + {"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", + "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1455,15 +975,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '489' + - '459' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:37:25 GMT + - Wed, 20 May 2026 10:19:43 GMT Pragma: - no-cache RequestId: - - 0133e714-a130-45c4-8890-65e6efa81a4c + - 0ea7831e-c1dc-41bc-a30f-f976669f63d1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1471,7 +991,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -1489,7 +1009,48 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://management.azure.com/subscriptions/placeholder/resourceGroups/placeholder/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 + response: + body: + string: '{"error": {"code": "InvalidSubscriptionId", "message": "The provided + subscription identifier ''placeholder'' is malformed or invalid."}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - '130' + Content-Type: + - application/json; charset=utf-8 + Date: + - Wed, 20 May 2026 10:19:44 GMT + Expires: + - '-1' + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + status: + code: 400 + message: Bad Request +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions?api-version=2022-12-01 response: @@ -1500,11 +1061,11 @@ interactions: Cache-Control: - no-cache Content-Length: - - '479' + - '469' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:37:25 GMT + - Wed, 20 May 2026 10:19:44 GMT Expires: - '-1' Pragma: @@ -1530,16 +1091,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/capacities?api-version=2023-11-01 response: body: string: '{"value": [{"properties": {"provisioningState": "Succeeded", "state": - "Active", "administration": {"members": ["mocked@admin_test_user"]}}, "id": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/mocked_fabriccli_capacity_name", + "Active", "administration": {"members": ["mocked@admin_test_user", "4fdd0762-85fe-4f8b-90dc-776e8605e0b9"]}}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/mocked_fabriccli_capacity_name", "name": "mocked_fabriccli_capacity_name", "type": "Microsoft.Fabric/capacities", - "location": "West Europe", "sku": {"name": "F16", "tier": "Fabric"}, "tags": + "location": "Central US", "sku": {"name": "F16", "tier": "Fabric"}, "tags": {}}, {"properties": {"provisioningState": "Succeeded", "state": "Active", "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": @@ -1548,13 +1109,11 @@ interactions: Cache-Control: - no-cache Content-Length: - - '2480' - Content-Security-Policy: - - script-src 'self' + - '2562' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:37:25 GMT + - Wed, 20 May 2026 10:19:46 GMT Expires: - '-1' Pragma: @@ -1565,10 +1124,6 @@ interactions: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block status: code: 200 message: OK @@ -1586,7 +1141,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -1594,7 +1149,7 @@ interactions: string: '' headers: Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/CEDA4247-BB48-4086-BD42-BB25CD392DD1?api-version=2022-07-01-preview&t=638924818473811034&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=HmjM1uUNNhrC8_aqx2lg94AuwtxXY7DYRY2AKNz5EuYt-iRSN8zJ82VBzUcSgpXGlWW9CrNSIWynkSmCz1gVA849Q_K6bRsCoketVTbu9jA85bR00y7pqktP40SwRLNmEt-73biIOqmgrqD_mDK5f6gpxgu7SdeQ-tYraStEPJPJXcCM5oJnrukEQEzDA2f6FMI_CNNxNOMycUq5ZNqw9VpbWv1c3RaXsYjzI9_9NIR22ToBxTiPgDODPRlRdFzxE8h8Nj-AEyzuoonmYc9Qh-QU7v__X2b2B3_-aAj5TOmWRmOW5YX1PO5eTiny95AFgE1-PmlOFhAfUn9mSris4g&h=9WxEsk5hv0Rp35t1DrEmFeXLWFjduSZqFpyRZtGHPks + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/E7412F45-B20A-4639-870B-40729D5E3390?api-version=2022-07-01-preview&t=639148691887808717&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=ZLPP2KTjnYUtsEBIdkyL9RANe2kdFzx5Hbyra3_rZ5QdFaUB0d9g_596OijMhSPKNboAL3SMI4l-vVhUcRbXxA7ZvNiXzPI_WzlofoHQVlFuHZoop6uZNVbW8bWZRuA8onIDJutdf5Mnuj4wSdZBeEGVo4QPobaxFoAKtiRKO6jzZU3rDJlEJwPKG4xzu2MQLGFmBjXWfvTwXWcJfhEggM-D1Ehu3h7cpU_eGyzN-5G5g9o5UlKy17zf_lj0DKwkyIqPeZOwSAFeyLXXH7l28hRVILfRjyyt2bsIHGmpJ6_6dLPN2Gykz8dgZPxzLUkGlO67PfzTLPsFgb0FyNA_Fg&h=ScQty3oSJ-Ee9SXgTb5R2XT19wViJvqhKM7xg_-msps Cache-Control: - no-cache Content-Length: @@ -1602,11 +1157,11 @@ interactions: Content-Security-Policy: - script-src 'self' Date: - - Wed, 03 Sep 2025 07:37:27 GMT + - Wed, 20 May 2026 10:19:48 GMT Expires: - '-1' Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/CEDA4247-BB48-4086-BD42-BB25CD392DD1?api-version=2022-07-01-preview&t=638924818473967208&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=J1rj0Xjd8G0KUWrQ8qI65HW_CtSBP24d2GrDpO5dViU8ZBaQRHKr5dKkF8vDgntxjsEmxtEbus6LMRlHRtGqfHFbbpfYFLGtwMp1vI4rovWK83N7x5sGem4jCBiPI5hNNJLA7HAOQbCj_cmkHqU86jF3AAOtR7idyn_UXE2SwbO-R68n5eLNyehEsaByF_l8nw9oH59RMcDhpVDDUnNOyDqU2QqdvpcMrt7PqtGi6VFADetcT9ScPQGD4-LCDHZ6NOgE8-GR0Bb9CJETbu9JMqXvXNEK9hKkbcFGZmp9_jufrXm9y3hYFZR4k5S4ksZAwLdxYhlDa5yNVD8Dp5WPuA&h=OAj5updAPeHbTgSVOAUHBWxQx-dueWF-OWrHQu-d-2Y + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/E7412F45-B20A-4639-870B-40729D5E3390?api-version=2022-07-01-preview&t=639148691887808717&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=d0hq8mV1N86ulOws6Fvm2_Y0-acFl3LUtvhTvrS8AlMViKgh2hRQyojvDrHmXZXhi3ftWiTw-891xFtFTAmDAi35CTvFfuvLkXMXUuHYKw11DYPpmYuIxA259JdEnfoyCxK5IOQyNXpO-i4clELX61ljEtJcOFLGw7Ch55UjT9OwMwsUI5_nYK6b-f6t0LnAhejZWamEgEIusvVIkCD4naPE_Z8PRva3CrQv6pGsW8Bqw10bbIMdkX3eJq999lwYUdB3RCwREJ6AaVK9LwWiv_AXqsr7_HRJ1hCe5gSTyXPzpvOUlP_IHVm6AtrW7YNSAZaqKgEeHDzKYsSBbKGQnQ&h=_dFjYuBmcMvmyw-o_f9Ctdvr5TGxoBYfmR4745ZP_CA Pragma: - no-cache Strict-Transport-Security: @@ -1634,14 +1189,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/CEDA4247-BB48-4086-BD42-BB25CD392DD1?api-version=2022-07-01-preview&t=638924818473811034&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=HmjM1uUNNhrC8_aqx2lg94AuwtxXY7DYRY2AKNz5EuYt-iRSN8zJ82VBzUcSgpXGlWW9CrNSIWynkSmCz1gVA849Q_K6bRsCoketVTbu9jA85bR00y7pqktP40SwRLNmEt-73biIOqmgrqD_mDK5f6gpxgu7SdeQ-tYraStEPJPJXcCM5oJnrukEQEzDA2f6FMI_CNNxNOMycUq5ZNqw9VpbWv1c3RaXsYjzI9_9NIR22ToBxTiPgDODPRlRdFzxE8h8Nj-AEyzuoonmYc9Qh-QU7v__X2b2B3_-aAj5TOmWRmOW5YX1PO5eTiny95AFgE1-PmlOFhAfUn9mSris4g&h=9WxEsk5hv0Rp35t1DrEmFeXLWFjduSZqFpyRZtGHPks + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/E7412F45-B20A-4639-870B-40729D5E3390?api-version=2022-07-01-preview&t=639148691887808717&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=ZLPP2KTjnYUtsEBIdkyL9RANe2kdFzx5Hbyra3_rZ5QdFaUB0d9g_596OijMhSPKNboAL3SMI4l-vVhUcRbXxA7ZvNiXzPI_WzlofoHQVlFuHZoop6uZNVbW8bWZRuA8onIDJutdf5Mnuj4wSdZBeEGVo4QPobaxFoAKtiRKO6jzZU3rDJlEJwPKG4xzu2MQLGFmBjXWfvTwXWcJfhEggM-D1Ehu3h7cpU_eGyzN-5G5g9o5UlKy17zf_lj0DKwkyIqPeZOwSAFeyLXXH7l28hRVILfRjyyt2bsIHGmpJ6_6dLPN2Gykz8dgZPxzLUkGlO67PfzTLPsFgb0FyNA_Fg&h=ScQty3oSJ-Ee9SXgTb5R2XT19wViJvqhKM7xg_-msps response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/CEDA4247-BB48-4086-BD42-BB25CD392DD1", - "name": "CEDA4247-BB48-4086-BD42-BB25CD392DD1", "status": "Deleting", "startTime": - "2025-09-03T07:37:26.7700000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/E7412F45-B20A-4639-870B-40729D5E3390", + "name": "E7412F45-B20A-4639-870B-40729D5E3390", "status": "Deleting", "startTime": + "2026-05-20T10:19:48.2070000Z"}' headers: Cache-Control: - no-cache @@ -1652,7 +1207,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:37:27 GMT + - Wed, 20 May 2026 10:19:59 GMT Expires: - '-1' Pragma: @@ -1682,14 +1237,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/CEDA4247-BB48-4086-BD42-BB25CD392DD1?api-version=2022-07-01-preview&t=638924818473811034&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=HmjM1uUNNhrC8_aqx2lg94AuwtxXY7DYRY2AKNz5EuYt-iRSN8zJ82VBzUcSgpXGlWW9CrNSIWynkSmCz1gVA849Q_K6bRsCoketVTbu9jA85bR00y7pqktP40SwRLNmEt-73biIOqmgrqD_mDK5f6gpxgu7SdeQ-tYraStEPJPJXcCM5oJnrukEQEzDA2f6FMI_CNNxNOMycUq5ZNqw9VpbWv1c3RaXsYjzI9_9NIR22ToBxTiPgDODPRlRdFzxE8h8Nj-AEyzuoonmYc9Qh-QU7v__X2b2B3_-aAj5TOmWRmOW5YX1PO5eTiny95AFgE1-PmlOFhAfUn9mSris4g&h=9WxEsk5hv0Rp35t1DrEmFeXLWFjduSZqFpyRZtGHPks + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/E7412F45-B20A-4639-870B-40729D5E3390?api-version=2022-07-01-preview&t=639148691887808717&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=ZLPP2KTjnYUtsEBIdkyL9RANe2kdFzx5Hbyra3_rZ5QdFaUB0d9g_596OijMhSPKNboAL3SMI4l-vVhUcRbXxA7ZvNiXzPI_WzlofoHQVlFuHZoop6uZNVbW8bWZRuA8onIDJutdf5Mnuj4wSdZBeEGVo4QPobaxFoAKtiRKO6jzZU3rDJlEJwPKG4xzu2MQLGFmBjXWfvTwXWcJfhEggM-D1Ehu3h7cpU_eGyzN-5G5g9o5UlKy17zf_lj0DKwkyIqPeZOwSAFeyLXXH7l28hRVILfRjyyt2bsIHGmpJ6_6dLPN2Gykz8dgZPxzLUkGlO67PfzTLPsFgb0FyNA_Fg&h=ScQty3oSJ-Ee9SXgTb5R2XT19wViJvqhKM7xg_-msps response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/CEDA4247-BB48-4086-BD42-BB25CD392DD1", - "name": "CEDA4247-BB48-4086-BD42-BB25CD392DD1", "status": "Deleting", "startTime": - "2025-09-03T07:37:26.7700000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/E7412F45-B20A-4639-870B-40729D5E3390", + "name": "E7412F45-B20A-4639-870B-40729D5E3390", "status": "Deleting", "startTime": + "2026-05-20T10:19:48.2070000Z"}' headers: Cache-Control: - no-cache @@ -1700,7 +1255,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:37:28 GMT + - Wed, 20 May 2026 10:20:11 GMT Expires: - '-1' Pragma: @@ -1730,14 +1285,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/CEDA4247-BB48-4086-BD42-BB25CD392DD1?api-version=2022-07-01-preview&t=638924818473811034&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=HmjM1uUNNhrC8_aqx2lg94AuwtxXY7DYRY2AKNz5EuYt-iRSN8zJ82VBzUcSgpXGlWW9CrNSIWynkSmCz1gVA849Q_K6bRsCoketVTbu9jA85bR00y7pqktP40SwRLNmEt-73biIOqmgrqD_mDK5f6gpxgu7SdeQ-tYraStEPJPJXcCM5oJnrukEQEzDA2f6FMI_CNNxNOMycUq5ZNqw9VpbWv1c3RaXsYjzI9_9NIR22ToBxTiPgDODPRlRdFzxE8h8Nj-AEyzuoonmYc9Qh-QU7v__X2b2B3_-aAj5TOmWRmOW5YX1PO5eTiny95AFgE1-PmlOFhAfUn9mSris4g&h=9WxEsk5hv0Rp35t1DrEmFeXLWFjduSZqFpyRZtGHPks + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/E7412F45-B20A-4639-870B-40729D5E3390?api-version=2022-07-01-preview&t=639148691887808717&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=ZLPP2KTjnYUtsEBIdkyL9RANe2kdFzx5Hbyra3_rZ5QdFaUB0d9g_596OijMhSPKNboAL3SMI4l-vVhUcRbXxA7ZvNiXzPI_WzlofoHQVlFuHZoop6uZNVbW8bWZRuA8onIDJutdf5Mnuj4wSdZBeEGVo4QPobaxFoAKtiRKO6jzZU3rDJlEJwPKG4xzu2MQLGFmBjXWfvTwXWcJfhEggM-D1Ehu3h7cpU_eGyzN-5G5g9o5UlKy17zf_lj0DKwkyIqPeZOwSAFeyLXXH7l28hRVILfRjyyt2bsIHGmpJ6_6dLPN2Gykz8dgZPxzLUkGlO67PfzTLPsFgb0FyNA_Fg&h=ScQty3oSJ-Ee9SXgTb5R2XT19wViJvqhKM7xg_-msps response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/CEDA4247-BB48-4086-BD42-BB25CD392DD1", - "name": "CEDA4247-BB48-4086-BD42-BB25CD392DD1", "status": "Succeeded", "startTime": - "2025-09-03T07:37:26.7700000Z", "endTime": "2025-09-03T07:37:43.9330000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/E7412F45-B20A-4639-870B-40729D5E3390", + "name": "E7412F45-B20A-4639-870B-40729D5E3390", "status": "Succeeded", "startTime": + "2026-05-20T10:19:48.2070000Z", "endTime": "2026-05-20T10:20:11.3300000Z"}' headers: Cache-Control: - no-cache @@ -1748,7 +1303,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:37:44 GMT + - Wed, 20 May 2026 10:20:21 GMT Expires: - '-1' Pragma: diff --git a/tests/test_commands/recordings/test_commands/test_start/test_start_mirrored_db_already_active_failure.yaml b/tests/test_commands/recordings/test_commands/test_start/test_start_mirrored_db_already_active_failure.yaml index c5b4c9751..834b7d594 100644 --- a/tests/test_commands/recordings/test_commands/test_start/test_start_mirrored_db_already_active_failure.yaml +++ b/tests/test_commands/recordings/test_commands/test_start/test_start_mirrored_db_already_active_failure.yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "a02b7bc4-5ab3-487c-9675-2f5a626a8d1c", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "ff213028-2352-44bd-8457-096c4effbfee", + "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: - - '566' + - '2625' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:42:47 GMT + - Wed, 20 May 2026 10:25:30 GMT Pragma: - no-cache RequestId: - - c2865aa3-7f0b-4ae5-b082-2032269a6849 + - 94495cc8-559f-497d-bbbc-f44a24ceb6db Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -43,7 +44,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -61,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a02b7bc4-5ab3-487c-9675-2f5a626a8d1c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ff213028-2352-44bd-8457-096c4effbfee/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:42:48 GMT + - Wed, 20 May 2026 10:25:32 GMT Pragma: - no-cache RequestId: - - 6a03a8a2-2c64-47e4-b8d4-ff5da95b15b5 + - f3b53390-aa7d-4e97-860b-b40de08e8eae Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -91,7 +92,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -109,9 +110,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a02b7bc4-5ab3-487c-9675-2f5a626a8d1c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ff213028-2352-44bd-8457-096c4effbfee/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:42:49 GMT + - Wed, 20 May 2026 10:25:32 GMT Pragma: - no-cache RequestId: - - 1b93dbe0-cae3-47ce-abed-a4b941447930 + - 373cd63b-7230-4090-892e-161ebdfb3f7e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -139,14 +140,16 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: 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.1.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/a02b7bc4-5ab3-487c-9675-2f5a626a8d1c/mirroredDatabases + uri: https://api.fabric.microsoft.com/v1/workspaces/ff213028-2352-44bd-8457-096c4effbfee/mirroredDatabases response: body: - string: '{"id": "7bcad644-dae8-4aba-8213-7afa47eaf74a", "type": "MirroredDatabase", - "displayName": "fabcli000001", "workspaceId": - "a02b7bc4-5ab3-487c-9675-2f5a626a8d1c"}' + string: '{"id": "2f610eb6-dc76-4748-b8ed-967865cb02ac", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "ff213028-2352-44bd-8457-096c4effbfee"}' 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, 16 Sep 2025 08:42:50 GMT + - Wed, 20 May 2026 10:25:34 GMT ETag: - '""' Pragma: - no-cache RequestId: - - b3f304c7-9056-4baf-80f3-2bedc815be31 + - f809ac54-5fa7-4067-a23a-e3d0669b5df9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -194,7 +195,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -212,14 +213,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "a02b7bc4-5ab3-487c-9675-2f5a626a8d1c", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "ff213028-2352-44bd-8457-096c4effbfee", + "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: - - '566' + - '2625' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:43:21 GMT + - Wed, 20 May 2026 10:26:06 GMT Pragma: - no-cache RequestId: - - bbd9423e-de68-4b2c-9924-dae35ae92132 + - 8385c682-e3dd-489d-bbc0-e09788f031c4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -244,7 +246,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -262,16 +264,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a02b7bc4-5ab3-487c-9675-2f5a626a8d1c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ff213028-2352-44bd-8457-096c4effbfee/items response: body: - string: '{"value": [{"id": "29e9b76c-46ad-45c0-93fe-b074a0baec96", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "a02b7bc4-5ab3-487c-9675-2f5a626a8d1c"}, - {"id": "7bcad644-dae8-4aba-8213-7afa47eaf74a", "type": "MirroredDatabase", - "displayName": "fabcli000001", "workspaceId": - "a02b7bc4-5ab3-487c-9675-2f5a626a8d1c"}]}' + string: '{"value": [{"id": "00fe5bbf-27d6-4ef0-97f0-36fa2499fcd2", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "ff213028-2352-44bd-8457-096c4effbfee"}, + {"id": "2f610eb6-dc76-4748-b8ed-967865cb02ac", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "ff213028-2352-44bd-8457-096c4effbfee"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -280,15 +281,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '230' + - '219' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:43:20 GMT + - Wed, 20 May 2026 10:26:06 GMT Pragma: - no-cache RequestId: - - 33193b92-3b34-4f69-9d0f-91d6e51cd599 + - 14a40f3c-77f8-4fdc-a189-cd85351f1584 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -296,7 +297,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -316,9 +317,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/a02b7bc4-5ab3-487c-9675-2f5a626a8d1c/mirroredDatabases/7bcad644-dae8-4aba-8213-7afa47eaf74a/getMirroringStatus + uri: https://api.fabric.microsoft.com/v1/workspaces/ff213028-2352-44bd-8457-096c4effbfee/mirroredDatabases/2f610eb6-dc76-4748-b8ed-967865cb02ac/getMirroringStatus response: body: string: '{"status": "Initialized"}' @@ -330,9 +331,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:43:20 GMT + - Wed, 20 May 2026 10:26:08 GMT RequestId: - - 1bdd837a-df5f-41f4-97a8-f2721e0e3b94 + - b1f15899-2cea-4bc6-b6a1-29e2e3eda89b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -340,7 +341,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -360,9 +361,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/a02b7bc4-5ab3-487c-9675-2f5a626a8d1c/mirroredDatabases/7bcad644-dae8-4aba-8213-7afa47eaf74a/startMirroring + uri: https://api.fabric.microsoft.com/v1/workspaces/ff213028-2352-44bd-8457-096c4effbfee/mirroredDatabases/2f610eb6-dc76-4748-b8ed-967865cb02ac/startMirroring response: body: string: '' @@ -374,9 +375,9 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 16 Sep 2025 08:43:23 GMT + - Wed, 20 May 2026 10:26:09 GMT RequestId: - - c8387c3f-2300-43d8-89f3-b22f1b25fbc7 + - 51c36a3a-0d3d-4340-8831-4d6f96b0be45 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -384,7 +385,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -402,14 +403,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "a02b7bc4-5ab3-487c-9675-2f5a626a8d1c", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "ff213028-2352-44bd-8457-096c4effbfee", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -418,15 +420,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '566' + - '2625' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:43:53 GMT + - Wed, 20 May 2026 10:26:40 GMT Pragma: - no-cache RequestId: - - ea501ab7-4362-46a8-8c94-9beb0cac2182 + - 47ce5336-6e2c-4a6e-ba10-99b80579c8c2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -434,7 +436,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -452,16 +454,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a02b7bc4-5ab3-487c-9675-2f5a626a8d1c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ff213028-2352-44bd-8457-096c4effbfee/items response: body: - string: '{"value": [{"id": "29e9b76c-46ad-45c0-93fe-b074a0baec96", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "a02b7bc4-5ab3-487c-9675-2f5a626a8d1c"}, - {"id": "7bcad644-dae8-4aba-8213-7afa47eaf74a", "type": "MirroredDatabase", - "displayName": "fabcli000001", "workspaceId": - "a02b7bc4-5ab3-487c-9675-2f5a626a8d1c"}]}' + string: '{"value": [{"id": "00fe5bbf-27d6-4ef0-97f0-36fa2499fcd2", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "ff213028-2352-44bd-8457-096c4effbfee"}, + {"id": "2f610eb6-dc76-4748-b8ed-967865cb02ac", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "ff213028-2352-44bd-8457-096c4effbfee"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -470,15 +471,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '230' + - '219' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:43:53 GMT + - Wed, 20 May 2026 10:26:42 GMT Pragma: - no-cache RequestId: - - cc791466-e88b-48b7-a8ab-2966e0484715 + - cf7fe3c4-a3d1-4517-a406-f9e37248e13d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -486,7 +487,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -506,9 +507,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/a02b7bc4-5ab3-487c-9675-2f5a626a8d1c/mirroredDatabases/7bcad644-dae8-4aba-8213-7afa47eaf74a/getMirroringStatus + uri: https://api.fabric.microsoft.com/v1/workspaces/ff213028-2352-44bd-8457-096c4effbfee/mirroredDatabases/2f610eb6-dc76-4748-b8ed-967865cb02ac/getMirroringStatus response: body: string: '{"status": "Running"}' @@ -520,9 +521,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:43:53 GMT + - Wed, 20 May 2026 10:26:42 GMT RequestId: - - 17d53dc5-871f-40b1-b808-e5db0c2f8db6 + - 7aa02652-03e6-4a08-afc0-8f189817c6d1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -530,7 +531,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -548,14 +549,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "a02b7bc4-5ab3-487c-9675-2f5a626a8d1c", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "ff213028-2352-44bd-8457-096c4effbfee", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -564,15 +566,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '566' + - '2625' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:43:54 GMT + - Wed, 20 May 2026 10:26:43 GMT Pragma: - no-cache RequestId: - - 8236eb9e-34be-4137-8d04-4002df2a4612 + - da0cbfb9-006c-4f9e-b605-58511c44378b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -580,7 +582,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -598,16 +600,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a02b7bc4-5ab3-487c-9675-2f5a626a8d1c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ff213028-2352-44bd-8457-096c4effbfee/items response: body: - string: '{"value": [{"id": "29e9b76c-46ad-45c0-93fe-b074a0baec96", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "a02b7bc4-5ab3-487c-9675-2f5a626a8d1c"}, - {"id": "7bcad644-dae8-4aba-8213-7afa47eaf74a", "type": "MirroredDatabase", - "displayName": "fabcli000001", "workspaceId": - "a02b7bc4-5ab3-487c-9675-2f5a626a8d1c"}]}' + string: '{"value": [{"id": "00fe5bbf-27d6-4ef0-97f0-36fa2499fcd2", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "ff213028-2352-44bd-8457-096c4effbfee"}, + {"id": "2f610eb6-dc76-4748-b8ed-967865cb02ac", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "ff213028-2352-44bd-8457-096c4effbfee"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -616,15 +617,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '230' + - '219' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:43:54 GMT + - Wed, 20 May 2026 10:26:45 GMT Pragma: - no-cache RequestId: - - 54e42352-a52b-48e3-acd5-25272b663ffc + - f7931795-e7aa-4441-8711-0002b13d0294 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -632,7 +633,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -652,9 +653,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/a02b7bc4-5ab3-487c-9675-2f5a626a8d1c/items/7bcad644-dae8-4aba-8213-7afa47eaf74a + uri: https://api.fabric.microsoft.com/v1/workspaces/ff213028-2352-44bd-8457-096c4effbfee/items/2f610eb6-dc76-4748-b8ed-967865cb02ac response: body: string: '' @@ -670,11 +671,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 16 Sep 2025 08:43:54 GMT + - Wed, 20 May 2026 10:26:46 GMT Pragma: - no-cache RequestId: - - 5c1065c2-32c0-4325-b1f1-3c4584b76147 + - 752738f1-7544-4558-b0b2-3d71f8aa1a35 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -682,7 +683,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: diff --git a/tests/test_commands/recordings/test_commands/test_start/test_start_mirrored_db_success.yaml b/tests/test_commands/recordings/test_commands/test_start/test_start_mirrored_db_success.yaml index 327dac4ce..3542c3c83 100644 --- a/tests/test_commands/recordings/test_commands/test_start/test_start_mirrored_db_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_start/test_start_mirrored_db_success.yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "a02b7bc4-5ab3-487c-9675-2f5a626a8d1c", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "ff213028-2352-44bd-8457-096c4effbfee", + "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: - - '566' + - '2625' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:41:07 GMT + - Wed, 20 May 2026 10:23:39 GMT Pragma: - no-cache RequestId: - - a6649396-9a08-4aaf-a96e-1fb8c34ee753 + - 79e9d9ad-ba7f-477b-813d-eee14d4aeda3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -43,7 +44,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -61,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a02b7bc4-5ab3-487c-9675-2f5a626a8d1c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ff213028-2352-44bd-8457-096c4effbfee/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:41:08 GMT + - Wed, 20 May 2026 10:23:39 GMT Pragma: - no-cache RequestId: - - fe9a36c1-fd4f-4a99-86e0-a174c1feb4df + - bc74f452-8ab4-4e22-87bb-3fe964dbf068 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -91,7 +92,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -109,9 +110,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a02b7bc4-5ab3-487c-9675-2f5a626a8d1c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ff213028-2352-44bd-8457-096c4effbfee/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:41:08 GMT + - Wed, 20 May 2026 10:23:41 GMT Pragma: - no-cache RequestId: - - 75a0cfaa-591c-4f31-9aa7-397d71788aca + - 567aa5ef-b6d0-41d1-8d63-cad7dc0fb8ac Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -139,14 +140,16 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: 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.1.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/a02b7bc4-5ab3-487c-9675-2f5a626a8d1c/mirroredDatabases + uri: https://api.fabric.microsoft.com/v1/workspaces/ff213028-2352-44bd-8457-096c4effbfee/mirroredDatabases response: body: - string: '{"id": "83eb91d2-740c-4adf-8b19-564ab623fe4a", "type": "MirroredDatabase", - "displayName": "fabcli000001", "workspaceId": - "a02b7bc4-5ab3-487c-9675-2f5a626a8d1c"}' + string: '{"id": "c1a618c8-b424-4d72-bdab-c4366735bf81", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "ff213028-2352-44bd-8457-096c4effbfee"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +177,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '170' + - '161' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:41:11 GMT + - Wed, 20 May 2026 10:23:43 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 609ed6eb-423d-4106-93be-6646ae3929f3 + - 75117d6b-df65-43b8-bdba-f02fd3e3f8fa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -194,7 +195,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -212,14 +213,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "a02b7bc4-5ab3-487c-9675-2f5a626a8d1c", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "ff213028-2352-44bd-8457-096c4effbfee", + "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: - - '566' + - '2625' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:42:11 GMT + - Wed, 20 May 2026 10:24:45 GMT Pragma: - no-cache RequestId: - - 5fcd5dce-9388-4ddd-a1df-76539259efea + - 9917de6a-0346-4395-a2ae-7da89934c749 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -244,7 +246,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -262,16 +264,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a02b7bc4-5ab3-487c-9675-2f5a626a8d1c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ff213028-2352-44bd-8457-096c4effbfee/items response: body: - string: '{"value": [{"id": "e70ee4d2-eb0f-45d4-8982-66bb7e93ff25", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "a02b7bc4-5ab3-487c-9675-2f5a626a8d1c"}, - {"id": "83eb91d2-740c-4adf-8b19-564ab623fe4a", "type": "MirroredDatabase", - "displayName": "fabcli000001", "workspaceId": - "a02b7bc4-5ab3-487c-9675-2f5a626a8d1c"}]}' + string: '{"value": [{"id": "0eee750a-108c-4cb0-8422-d19c9fc63f46", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "ff213028-2352-44bd-8457-096c4effbfee"}, + {"id": "c1a618c8-b424-4d72-bdab-c4366735bf81", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "ff213028-2352-44bd-8457-096c4effbfee"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -280,15 +281,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '232' + - '219' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:42:11 GMT + - Wed, 20 May 2026 10:24:45 GMT Pragma: - no-cache RequestId: - - 03a12e7d-fa1c-4942-93b3-069ea3534f17 + - c54445a3-49a2-4694-9146-9cec4d324baf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -296,7 +297,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -316,9 +317,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/a02b7bc4-5ab3-487c-9675-2f5a626a8d1c/mirroredDatabases/83eb91d2-740c-4adf-8b19-564ab623fe4a/getMirroringStatus + uri: https://api.fabric.microsoft.com/v1/workspaces/ff213028-2352-44bd-8457-096c4effbfee/mirroredDatabases/c1a618c8-b424-4d72-bdab-c4366735bf81/getMirroringStatus response: body: string: '{"status": "Initialized"}' @@ -330,9 +331,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:42:12 GMT + - Wed, 20 May 2026 10:24:47 GMT RequestId: - - cc2da173-d4a0-43bc-8ce6-dc3765ee952a + - d33333ca-4875-4eb1-9bae-9e69c355168f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -340,7 +341,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -360,9 +361,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/a02b7bc4-5ab3-487c-9675-2f5a626a8d1c/mirroredDatabases/83eb91d2-740c-4adf-8b19-564ab623fe4a/startMirroring + uri: https://api.fabric.microsoft.com/v1/workspaces/ff213028-2352-44bd-8457-096c4effbfee/mirroredDatabases/c1a618c8-b424-4d72-bdab-c4366735bf81/startMirroring response: body: string: '' @@ -374,9 +375,9 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 16 Sep 2025 08:42:14 GMT + - Wed, 20 May 2026 10:24:49 GMT RequestId: - - aeaf17fd-561e-4480-88c9-34b95c4422c1 + - c11d2d5e-55d2-4cdc-bc66-f00cc58b684f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -384,7 +385,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -402,14 +403,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "a02b7bc4-5ab3-487c-9675-2f5a626a8d1c", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "ff213028-2352-44bd-8457-096c4effbfee", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -418,15 +420,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '566' + - '2625' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:42:44 GMT + - Wed, 20 May 2026 10:25:20 GMT Pragma: - no-cache RequestId: - - 2a68a566-7ee7-497f-b83b-28b47ef51e06 + - 3fa0de02-1148-42dd-ad18-856dd1916f76 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -434,7 +436,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -452,16 +454,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a02b7bc4-5ab3-487c-9675-2f5a626a8d1c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ff213028-2352-44bd-8457-096c4effbfee/items response: body: - string: '{"value": [{"id": "e70ee4d2-eb0f-45d4-8982-66bb7e93ff25", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "a02b7bc4-5ab3-487c-9675-2f5a626a8d1c"}, - {"id": "83eb91d2-740c-4adf-8b19-564ab623fe4a", "type": "MirroredDatabase", - "displayName": "fabcli000001", "workspaceId": - "a02b7bc4-5ab3-487c-9675-2f5a626a8d1c"}]}' + string: '{"value": [{"id": "0eee750a-108c-4cb0-8422-d19c9fc63f46", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "ff213028-2352-44bd-8457-096c4effbfee"}, + {"id": "c1a618c8-b424-4d72-bdab-c4366735bf81", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "ff213028-2352-44bd-8457-096c4effbfee"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -470,15 +471,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '232' + - '219' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:42:44 GMT + - Wed, 20 May 2026 10:25:21 GMT Pragma: - no-cache RequestId: - - f1f1cdd0-1538-4d55-b138-945fe71e16a4 + - 7691256a-1c9e-4bfb-a4ec-4205c7908eb4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -486,7 +487,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -504,17 +505,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a02b7bc4-5ab3-487c-9675-2f5a626a8d1c/mirroredDatabases/83eb91d2-740c-4adf-8b19-564ab623fe4a + uri: https://api.fabric.microsoft.com/v1/workspaces/ff213028-2352-44bd-8457-096c4effbfee/mirroredDatabases/c1a618c8-b424-4d72-bdab-c4366735bf81 response: body: - string: '{"id": "83eb91d2-740c-4adf-8b19-564ab623fe4a", "type": "MirroredDatabase", - "displayName": "fabcli000001", "workspaceId": - "a02b7bc4-5ab3-487c-9675-2f5a626a8d1c", "properties": {"oneLakeTablesPath": - "https://onelake.dfs.fabric.microsoft.com/a02b7bc4-5ab3-487c-9675-2f5a626a8d1c/83eb91d2-740c-4adf-8b19-564ab623fe4a/Tables", + string: '{"id": "c1a618c8-b424-4d72-bdab-c4366735bf81", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "ff213028-2352-44bd-8457-096c4effbfee", + "properties": {"oneLakeTablesPath": "https://onelake.dfs.fabric.microsoft.com/ff213028-2352-44bd-8457-096c4effbfee/c1a618c8-b424-4d72-bdab-c4366735bf81/Tables", "sqlEndpointProperties": {"connectionString": "mock_connection_string", "id": - "e70ee4d2-eb0f-45d4-8982-66bb7e93ff25", "provisioningStatus": "Success"}}}' + "0eee750a-108c-4cb0-8422-d19c9fc63f46", "provisioningStatus": "Success"}}}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -523,17 +523,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '364' + - '355' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:42:45 GMT + - Wed, 20 May 2026 10:25:22 GMT ETag: - '""' Pragma: - no-cache RequestId: - - f19fb7d7-45e9-42ca-979c-7a5cfc24c043 + - b66625e2-2345-46a0-9944-7421736c312f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -541,7 +541,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -561,13 +561,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/a02b7bc4-5ab3-487c-9675-2f5a626a8d1c/items/83eb91d2-740c-4adf-8b19-564ab623fe4a/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/ff213028-2352-44bd-8457-096c4effbfee/items/c1a618c8-b424-4d72-bdab-c4366735bf81/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: @@ -577,15 +577,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '561' + - '534' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:42:45 GMT + - Wed, 20 May 2026 10:25:24 GMT Pragma: - no-cache RequestId: - - 802e283b-56a2-44d0-aec8-8cfa84a21396 + - 3f11dd61-fb65-4cc9-8c78-902b1ed4170f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -593,7 +593,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -611,9 +611,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a02b7bc4-5ab3-487c-9675-2f5a626a8d1c/items/83eb91d2-740c-4adf-8b19-564ab623fe4a/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/ff213028-2352-44bd-8457-096c4effbfee/items/c1a618c8-b424-4d72-bdab-c4366735bf81/connections response: body: string: '{"value": []}' @@ -629,11 +629,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:42:46 GMT + - Wed, 20 May 2026 10:25:24 GMT Pragma: - no-cache RequestId: - - e07668bf-2e37-4e16-ba47-1381d8bd189d + - ebda8bdb-e190-4cac-962f-a43c56a74f45 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -641,7 +641,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -661,9 +661,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/a02b7bc4-5ab3-487c-9675-2f5a626a8d1c/mirroredDatabases/83eb91d2-740c-4adf-8b19-564ab623fe4a/getMirroringStatus + uri: https://api.fabric.microsoft.com/v1/workspaces/ff213028-2352-44bd-8457-096c4effbfee/mirroredDatabases/c1a618c8-b424-4d72-bdab-c4366735bf81/getMirroringStatus response: body: string: '{"status": "Running"}' @@ -675,9 +675,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:42:46 GMT + - Wed, 20 May 2026 10:25:26 GMT RequestId: - - 033453ff-3e6b-4b76-9b52-b9ea5332c069 + - 76892686-67a0-4122-9cba-e819d97eca18 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -685,7 +685,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -705,9 +705,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/a02b7bc4-5ab3-487c-9675-2f5a626a8d1c/mirroredDatabases/83eb91d2-740c-4adf-8b19-564ab623fe4a/getTablesMirroringStatus + uri: https://api.fabric.microsoft.com/v1/workspaces/ff213028-2352-44bd-8457-096c4effbfee/mirroredDatabases/c1a618c8-b424-4d72-bdab-c4366735bf81/getTablesMirroringStatus response: body: string: '{"continuationToken": null, "continuationUri": null, "data": []}' @@ -719,9 +719,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:42:47 GMT + - Wed, 20 May 2026 10:25:26 GMT RequestId: - - ac2d1463-fb46-4a0c-8d52-024d30ef0e13 + - 6241d8ff-dacb-490f-97b1-014b20f47fad Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -729,7 +729,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -747,14 +747,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "a02b7bc4-5ab3-487c-9675-2f5a626a8d1c", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "ff213028-2352-44bd-8457-096c4effbfee", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -763,15 +764,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '566' + - '2625' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:42:47 GMT + - Wed, 20 May 2026 10:25:28 GMT Pragma: - no-cache RequestId: - - 69ce1f29-d168-4200-b1e2-4a2ee60bcee3 + - c2a87bb3-c14d-4aee-bdd0-fece50bcf120 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -779,7 +780,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -797,16 +798,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/a02b7bc4-5ab3-487c-9675-2f5a626a8d1c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/ff213028-2352-44bd-8457-096c4effbfee/items response: body: - string: '{"value": [{"id": "e70ee4d2-eb0f-45d4-8982-66bb7e93ff25", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "a02b7bc4-5ab3-487c-9675-2f5a626a8d1c"}, - {"id": "83eb91d2-740c-4adf-8b19-564ab623fe4a", "type": "MirroredDatabase", - "displayName": "fabcli000001", "workspaceId": - "a02b7bc4-5ab3-487c-9675-2f5a626a8d1c"}]}' + string: '{"value": [{"id": "0eee750a-108c-4cb0-8422-d19c9fc63f46", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "ff213028-2352-44bd-8457-096c4effbfee"}, + {"id": "c1a618c8-b424-4d72-bdab-c4366735bf81", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "ff213028-2352-44bd-8457-096c4effbfee"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -815,15 +815,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '232' + - '219' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:42:47 GMT + - Wed, 20 May 2026 10:25:28 GMT Pragma: - no-cache RequestId: - - ab55bf51-278c-4ed4-b290-8a3886fe6d17 + - 25b5c994-17d9-4d35-a81d-76d6cba91a79 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -831,7 +831,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -851,9 +851,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/a02b7bc4-5ab3-487c-9675-2f5a626a8d1c/items/83eb91d2-740c-4adf-8b19-564ab623fe4a + uri: https://api.fabric.microsoft.com/v1/workspaces/ff213028-2352-44bd-8457-096c4effbfee/items/c1a618c8-b424-4d72-bdab-c4366735bf81 response: body: string: '' @@ -869,11 +869,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 16 Sep 2025 08:42:48 GMT + - Wed, 20 May 2026 10:25:29 GMT Pragma: - no-cache RequestId: - - 53945b03-f5d5-42cd-bc3e-62779ce94125 + - 11ca8854-20a4-46a2-a277-d0ed020e9186 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -881,7 +881,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: diff --git a/tests/test_commands/recordings/test_commands/test_stop/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_stop/class_setup.yaml index 247a122ab..fb88fb0e3 100644 --- a/tests/test_commands/recordings/test_commands/test_stop/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_stop/class_setup.yaml @@ -11,12 +11,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.1.0 (None; Linux; x86_64; 5.15.167.4-microsoft-standard-WSL2) + - ms-fabric-cli/1.6.1 (stop; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": "My workspace", "description": "", "type": "Personal"}]}' headers: Access-Control-Expose-Headers: @@ -26,15 +26,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '532' + - '2588' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:44:09 GMT + - Wed, 20 May 2026 10:09:58 GMT Pragma: - no-cache RequestId: - - 9a5ea39b-df7e-44bc-b757-a333a65aca56 + - 06e1f249-a066-411f-bf63-875dc233cecb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -42,7 +42,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -60,12 +60,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.1.0 (None; Linux; x86_64; 5.15.167.4-microsoft-standard-WSL2) + - ms-fabric-cli/1.6.1 (stop; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": "My workspace", "description": "", "type": "Personal"}]}' headers: Access-Control-Expose-Headers: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '532' + - '2588' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:44:08 GMT + - Wed, 20 May 2026 10:09:59 GMT Pragma: - no-cache RequestId: - - 96b047f5-4510-4284-9e59-dec59b5b948f + - 759dd88e-c799-4e04-83a2-96342c1078ed Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -91,7 +91,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -109,13 +109,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.1.0 (None; Linux; x86_64; 5.15.167.4-microsoft-standard-WSL2) + - ms-fabric-cli/1.6.1 (stop; Linux/6.12.76-linuxkit; Python/3.12.11) 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": "West Europe", "state": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -125,15 +125,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '456' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:44:12 GMT + - Wed, 20 May 2026 10:10:03 GMT Pragma: - no-cache RequestId: - - 506f03fa-603e-4eee-a4e9-3a4e6cfa14db + - 0112e862-0bde-482b-974a-45f88b007d74 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -141,14 +141,15 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: code: 200 message: OK - request: - body: '{"displayName": "fabriccli_WorkspacePerTestclass_000001", "capacityId": "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabriccli_WorkspacePerTestclass_000001", "capacityId": + "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -158,16 +159,16 @@ interactions: - keep-alive Content-Length: - '124' - Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.1.0 (None; Linux; x86_64; 5.15.167.4-microsoft-standard-WSL2) + - ms-fabric-cli/1.6.1 (stop; Linux/6.12.76-linuxkit; Python/3.12.11) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "431e99c3-79af-4cdf-9019-94a41d1243dc", "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "aaaf2004-b4e4-403d-809d-86c1fb7e4359", "displayName": "fabriccli_WorkspacePerTestclass_000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -176,17 +177,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '189' + - '177' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:44:19 GMT + - Wed, 20 May 2026 10:10:10 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc + - https://api.fabric.microsoft.com/v1/workspaces/aaaf2004-b4e4-403d-809d-86c1fb7e4359 Pragma: - no-cache RequestId: - - 9a415be2-e074-4229-ac23-535edcd25ea9 + - 29166a9b-cc8b-42d1-9d82-00137d73ea4d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -194,7 +195,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -212,14 +213,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.1.0 (stop; Linux; x86_64; 5.15.167.4-microsoft-standard-WSL2) + - ms-fabric-cli/1.6.1 (stop; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "431e99c3-79af-4cdf-9019-94a41d1243dc", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "aaaf2004-b4e4-403d-809d-86c1fb7e4359", + "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: - - '566' + - '2625' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:47:38 GMT + - Wed, 20 May 2026 10:13:18 GMT Pragma: - no-cache RequestId: - - 6fd01ae6-7aff-4637-b4e8-c9c446ae4dee + - c5fb4449-fc88-4843-9b0c-ba1115ccd506 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -244,7 +246,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -262,9 +264,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.1.0 (stop; Linux; x86_64; 5.15.167.4-microsoft-standard-WSL2) + - ms-fabric-cli/1.6.1 (stop; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc/items + uri: https://api.fabric.microsoft.com/v1/workspaces/aaaf2004-b4e4-403d-809d-86c1fb7e4359/items response: body: string: '{"value": []}' @@ -280,11 +282,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:47:38 GMT + - Wed, 20 May 2026 10:13:18 GMT Pragma: - no-cache RequestId: - - a85ea4c4-8422-4af8-a0a4-0d20169de974 + - 5d1725d7-38c4-441a-add4-48735469b119 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -292,7 +294,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -312,9 +314,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.1.0 (stop; Linux; x86_64; 5.15.167.4-microsoft-standard-WSL2) + - ms-fabric-cli/1.6.1 (stop; Linux/6.12.76-linuxkit; Python/3.12.11) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc + uri: https://api.fabric.microsoft.com/v1/workspaces/aaaf2004-b4e4-403d-809d-86c1fb7e4359 response: body: string: '' @@ -330,11 +332,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 16 Sep 2025 08:47:39 GMT + - Wed, 20 May 2026 10:13:19 GMT Pragma: - no-cache RequestId: - - 7801f0ea-84e3-4fe6-8622-9dbbba691d70 + - d1087945-aaa5-46ed-84c0-2cd4b850c80e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -342,7 +344,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: diff --git a/tests/test_commands/recordings/test_commands/test_stop/test_stop_capacity_already_paused_failure.yaml b/tests/test_commands/recordings/test_commands/test_stop/test_stop_capacity_already_paused_failure.yaml index fcf166455..b61a61500 100644 --- a/tests/test_commands/recordings/test_commands/test_stop/test_stop_capacity_already_paused_failure.yaml +++ b/tests/test_commands/recordings/test_commands/test_stop/test_stop_capacity_already_paused_failure.yaml @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -27,15 +27,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '456' + - '425' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:05:05 GMT + - Wed, 20 May 2026 10:08:49 GMT Pragma: - no-cache RequestId: - - c6ee0c0b-60dd-4231-b160-e70fd7018f88 + - a7787957-1198-464f-9a0e-53d348cf668d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -43,7 +43,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -60,11 +60,11 @@ interactions: Connection: - keep-alive Content-Length: - - '149' + - '165' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -75,21 +75,21 @@ interactions: "westeurope", "sku": {"name": "F2", "tier": "Fabric"}}' headers: Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/00C2335D-E1F8-44A0-8E79-59DABBD485AC?api-version=2022-07-01-preview&t=638924835086081855&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=n-xAWE0GdCMVx6EODwCzrK4qeigBjYsrP0F-EaYiS-VV8EewHax5wzDGc38xInd-vX0kUGEkK2Z5qreWZ0-Sub_yg-bvWoesfACXDbEOJeHDG2Qwj2ONJ_nABmDb1frj_leRYbTqLxhQL8duSTkKqPFEPCrYrRa53M3Jlj5gbV1ayh4cp4NFGsOFzVMIA8mPIBL42_isou72nVFWVI1DRLPMja7JTZkZGuJx_NwKFZ9jMeKUHoNnCbr6mnoWD95-V6j39Mc2WIftV1wBlTPx7VsN1zvZRn53OUFo_9yRnd01UlBAXizhaaNV-GInompSQSBZrg91M5DYByEE0PpKsQ&h=OctDt2LK5U1ecTRFhY0NNysqhInjjG_-qv3MDQXu84A + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/094B676A-1B3F-4407-A0B5-52CD449BA2C1?api-version=2022-07-01-preview&t=639148685341415034&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=Or4f2cK4bAVfvjmEZVK2xqXjbRP1cgOL21AuJiw4k-J_Y1paOnefuOZkAd7_udrCJTUdJ2LaH87ABThthCGI6CwCPfR-aYI2K-TT3mbzXcLH5r66CF0vhaqj2vKoJFoCvu2qArdXHgM7azQgjL4yaougzXOY2Y75mcas687tOXJQMvxscx3oIkKdc6OhL9_75d4nhijK0Xj0dFhqaMK3dRrFsNUWGZM5G04TTzv9e-STp19tlmubjqp3mkbpDjV8Z_th3WJw7xUCL32-52UfIHOuG489PBLCc-BTgd_TCL3UAC-8nC_ckcPkk69wHEUuGyqjt9aShpX0GScl6mKCWw&h=KOt0NuPHV07AYY3A9wS284OeLoCfOjajYhfFjuoZFFI Cache-Control: - no-cache Content-Length: - - '406' + - '422' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:05:08 GMT + - Wed, 20 May 2026 10:08:53 GMT Expires: - '-1' Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/00C2335D-E1F8-44A0-8E79-59DABBD485AC?api-version=2022-07-01-preview&t=638924835086081855&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=k7ASH-NhtqAaai9xp9ipq1nSYe6NWGr1rjDBtEu5L8PtuItin9bjYeBTB5HWV31J928s1lsUAQkXc-6EHsc-dFaCNftRJdE3V0YjhEd02MqxCDYkxetu2PiBFN40zBHdZHHJvzYG4QkBy2w04Bc9I7q5IX8Ar4E2guGtyMN8dKYtrmdEkJ-nsZNISZhJXxX3vHDOrDDsDmxSbAmQ6IbFOLclrx7wtHboFkhzjvE-BebafvdSqO5KfRNqbDiJ1lWaRNkEHw-MQYsJ6PLeUQ-esBQjy-Ujev6o3HTSUyvIRZlELdB5FcVCiIuv8__gPsHTn6QC5PXWslQyQyPcChfCbw&h=JlEMRqM27ZzUaTgqcODYRrYXjiKBvOXgIZlzRxLGj6k + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/094B676A-1B3F-4407-A0B5-52CD449BA2C1?api-version=2022-07-01-preview&t=639148685341415034&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=KkijnyJ2AaOh7HynbhIYXJN03uuam1gtvQVhj9vNkKJV50g1TGaiTD0khn3bQhftsEPUf8Qc3x-J5WoefrjNaJ_90VkuuLveXuqENiYfs4czyRmacA-kmAoBAt_FWmMaCfLhGWHy3qfnAXmwZ75_UzIQ3Apc1BmSSxNcuQi_asTUIOhNF86qpZWl5_nu8lZAagiYdrisAcedVJ76X9vs0OBUN18uHrbSsVf09zcxHIizy213HX-a56Jk0IpwnCxLTwrZwqb9Zy_aviKZQByK51_o2WGHsqT9nNl1FUAs_0kPR9nVjGByx0Y9mk5URKCA-gCLOZUg6zKEsg6D8DRwyA&h=dZu4yN8AwZDR5XiIWgVyc_QeXogLFejSfAfQyQq-LiA Pragma: - no-cache Strict-Transport-Security: @@ -117,25 +117,25 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/00C2335D-E1F8-44A0-8E79-59DABBD485AC?api-version=2022-07-01-preview&t=638924835086081855&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=n-xAWE0GdCMVx6EODwCzrK4qeigBjYsrP0F-EaYiS-VV8EewHax5wzDGc38xInd-vX0kUGEkK2Z5qreWZ0-Sub_yg-bvWoesfACXDbEOJeHDG2Qwj2ONJ_nABmDb1frj_leRYbTqLxhQL8duSTkKqPFEPCrYrRa53M3Jlj5gbV1ayh4cp4NFGsOFzVMIA8mPIBL42_isou72nVFWVI1DRLPMja7JTZkZGuJx_NwKFZ9jMeKUHoNnCbr6mnoWD95-V6j39Mc2WIftV1wBlTPx7VsN1zvZRn53OUFo_9yRnd01UlBAXizhaaNV-GInompSQSBZrg91M5DYByEE0PpKsQ&h=OctDt2LK5U1ecTRFhY0NNysqhInjjG_-qv3MDQXu84A + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/094B676A-1B3F-4407-A0B5-52CD449BA2C1?api-version=2022-07-01-preview&t=639148685341415034&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=Or4f2cK4bAVfvjmEZVK2xqXjbRP1cgOL21AuJiw4k-J_Y1paOnefuOZkAd7_udrCJTUdJ2LaH87ABThthCGI6CwCPfR-aYI2K-TT3mbzXcLH5r66CF0vhaqj2vKoJFoCvu2qArdXHgM7azQgjL4yaougzXOY2Y75mcas687tOXJQMvxscx3oIkKdc6OhL9_75d4nhijK0Xj0dFhqaMK3dRrFsNUWGZM5G04TTzv9e-STp19tlmubjqp3mkbpDjV8Z_th3WJw7xUCL32-52UfIHOuG489PBLCc-BTgd_TCL3UAC-8nC_ckcPkk69wHEUuGyqjt9aShpX0GScl6mKCWw&h=KOt0NuPHV07AYY3A9wS284OeLoCfOjajYhfFjuoZFFI response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/00C2335D-E1F8-44A0-8E79-59DABBD485AC", - "name": "00C2335D-E1F8-44A0-8E79-59DABBD485AC", "status": "Provisioning", - "startTime": "2025-09-03T08:05:07.7970000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/094B676A-1B3F-4407-A0B5-52CD449BA2C1", + "name": "094B676A-1B3F-4407-A0B5-52CD449BA2C1", "status": "Succeeded", "startTime": + "2026-05-20T10:08:52.9330000Z", "endTime": "2026-05-20T10:08:55.5700000Z"}' headers: Cache-Control: - no-cache Content-Length: - - '249' + - '287' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:05:08 GMT + - Wed, 20 May 2026 10:09:04 GMT Expires: - '-1' Pragma: @@ -165,39 +165,42 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/00C2335D-E1F8-44A0-8E79-59DABBD485AC?api-version=2022-07-01-preview&t=638924835086081855&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=n-xAWE0GdCMVx6EODwCzrK4qeigBjYsrP0F-EaYiS-VV8EewHax5wzDGc38xInd-vX0kUGEkK2Z5qreWZ0-Sub_yg-bvWoesfACXDbEOJeHDG2Qwj2ONJ_nABmDb1frj_leRYbTqLxhQL8duSTkKqPFEPCrYrRa53M3Jlj5gbV1ayh4cp4NFGsOFzVMIA8mPIBL42_isou72nVFWVI1DRLPMja7JTZkZGuJx_NwKFZ9jMeKUHoNnCbr6mnoWD95-V6j39Mc2WIftV1wBlTPx7VsN1zvZRn53OUFo_9yRnd01UlBAXizhaaNV-GInompSQSBZrg91M5DYByEE0PpKsQ&h=OctDt2LK5U1ecTRFhY0NNysqhInjjG_-qv3MDQXu84A + uri: https://api.fabric.microsoft.com/v1/capacities response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/00C2335D-E1F8-44A0-8E79-59DABBD485AC", - "name": "00C2335D-E1F8-44A0-8E79-59DABBD485AC", "status": "Provisioning", - "startTime": "2025-09-03T08:05:07.7970000Z"}' + string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "263cfefb-3b12-4305-8f9c-e3526e7335d7", "displayName": "fabcli000001", + "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: + Access-Control-Expose-Headers: + - RequestId Cache-Control: - - no-cache + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip Content-Length: - - '249' - Content-Security-Policy: - - script-src 'self' + - '460' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:05:09 GMT - Expires: - - '-1' + - Wed, 20 May 2026 10:09:10 GMT Pragma: - no-cache + RequestId: + - b75847c5-e26f-45d1-ae97-bfab9a61ed14 Strict-Transport-Security: - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Frame-Options: - deny - X-XSS-Protection: - - 1; mode=block + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' status: code: 200 message: OK @@ -213,39 +216,42 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/00C2335D-E1F8-44A0-8E79-59DABBD485AC?api-version=2022-07-01-preview&t=638924835086081855&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=n-xAWE0GdCMVx6EODwCzrK4qeigBjYsrP0F-EaYiS-VV8EewHax5wzDGc38xInd-vX0kUGEkK2Z5qreWZ0-Sub_yg-bvWoesfACXDbEOJeHDG2Qwj2ONJ_nABmDb1frj_leRYbTqLxhQL8duSTkKqPFEPCrYrRa53M3Jlj5gbV1ayh4cp4NFGsOFzVMIA8mPIBL42_isou72nVFWVI1DRLPMja7JTZkZGuJx_NwKFZ9jMeKUHoNnCbr6mnoWD95-V6j39Mc2WIftV1wBlTPx7VsN1zvZRn53OUFo_9yRnd01UlBAXizhaaNV-GInompSQSBZrg91M5DYByEE0PpKsQ&h=OctDt2LK5U1ecTRFhY0NNysqhInjjG_-qv3MDQXu84A + uri: https://api.fabric.microsoft.com/v1/capacities response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/00C2335D-E1F8-44A0-8E79-59DABBD485AC", - "name": "00C2335D-E1F8-44A0-8E79-59DABBD485AC", "status": "Provisioning", - "startTime": "2025-09-03T08:05:07.7970000Z"}' + string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "263cfefb-3b12-4305-8f9c-e3526e7335d7", "displayName": "fabcli000001", + "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: + Access-Control-Expose-Headers: + - RequestId Cache-Control: - - no-cache + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip Content-Length: - - '249' - Content-Security-Policy: - - script-src 'self' + - '459' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:05:09 GMT - Expires: - - '-1' + - Wed, 20 May 2026 10:09:15 GMT Pragma: - no-cache + RequestId: + - ec55289a-1898-4d53-bf3b-04e67623c815 Strict-Transport-Security: - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Frame-Options: - deny - X-XSS-Protection: - - 1; mode=block + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' status: code: 200 message: OK @@ -261,25 +267,26 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/00C2335D-E1F8-44A0-8E79-59DABBD485AC?api-version=2022-07-01-preview&t=638924835086081855&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=n-xAWE0GdCMVx6EODwCzrK4qeigBjYsrP0F-EaYiS-VV8EewHax5wzDGc38xInd-vX0kUGEkK2Z5qreWZ0-Sub_yg-bvWoesfACXDbEOJeHDG2Qwj2ONJ_nABmDb1frj_leRYbTqLxhQL8duSTkKqPFEPCrYrRa53M3Jlj5gbV1ayh4cp4NFGsOFzVMIA8mPIBL42_isou72nVFWVI1DRLPMja7JTZkZGuJx_NwKFZ9jMeKUHoNnCbr6mnoWD95-V6j39Mc2WIftV1wBlTPx7VsN1zvZRn53OUFo_9yRnd01UlBAXizhaaNV-GInompSQSBZrg91M5DYByEE0PpKsQ&h=OctDt2LK5U1ecTRFhY0NNysqhInjjG_-qv3MDQXu84A + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/00C2335D-E1F8-44A0-8E79-59DABBD485AC", - "name": "00C2335D-E1F8-44A0-8E79-59DABBD485AC", "status": "Provisioning", - "startTime": "2025-09-03T08:05:07.7970000Z"}' + string: '{"properties": {"provisioningState": "Succeeded", "state": "Active", + "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", + "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": + "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}' headers: Cache-Control: - no-cache Content-Length: - - '249' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:05:10 GMT + - Wed, 20 May 2026 10:09:16 GMT Expires: - '-1' Pragma: @@ -309,25 +316,26 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/00C2335D-E1F8-44A0-8E79-59DABBD485AC?api-version=2022-07-01-preview&t=638924835086081855&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=n-xAWE0GdCMVx6EODwCzrK4qeigBjYsrP0F-EaYiS-VV8EewHax5wzDGc38xInd-vX0kUGEkK2Z5qreWZ0-Sub_yg-bvWoesfACXDbEOJeHDG2Qwj2ONJ_nABmDb1frj_leRYbTqLxhQL8duSTkKqPFEPCrYrRa53M3Jlj5gbV1ayh4cp4NFGsOFzVMIA8mPIBL42_isou72nVFWVI1DRLPMja7JTZkZGuJx_NwKFZ9jMeKUHoNnCbr6mnoWD95-V6j39Mc2WIftV1wBlTPx7VsN1zvZRn53OUFo_9yRnd01UlBAXizhaaNV-GInompSQSBZrg91M5DYByEE0PpKsQ&h=OctDt2LK5U1ecTRFhY0NNysqhInjjG_-qv3MDQXu84A + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/00C2335D-E1F8-44A0-8E79-59DABBD485AC", - "name": "00C2335D-E1F8-44A0-8E79-59DABBD485AC", "status": "Provisioning", - "startTime": "2025-09-03T08:05:07.7970000Z"}' + string: '{"properties": {"provisioningState": "Succeeded", "state": "Active", + "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", + "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": + "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}' headers: Cache-Control: - no-cache Content-Length: - - '249' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:05:15 GMT + - Wed, 20 May 2026 10:09:17 GMT Expires: - '-1' Pragma: @@ -354,30 +362,32 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Length: + - '0' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/00C2335D-E1F8-44A0-8E79-59DABBD485AC?api-version=2022-07-01-preview&t=638924835086081855&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=n-xAWE0GdCMVx6EODwCzrK4qeigBjYsrP0F-EaYiS-VV8EewHax5wzDGc38xInd-vX0kUGEkK2Z5qreWZ0-Sub_yg-bvWoesfACXDbEOJeHDG2Qwj2ONJ_nABmDb1frj_leRYbTqLxhQL8duSTkKqPFEPCrYrRa53M3Jlj5gbV1ayh4cp4NFGsOFzVMIA8mPIBL42_isou72nVFWVI1DRLPMja7JTZkZGuJx_NwKFZ9jMeKUHoNnCbr6mnoWD95-V6j39Mc2WIftV1wBlTPx7VsN1zvZRn53OUFo_9yRnd01UlBAXizhaaNV-GInompSQSBZrg91M5DYByEE0PpKsQ&h=OctDt2LK5U1ecTRFhY0NNysqhInjjG_-qv3MDQXu84A + - ms-fabric-cli-test/1.6.1 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001/suspend?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/00C2335D-E1F8-44A0-8E79-59DABBD485AC", - "name": "00C2335D-E1F8-44A0-8E79-59DABBD485AC", "status": "Succeeded", "startTime": - "2025-09-03T08:05:07.7970000Z", "endTime": "2025-09-03T08:05:15.6400000Z"}' + string: '' headers: + Azure-AsyncOperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/BD72834D-285E-4505-B131-EB1C241DBF4C?api-version=2022-07-01-preview&t=639148685598206963&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=u7wpGZAOBpTUg1dY2KVgizhRVyK9sU-VnnVujXQKjbf6FDijSv_pnYqF0Y6WI17SkGjFjyjPF2Gamn3SEgr5C-hZtBVCVfQZeSfMuk5YY2tpyVuQEgd2mUMFbNFZvXvH9rrzBAmsczdIPSEBlbIs-r4aDb8b3CrE8I5Gm3v6CY6uRirB2lHZ62kJxATRlmsm-8zKoM8upveOJGzSu5o_92aY75sKJT05uq7yjrhIV4W-LB5v86UiUJnGuBBNpu1zVAnD0F_dxV8BTxhXlyZCJV5V3sKrNOAI5TCUTjw041BwluHQlwWen9o6vFMBNSZD0qYyRtQ5-XCCmYs5qKU7CQ&h=waVvmA9QK6GKNkeLxjBiZ4qXDaGZMQdnDdt0KySt6EI Cache-Control: - no-cache Content-Length: - - '287' + - '0' Content-Security-Policy: - script-src 'self' - Content-Type: - - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:05:22 GMT + - Wed, 20 May 2026 10:09:19 GMT Expires: - '-1' + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/BD72834D-285E-4505-B131-EB1C241DBF4C?api-version=2022-07-01-preview&t=639148685598206963&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=0jQT0LKA59nkmyh-YEpbO3zo-bf2vVa0yN31oMfs9D4ZiuNOfEHED_-jrrCWtTVHpFBPZWrLD2yT31fyM74oow7PcFTLlq9NJQWZHg9_ByFT2OwXgdASEFXIbOf6xZu1xF_qhEB8qZUh_pT_Bs-pKYv9bsiGh_JvHq877B1r5VY0YP7CuhfXphqASLt_2CDOGGG1rHtUUfkL12qVixJdmXwDevOuuRh_VncXBSBt_W3uPWKxfEONg3CabivvIrqtXOlkNUYtQYI302t1a2vAoLiRuXx_qFRdJrMAWyTtibsO5MZgpOP9O0WKCfkF3IzKBYg-AXP1pte3tKrPKKoVPA&h=E5NT0JPYRK1FZCJKX9r0Yks0JFps2fMzmbR9BhEebkk Pragma: - no-cache Strict-Transport-Security: @@ -391,8 +401,8 @@ interactions: X-XSS-Protection: - 1; mode=block status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -405,42 +415,39 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/capacities + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/BD72834D-285E-4505-B131-EB1C241DBF4C?api-version=2022-07-01-preview&t=639148685598206963&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=u7wpGZAOBpTUg1dY2KVgizhRVyK9sU-VnnVujXQKjbf6FDijSv_pnYqF0Y6WI17SkGjFjyjPF2Gamn3SEgr5C-hZtBVCVfQZeSfMuk5YY2tpyVuQEgd2mUMFbNFZvXvH9rrzBAmsczdIPSEBlbIs-r4aDb8b3CrE8I5Gm3v6CY6uRirB2lHZ62kJxATRlmsm-8zKoM8upveOJGzSu5o_92aY75sKJT05uq7yjrhIV4W-LB5v86UiUJnGuBBNpu1zVAnD0F_dxV8BTxhXlyZCJV5V3sKrNOAI5TCUTjw041BwluHQlwWen9o6vFMBNSZD0qYyRtQ5-XCCmYs5qKU7CQ&h=waVvmA9QK6GKNkeLxjBiZ4qXDaGZMQdnDdt0KySt6EI response: body: - string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F16", "region": "West Europe", "state": - "Active"}, {"id": "f9268a2d-7378-4005-9551-2d6ce5e7502e", "displayName": "fabcli000001", - "sku": "F2", "region": "West Europe", "state": "Active"}]}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/BD72834D-285E-4505-B131-EB1C241DBF4C", + "name": "BD72834D-285E-4505-B131-EB1C241DBF4C", "status": "Succeeded", "startTime": + "2026-05-20T10:09:19.2030000Z", "endTime": "2026-05-20T10:09:28.7430000Z"}' headers: - Access-Control-Expose-Headers: - - RequestId Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip + - no-cache Content-Length: - - '491' + - '287' + Content-Security-Policy: + - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:05:26 GMT + - Wed, 20 May 2026 10:09:31 GMT + Expires: + - '-1' Pragma: - no-cache - RequestId: - - c0fd64bf-37a6-4a0f-bba2-1238afabdb01 Strict-Transport-Security: - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Frame-Options: - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' + X-XSS-Protection: + - 1; mode=block status: code: 200 message: OK @@ -456,15 +463,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": - "Active"}, {"id": "f9268a2d-7378-4005-9551-2d6ce5e7502e", "displayName": "fabcli000001", - "sku": "F2", "region": "West Europe", "state": "Active"}]}' + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "263cfefb-3b12-4305-8f9c-e3526e7335d7", "displayName": "fabcli000001", + "sku": "F2", "region": "West Europe", "state": "Inactive"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -473,15 +480,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '491' + - '469' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:05:30 GMT + - Wed, 20 May 2026 10:09:35 GMT Pragma: - no-cache RequestId: - - 14a7ac8c-7f9b-4668-9fdd-cd3b1f4e4026 + - fb085c64-b65f-4437-a838-3c619bd0ca0d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -489,7 +496,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -507,12 +514,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: body: - string: '{"properties": {"provisioningState": "Succeeded", "state": "Active", + string: '{"properties": {"provisioningState": "Succeeded", "state": "Paused", "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}' @@ -520,13 +527,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:05:30 GMT + - Wed, 20 May 2026 10:09:36 GMT Expires: - '-1' Pragma: @@ -556,12 +563,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: body: - string: '{"properties": {"provisioningState": "Succeeded", "state": "Active", + string: '{"properties": {"provisioningState": "Succeeded", "state": "Paused", "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}' @@ -569,13 +576,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:05:30 GMT + - Wed, 20 May 2026 10:09:38 GMT Expires: - '-1' Pragma: @@ -593,56 +600,6 @@ 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.0.0 - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001/suspend?api-version=2023-11-01 - response: - body: - string: '' - headers: - Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/726BF64E-0BEF-456A-AE07-BBC7AF70981E?api-version=2022-07-01-preview&t=638924835324161887&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=c3BQQvHMloBxpTtI9Wpp3o89Tl6U3RvbERsq_L4Iq9oYBZSB0cLCISdCMQ-GRPF4VkBhlZpWKxaUOHOlURYJVGVPyaSL0JlmJkKhgCDikrSz1IYFgad52M4woN3x6TM6DN1BC75NXBQ5Rqn59MxJU6ZjujkiGECczikjCR_yyWvuOBbikL_vZ1qXGAbj5U1khzZHqLSCzu2nRwgXMuTwegTL7pZ7hWMLDChcoYVMWLIJ0UDmtWaxMMFuCfGALliW38yQ3XVPSruuxsbqp1llHcWjx2t2-xVecYoRb22v4uAmKJc9OR7kOrsF0BhQ0ZptxfFKL-nnDOPIgAmB-DxS5g&h=YyhiZGDCIq82eUDmERwZcvRANhQK0Kvq6NsuBKYUOt0 - Cache-Control: - - no-cache - Content-Length: - - '0' - Content-Security-Policy: - - script-src 'self' - Date: - - Wed, 03 Sep 2025 08:05:31 GMT - Expires: - - '-1' - Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/726BF64E-0BEF-456A-AE07-BBC7AF70981E?api-version=2022-07-01-preview&t=638924835324161887&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=aYMlP1oMq6BT89KT-a5DX73AoyI-xm1KMUa9A3K0dfGReHiybs1eweb2rGpnjMG4DbvGzg5puTmRljnzEwhI0kf-48722ea31MIOxh68YIX3fugu4shXgxWOOX5P4uIn_dHJ-Q7oBD-867LeBzikYWB04swI1G7UavawyFWJUVtC78Sr1zeGrx0b2lbEQgN7gHSPZbolYxTv4d_D9Xld-bmpl_bgvZ23jj9wCFQ8PqrOw36zooY9fsoxzzD7BlPuPGAwrXzq0rf6Yh1mZvstqXO6FpRfqfcUFG17-KPNTAEGkzazEIf7a4FrMWHs56NQThncOvchk8AzCJua8fxrww&h=eZ0eMWyFqeJTXJHxngz1X1_Fe-fomGuM3r0jL05GkYg - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 202 - message: Accepted - request: body: null headers: @@ -655,39 +612,42 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/726BF64E-0BEF-456A-AE07-BBC7AF70981E?api-version=2022-07-01-preview&t=638924835324161887&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=c3BQQvHMloBxpTtI9Wpp3o89Tl6U3RvbERsq_L4Iq9oYBZSB0cLCISdCMQ-GRPF4VkBhlZpWKxaUOHOlURYJVGVPyaSL0JlmJkKhgCDikrSz1IYFgad52M4woN3x6TM6DN1BC75NXBQ5Rqn59MxJU6ZjujkiGECczikjCR_yyWvuOBbikL_vZ1qXGAbj5U1khzZHqLSCzu2nRwgXMuTwegTL7pZ7hWMLDChcoYVMWLIJ0UDmtWaxMMFuCfGALliW38yQ3XVPSruuxsbqp1llHcWjx2t2-xVecYoRb22v4uAmKJc9OR7kOrsF0BhQ0ZptxfFKL-nnDOPIgAmB-DxS5g&h=YyhiZGDCIq82eUDmERwZcvRANhQK0Kvq6NsuBKYUOt0 + uri: https://api.fabric.microsoft.com/v1/capacities response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/726BF64E-0BEF-456A-AE07-BBC7AF70981E", - "name": "726BF64E-0BEF-456A-AE07-BBC7AF70981E", "status": "Pausing", "startTime": - "2025-09-03T08:05:31.7900000Z"}' + string: '{"value": [{"id": "263cfefb-3b12-4305-8f9c-e3526e7335d7", "displayName": + "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Inactive"}, + {"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-cache + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip Content-Length: - - '244' - Content-Security-Policy: - - script-src 'self' + - '465' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:05:31 GMT - Expires: - - '-1' + - Wed, 20 May 2026 10:09:41 GMT Pragma: - no-cache + RequestId: + - 9ad5b738-bb40-4110-9238-5906fdb041a0 Strict-Transport-Security: - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Frame-Options: - deny - X-XSS-Protection: - - 1; mode=block + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' status: code: 200 message: OK @@ -703,25 +663,22 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/726BF64E-0BEF-456A-AE07-BBC7AF70981E?api-version=2022-07-01-preview&t=638924835324161887&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=c3BQQvHMloBxpTtI9Wpp3o89Tl6U3RvbERsq_L4Iq9oYBZSB0cLCISdCMQ-GRPF4VkBhlZpWKxaUOHOlURYJVGVPyaSL0JlmJkKhgCDikrSz1IYFgad52M4woN3x6TM6DN1BC75NXBQ5Rqn59MxJU6ZjujkiGECczikjCR_yyWvuOBbikL_vZ1qXGAbj5U1khzZHqLSCzu2nRwgXMuTwegTL7pZ7hWMLDChcoYVMWLIJ0UDmtWaxMMFuCfGALliW38yQ3XVPSruuxsbqp1llHcWjx2t2-xVecYoRb22v4uAmKJc9OR7kOrsF0BhQ0ZptxfFKL-nnDOPIgAmB-DxS5g&h=YyhiZGDCIq82eUDmERwZcvRANhQK0Kvq6NsuBKYUOt0 + uri: https://management.azure.com/subscriptions/placeholder/resourceGroups/placeholder/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/726BF64E-0BEF-456A-AE07-BBC7AF70981E", - "name": "726BF64E-0BEF-456A-AE07-BBC7AF70981E", "status": "Pausing", "startTime": - "2025-09-03T08:05:31.7900000Z"}' + string: '{"error": {"code": "InvalidSubscriptionId", "message": "The provided + subscription identifier ''placeholder'' is malformed or invalid."}}' headers: Cache-Control: - no-cache Content-Length: - - '244' - Content-Security-Policy: - - script-src 'self' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:05:32 GMT + - Wed, 20 May 2026 10:09:42 GMT Expires: - '-1' Pragma: @@ -732,13 +689,9 @@ interactions: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: body: null headers: @@ -751,25 +704,22 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/726BF64E-0BEF-456A-AE07-BBC7AF70981E?api-version=2022-07-01-preview&t=638924835324161887&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=c3BQQvHMloBxpTtI9Wpp3o89Tl6U3RvbERsq_L4Iq9oYBZSB0cLCISdCMQ-GRPF4VkBhlZpWKxaUOHOlURYJVGVPyaSL0JlmJkKhgCDikrSz1IYFgad52M4woN3x6TM6DN1BC75NXBQ5Rqn59MxJU6ZjujkiGECczikjCR_yyWvuOBbikL_vZ1qXGAbj5U1khzZHqLSCzu2nRwgXMuTwegTL7pZ7hWMLDChcoYVMWLIJ0UDmtWaxMMFuCfGALliW38yQ3XVPSruuxsbqp1llHcWjx2t2-xVecYoRb22v4uAmKJc9OR7kOrsF0BhQ0ZptxfFKL-nnDOPIgAmB-DxS5g&h=YyhiZGDCIq82eUDmERwZcvRANhQK0Kvq6NsuBKYUOt0 + uri: https://management.azure.com/subscriptions?api-version=2022-12-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/726BF64E-0BEF-456A-AE07-BBC7AF70981E", - "name": "726BF64E-0BEF-456A-AE07-BBC7AF70981E", "status": "Pausing", "startTime": - "2025-09-03T08:05:31.7900000Z"}' + string: '{"value": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000"}], + "count": {"type": "Total", "value": 1}}' headers: Cache-Control: - no-cache Content-Length: - - '244' - Content-Security-Policy: - - script-src 'self' + - '469' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:05:33 GMT + - Wed, 20 May 2026 10:09:42 GMT Expires: - '-1' Pragma: @@ -780,10 +730,6 @@ interactions: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block status: code: 200 message: OK @@ -799,25 +745,29 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/726BF64E-0BEF-456A-AE07-BBC7AF70981E?api-version=2022-07-01-preview&t=638924835324161887&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=c3BQQvHMloBxpTtI9Wpp3o89Tl6U3RvbERsq_L4Iq9oYBZSB0cLCISdCMQ-GRPF4VkBhlZpWKxaUOHOlURYJVGVPyaSL0JlmJkKhgCDikrSz1IYFgad52M4woN3x6TM6DN1BC75NXBQ5Rqn59MxJU6ZjujkiGECczikjCR_yyWvuOBbikL_vZ1qXGAbj5U1khzZHqLSCzu2nRwgXMuTwegTL7pZ7hWMLDChcoYVMWLIJ0UDmtWaxMMFuCfGALliW38yQ3XVPSruuxsbqp1llHcWjx2t2-xVecYoRb22v4uAmKJc9OR7kOrsF0BhQ0ZptxfFKL-nnDOPIgAmB-DxS5g&h=YyhiZGDCIq82eUDmERwZcvRANhQK0Kvq6NsuBKYUOt0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/capacities?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/726BF64E-0BEF-456A-AE07-BBC7AF70981E", - "name": "726BF64E-0BEF-456A-AE07-BBC7AF70981E", "status": "Pausing", "startTime": - "2025-09-03T08:05:31.7900000Z"}' + string: '{"value": [{"properties": {"provisioningState": "Succeeded", "state": + "Active", "administration": {"members": ["mocked@admin_test_user", "4fdd0762-85fe-4f8b-90dc-776e8605e0b9"]}}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/mocked_fabriccli_capacity_name", + "name": "mocked_fabriccli_capacity_name", "type": "Microsoft.Fabric/capacities", + "location": "Central US", "sku": {"name": "F16", "tier": "Fabric"}, "tags": + {}}, {"properties": {"provisioningState": "Succeeded", "state": "Paused", + "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", + "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": + "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}]}' headers: Cache-Control: - no-cache Content-Length: - - '244' - Content-Security-Policy: - - script-src 'self' + - '2562' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:05:34 GMT + - Wed, 20 May 2026 10:09:44 GMT Expires: - '-1' Pragma: @@ -828,10 +778,6 @@ interactions: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block status: code: 200 message: OK @@ -844,423 +790,32 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/726BF64E-0BEF-456A-AE07-BBC7AF70981E?api-version=2022-07-01-preview&t=638924835324161887&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=c3BQQvHMloBxpTtI9Wpp3o89Tl6U3RvbERsq_L4Iq9oYBZSB0cLCISdCMQ-GRPF4VkBhlZpWKxaUOHOlURYJVGVPyaSL0JlmJkKhgCDikrSz1IYFgad52M4woN3x6TM6DN1BC75NXBQ5Rqn59MxJU6ZjujkiGECczikjCR_yyWvuOBbikL_vZ1qXGAbj5U1khzZHqLSCzu2nRwgXMuTwegTL7pZ7hWMLDChcoYVMWLIJ0UDmtWaxMMFuCfGALliW38yQ3XVPSruuxsbqp1llHcWjx2t2-xVecYoRb22v4uAmKJc9OR7kOrsF0BhQ0ZptxfFKL-nnDOPIgAmB-DxS5g&h=YyhiZGDCIq82eUDmERwZcvRANhQK0Kvq6NsuBKYUOt0 - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/726BF64E-0BEF-456A-AE07-BBC7AF70981E", - "name": "726BF64E-0BEF-456A-AE07-BBC7AF70981E", "status": "Pausing", "startTime": - "2025-09-03T08:05:31.7900000Z"}' - headers: - Cache-Control: - - no-cache Content-Length: - - '244' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:05:38 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive + - '0' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/726BF64E-0BEF-456A-AE07-BBC7AF70981E?api-version=2022-07-01-preview&t=638924835324161887&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=c3BQQvHMloBxpTtI9Wpp3o89Tl6U3RvbERsq_L4Iq9oYBZSB0cLCISdCMQ-GRPF4VkBhlZpWKxaUOHOlURYJVGVPyaSL0JlmJkKhgCDikrSz1IYFgad52M4woN3x6TM6DN1BC75NXBQ5Rqn59MxJU6ZjujkiGECczikjCR_yyWvuOBbikL_vZ1qXGAbj5U1khzZHqLSCzu2nRwgXMuTwegTL7pZ7hWMLDChcoYVMWLIJ0UDmtWaxMMFuCfGALliW38yQ3XVPSruuxsbqp1llHcWjx2t2-xVecYoRb22v4uAmKJc9OR7kOrsF0BhQ0ZptxfFKL-nnDOPIgAmB-DxS5g&h=YyhiZGDCIq82eUDmERwZcvRANhQK0Kvq6NsuBKYUOt0 + - ms-fabric-cli-test/1.6.1 + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/726BF64E-0BEF-456A-AE07-BBC7AF70981E", - "name": "726BF64E-0BEF-456A-AE07-BBC7AF70981E", "status": "Succeeded", "startTime": - "2025-09-03T08:05:31.7900000Z", "endTime": "2025-09-03T08:05:42.2600000Z"}' + string: '' headers: + Azure-AsyncOperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/08FD4E8D-A7DC-468D-99B1-E9F9D957E26E?api-version=2022-07-01-preview&t=639148685868724126&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=AF_BLHnKj5U1mjt4EwNC5_ygv0N6OJSH-1XA8xwapVTcpTJ0Fk2awV_awQjnYzR0Tp2OH9aF1Xf0eC1AOsI6DwaVo34MoB2PAQXXUpEQrkWbh6iXI-E2sJgh31S4Fvt9ip0n5I7psMGOz_foA-eM5sAGwvf17RJkMoqoGSj_iMct4rZK-2m5EU5E1hl41x5a9aFLEjltEzwzOsfdz5VHAbO4diHx35vO4xaNAWzR_9I7VPN8IghV2WdYPWY8eNkCOXy6n6oibqFWcif4BZAZ9cNpfSwVYcWXLne2KNwaqqOUsd1NIde3SBs6oAjFrbFdGfww_ZxQ34sscgMFg16uXg&h=lRBehYhuubmZUgk9W2WCRrWDLXg-KOp_9pX_fcSdSy0 Cache-Control: - no-cache Content-Length: - - '287' + - '0' Content-Security-Policy: - script-src 'self' - Content-Type: - - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:05:46 GMT + - Wed, 20 May 2026 10:09:46 GMT Expires: - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/capacities - response: - body: - string: '{"value": [{"id": "f9268a2d-7378-4005-9551-2d6ce5e7502e", "displayName": - "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Inactive"}, - {"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", - "sku": "F16", "region": "West Europe", "state": "Active"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '492' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:05:53 GMT - Pragma: - - no-cache - RequestId: - - 9c7deca9-cf66-4321-98c7-2c675fe6489e - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 - response: - body: - string: '{"properties": {"provisioningState": "Succeeded", "state": "Paused", - "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", - "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": - "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '408' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:05:53 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 - response: - body: - string: '{"properties": {"provisioningState": "Succeeded", "state": "Paused", - "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", - "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": - "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '408' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:05:53 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/capacities - response: - body: - string: '{"value": [{"id": "f9268a2d-7378-4005-9551-2d6ce5e7502e", "displayName": - "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Inactive"}, - {"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", - "sku": "F16", "region": "West Europe", "state": "Active"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '492' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:05:57 GMT - Pragma: - - no-cache - RequestId: - - 8e984fb8-0bf0-4653-a6c0-1b6d5acf68fe - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions?api-version=2022-12-01 - response: - body: - string: '{"value": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000"}], - "count": {"type": "Total", "value": 1}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '479' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:05:58 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/capacities?api-version=2023-11-01 - response: - body: - string: '{"value": [{"properties": {"provisioningState": "Succeeded", "state": - "Active", "administration": {"members": ["mocked@admin_test_user"]}}, "id": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/mocked_fabriccli_capacity_name", - "name": "mocked_fabriccli_capacity_name", "type": "Microsoft.Fabric/capacities", - "location": "West Europe", "sku": {"name": "F16", "tier": "Fabric"}, "tags": - {}}, {"properties": {"provisioningState": "Succeeded", "state": "Paused", - "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", - "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": - "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '2480' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:05:57 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - 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.0.0 - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 - response: - body: - string: '' - headers: - Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/A2E91671-B64C-46E6-98F8-D6FB59E67BBB?api-version=2022-07-01-preview&t=638924835596403692&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=Du8GL9KmGmq40J9Qu2vdQYcGxOcpEfBdJKcAB7hXk5ehRWNjoNTQaRLQtH5VndMEZLDc5RwjUHJ2XK01-pLD5P2T8v23mXAds7jhS3ebJbJ4s_3N7i7SG7afqdwQHbmdtqyx1cGD1VsjIcN921NvdbBPIJ3KxHYMuyGYRRORuT8pR9AZ6zIWOFyNbrMowl7_vbwadu2WNfE-UNoKRI2rYHQf2FNEDgjXnW3wFVxnJNoqhUfUbBPNc8hS8_lPmfXx-16re3GxlFihnxG5WXC9ieHmFBpD7FERdoIcSfTMN6H0jJn_4SiU6JCvQSSqbWh-er2zEyYQn5eapdnVm4cqWQ&h=SKBDKHD_aw5CpdN5yGR9Sl73Q51CXkUErD9vz4-YQQA - Cache-Control: - - no-cache - Content-Length: - - '0' - Content-Security-Policy: - - script-src 'self' - Date: - - Wed, 03 Sep 2025 08:05:59 GMT - Expires: - - '-1' - Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/A2E91671-B64C-46E6-98F8-D6FB59E67BBB?api-version=2022-07-01-preview&t=638924835596559964&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=sk6Qm411jdDkGtxDbJNX41_69mZ6MbCja0_hOVC7hMPhVPp_-EK1v-3-3ZMjN3L7TIiXmQJc8oa7z_dL-m_OGmERYwjWs36JsXExAHg0yb8wKvo1lrFwF8n8PbjdNV0a_x8df_6Ha61-hlvkb4D037aj2sw8HdathxZgZYvsJGkKMIibFXQikV8-fxRRHUGb_Ps_kvlje6KgiUSwgHF8Y5nma3PYf3sS6gjpogHJYC4AZVE5tAQ5xHFmXmpK5lPFt1-Q3-XaKDkqoXzwn-Vo3l0Y9xM23_wPjEqtUY3UdUYFGCurDXwV7fpACNOrv3n-r3cbF7R27jfXUCSvQM_Txw&h=i_F7RKxWUVY0DCGszlaBFksWobqZxqomJeds8-9Aojc + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/08FD4E8D-A7DC-468D-99B1-E9F9D957E26E?api-version=2022-07-01-preview&t=639148685868724126&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=xZVWNjU1OmYq-2sNk0UTTWXNLy7s-pPGPzwhl5RVEAhaNhRxAK4Qsy09mfQXjFcWiL61ov3iwVbExGKUCXWbMh4F879srp3RB9d85B0_U5wq-TtbSwjYHmE1R9eHdvxkS9z4FNXhSl7oSHSxE4EP9bmnacpQjzLN6bb0--kqMhsgA90V5IIGfgkLbj34hGyfPaO-Yb6ilLeG_cEQ23vr6dzpgFhsYFaBQtY-pDAlA-N3VsAEfSWqYXbN_Lbk3_Vw2mU09YhajHIco3Aje79ue3M_KCNQK4UWHpE-ZS7cvkobeuSIB69qZ0NgzdJYGJzeBoYM_N15858H7-_jTVgpQQ&h=k0N6BToTuHHWC7B3aBJUQJaEzgPW8j_jL7FZ-YOvB0I Pragma: - no-cache Strict-Transport-Security: @@ -1288,302 +843,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/A2E91671-B64C-46E6-98F8-D6FB59E67BBB?api-version=2022-07-01-preview&t=638924835596403692&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=Du8GL9KmGmq40J9Qu2vdQYcGxOcpEfBdJKcAB7hXk5ehRWNjoNTQaRLQtH5VndMEZLDc5RwjUHJ2XK01-pLD5P2T8v23mXAds7jhS3ebJbJ4s_3N7i7SG7afqdwQHbmdtqyx1cGD1VsjIcN921NvdbBPIJ3KxHYMuyGYRRORuT8pR9AZ6zIWOFyNbrMowl7_vbwadu2WNfE-UNoKRI2rYHQf2FNEDgjXnW3wFVxnJNoqhUfUbBPNc8hS8_lPmfXx-16re3GxlFihnxG5WXC9ieHmFBpD7FERdoIcSfTMN6H0jJn_4SiU6JCvQSSqbWh-er2zEyYQn5eapdnVm4cqWQ&h=SKBDKHD_aw5CpdN5yGR9Sl73Q51CXkUErD9vz4-YQQA - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/A2E91671-B64C-46E6-98F8-D6FB59E67BBB", - "name": "A2E91671-B64C-46E6-98F8-D6FB59E67BBB", "status": "Deleting", "startTime": - "2025-09-03T08:05:59.0930000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:06:00 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/A2E91671-B64C-46E6-98F8-D6FB59E67BBB?api-version=2022-07-01-preview&t=638924835596403692&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=Du8GL9KmGmq40J9Qu2vdQYcGxOcpEfBdJKcAB7hXk5ehRWNjoNTQaRLQtH5VndMEZLDc5RwjUHJ2XK01-pLD5P2T8v23mXAds7jhS3ebJbJ4s_3N7i7SG7afqdwQHbmdtqyx1cGD1VsjIcN921NvdbBPIJ3KxHYMuyGYRRORuT8pR9AZ6zIWOFyNbrMowl7_vbwadu2WNfE-UNoKRI2rYHQf2FNEDgjXnW3wFVxnJNoqhUfUbBPNc8hS8_lPmfXx-16re3GxlFihnxG5WXC9ieHmFBpD7FERdoIcSfTMN6H0jJn_4SiU6JCvQSSqbWh-er2zEyYQn5eapdnVm4cqWQ&h=SKBDKHD_aw5CpdN5yGR9Sl73Q51CXkUErD9vz4-YQQA - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/A2E91671-B64C-46E6-98F8-D6FB59E67BBB", - "name": "A2E91671-B64C-46E6-98F8-D6FB59E67BBB", "status": "Deleting", "startTime": - "2025-09-03T08:05:59.0930000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:06:00 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/A2E91671-B64C-46E6-98F8-D6FB59E67BBB?api-version=2022-07-01-preview&t=638924835596403692&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=Du8GL9KmGmq40J9Qu2vdQYcGxOcpEfBdJKcAB7hXk5ehRWNjoNTQaRLQtH5VndMEZLDc5RwjUHJ2XK01-pLD5P2T8v23mXAds7jhS3ebJbJ4s_3N7i7SG7afqdwQHbmdtqyx1cGD1VsjIcN921NvdbBPIJ3KxHYMuyGYRRORuT8pR9AZ6zIWOFyNbrMowl7_vbwadu2WNfE-UNoKRI2rYHQf2FNEDgjXnW3wFVxnJNoqhUfUbBPNc8hS8_lPmfXx-16re3GxlFihnxG5WXC9ieHmFBpD7FERdoIcSfTMN6H0jJn_4SiU6JCvQSSqbWh-er2zEyYQn5eapdnVm4cqWQ&h=SKBDKHD_aw5CpdN5yGR9Sl73Q51CXkUErD9vz4-YQQA - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/A2E91671-B64C-46E6-98F8-D6FB59E67BBB", - "name": "A2E91671-B64C-46E6-98F8-D6FB59E67BBB", "status": "Deleting", "startTime": - "2025-09-03T08:05:59.0930000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:06:01 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/A2E91671-B64C-46E6-98F8-D6FB59E67BBB?api-version=2022-07-01-preview&t=638924835596403692&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=Du8GL9KmGmq40J9Qu2vdQYcGxOcpEfBdJKcAB7hXk5ehRWNjoNTQaRLQtH5VndMEZLDc5RwjUHJ2XK01-pLD5P2T8v23mXAds7jhS3ebJbJ4s_3N7i7SG7afqdwQHbmdtqyx1cGD1VsjIcN921NvdbBPIJ3KxHYMuyGYRRORuT8pR9AZ6zIWOFyNbrMowl7_vbwadu2WNfE-UNoKRI2rYHQf2FNEDgjXnW3wFVxnJNoqhUfUbBPNc8hS8_lPmfXx-16re3GxlFihnxG5WXC9ieHmFBpD7FERdoIcSfTMN6H0jJn_4SiU6JCvQSSqbWh-er2zEyYQn5eapdnVm4cqWQ&h=SKBDKHD_aw5CpdN5yGR9Sl73Q51CXkUErD9vz4-YQQA - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/A2E91671-B64C-46E6-98F8-D6FB59E67BBB", - "name": "A2E91671-B64C-46E6-98F8-D6FB59E67BBB", "status": "Deleting", "startTime": - "2025-09-03T08:05:59.0930000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:06:03 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/A2E91671-B64C-46E6-98F8-D6FB59E67BBB?api-version=2022-07-01-preview&t=638924835596403692&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=Du8GL9KmGmq40J9Qu2vdQYcGxOcpEfBdJKcAB7hXk5ehRWNjoNTQaRLQtH5VndMEZLDc5RwjUHJ2XK01-pLD5P2T8v23mXAds7jhS3ebJbJ4s_3N7i7SG7afqdwQHbmdtqyx1cGD1VsjIcN921NvdbBPIJ3KxHYMuyGYRRORuT8pR9AZ6zIWOFyNbrMowl7_vbwadu2WNfE-UNoKRI2rYHQf2FNEDgjXnW3wFVxnJNoqhUfUbBPNc8hS8_lPmfXx-16re3GxlFihnxG5WXC9ieHmFBpD7FERdoIcSfTMN6H0jJn_4SiU6JCvQSSqbWh-er2zEyYQn5eapdnVm4cqWQ&h=SKBDKHD_aw5CpdN5yGR9Sl73Q51CXkUErD9vz4-YQQA - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/A2E91671-B64C-46E6-98F8-D6FB59E67BBB", - "name": "A2E91671-B64C-46E6-98F8-D6FB59E67BBB", "status": "Deleting", "startTime": - "2025-09-03T08:05:59.0930000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:06:07 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/A2E91671-B64C-46E6-98F8-D6FB59E67BBB?api-version=2022-07-01-preview&t=638924835596403692&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=Du8GL9KmGmq40J9Qu2vdQYcGxOcpEfBdJKcAB7hXk5ehRWNjoNTQaRLQtH5VndMEZLDc5RwjUHJ2XK01-pLD5P2T8v23mXAds7jhS3ebJbJ4s_3N7i7SG7afqdwQHbmdtqyx1cGD1VsjIcN921NvdbBPIJ3KxHYMuyGYRRORuT8pR9AZ6zIWOFyNbrMowl7_vbwadu2WNfE-UNoKRI2rYHQf2FNEDgjXnW3wFVxnJNoqhUfUbBPNc8hS8_lPmfXx-16re3GxlFihnxG5WXC9ieHmFBpD7FERdoIcSfTMN6H0jJn_4SiU6JCvQSSqbWh-er2zEyYQn5eapdnVm4cqWQ&h=SKBDKHD_aw5CpdN5yGR9Sl73Q51CXkUErD9vz4-YQQA - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/A2E91671-B64C-46E6-98F8-D6FB59E67BBB", - "name": "A2E91671-B64C-46E6-98F8-D6FB59E67BBB", "status": "Deleting", "startTime": - "2025-09-03T08:05:59.0930000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:06:15 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/A2E91671-B64C-46E6-98F8-D6FB59E67BBB?api-version=2022-07-01-preview&t=638924835596403692&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=Du8GL9KmGmq40J9Qu2vdQYcGxOcpEfBdJKcAB7hXk5ehRWNjoNTQaRLQtH5VndMEZLDc5RwjUHJ2XK01-pLD5P2T8v23mXAds7jhS3ebJbJ4s_3N7i7SG7afqdwQHbmdtqyx1cGD1VsjIcN921NvdbBPIJ3KxHYMuyGYRRORuT8pR9AZ6zIWOFyNbrMowl7_vbwadu2WNfE-UNoKRI2rYHQf2FNEDgjXnW3wFVxnJNoqhUfUbBPNc8hS8_lPmfXx-16re3GxlFihnxG5WXC9ieHmFBpD7FERdoIcSfTMN6H0jJn_4SiU6JCvQSSqbWh-er2zEyYQn5eapdnVm4cqWQ&h=SKBDKHD_aw5CpdN5yGR9Sl73Q51CXkUErD9vz4-YQQA + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/08FD4E8D-A7DC-468D-99B1-E9F9D957E26E?api-version=2022-07-01-preview&t=639148685868724126&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=AF_BLHnKj5U1mjt4EwNC5_ygv0N6OJSH-1XA8xwapVTcpTJ0Fk2awV_awQjnYzR0Tp2OH9aF1Xf0eC1AOsI6DwaVo34MoB2PAQXXUpEQrkWbh6iXI-E2sJgh31S4Fvt9ip0n5I7psMGOz_foA-eM5sAGwvf17RJkMoqoGSj_iMct4rZK-2m5EU5E1hl41x5a9aFLEjltEzwzOsfdz5VHAbO4diHx35vO4xaNAWzR_9I7VPN8IghV2WdYPWY8eNkCOXy6n6oibqFWcif4BZAZ9cNpfSwVYcWXLne2KNwaqqOUsd1NIde3SBs6oAjFrbFdGfww_ZxQ34sscgMFg16uXg&h=lRBehYhuubmZUgk9W2WCRrWDLXg-KOp_9pX_fcSdSy0 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/A2E91671-B64C-46E6-98F8-D6FB59E67BBB", - "name": "A2E91671-B64C-46E6-98F8-D6FB59E67BBB", "status": "Succeeded", "startTime": - "2025-09-03T08:05:59.0930000Z", "endTime": "2025-09-03T08:06:17.7600000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/08FD4E8D-A7DC-468D-99B1-E9F9D957E26E", + "name": "08FD4E8D-A7DC-468D-99B1-E9F9D957E26E", "status": "Succeeded", "startTime": + "2026-05-20T10:09:46.2830000Z", "endTime": "2026-05-20T10:09:57.7770000Z"}' headers: Cache-Control: - no-cache @@ -1594,7 +861,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:06:31 GMT + - Wed, 20 May 2026 10:09:57 GMT Expires: - '-1' Pragma: diff --git a/tests/test_commands/recordings/test_commands/test_stop/test_stop_capacity_success.yaml b/tests/test_commands/recordings/test_commands/test_stop/test_stop_capacity_success.yaml index 69727252a..5632d93dd 100644 --- a/tests/test_commands/recordings/test_commands/test_stop/test_stop_capacity_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_stop/test_stop_capacity_success.yaml @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -27,15 +27,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '456' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:01:36 GMT + - Wed, 20 May 2026 10:03:46 GMT Pragma: - no-cache RequestId: - - dd2f7013-8806-44a3-8846-00da8e8c83fe + - b95bd033-157c-47e5-bf99-5adf369a9deb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -43,7 +43,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -60,11 +60,11 @@ interactions: Connection: - keep-alive Content-Length: - - '149' + - '165' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -75,21 +75,21 @@ interactions: "westeurope", "sku": {"name": "F2", "tier": "Fabric"}}' headers: Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/048CA365-657D-487C-A9DB-6BF19EF73DF0?api-version=2022-07-01-preview&t=638924832998292629&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=y9ia4BvWs1_jmoUvkCyzpAV0afyAHvNV43z3NHORG0oUi8rvJ_EOj0sWAaHV6-6eMrBf2bm_3ZDbURUAid5N_yeI_MgL9rajd19lvNzNtqUwn36G9G0384ze_pYegpKPCK4SSRiPBa6hXvTCzrT5Druvz1O5c_yyyDIc6gyjw9qt14Ko-67Kxvr7Xa7NkgdM6Rjqe7IwD5TcOUha73JVsAoMsC6BRwDlzmMaiMXRPsHC-PlR0rzEqys6T70SU9taAOZlnI211Rv8ZH5I40gS31i_3CcHgRHmgt-5levWKDKwHqx_YwmzandnnwOs_hISP6yJvOkMOIy4HmUvAh-JjQ&h=azmvG-M0RBNkz_w-HGgkGf5G7puUbun0oNQq1wycig8 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/CF51938D-94E3-4EBC-BE98-090160B69360?api-version=2022-07-01-preview&t=639148682322684924&c=MIIIJjCCBw6gAwIBAgIQb1M2vqaR25A9gkNSxtjvXjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDQwOTAzMTgwOFoXDTI2MTAwNDA5MTgwOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDPgmFG048x8Uf_ft-pFOYUkXAdl1n3zM6fuCbar9GPot6yeWzDjNAqEGSnNphgL5chFmXwDN314j1LqhDLioPE5QoIMe1S5dVO3zJMZFTcQt1FLYAOtrr20XqF7UPt2yAPe4Bu0ofMNWOJcpFbGSAWK44LhmuK8OxzZKM0edUvZv-Rfd9JgRaVaYkIbXGbH9imPrqoSNf2lY9gCzuElTuj7YvnpPaapxP9QNc_-grKNunFbyKNkxr0UMhsDMYV83Z8eXV3NZ2u6mOpJasVRwz0dA-tuO9wPF7XieZ7IKOetuuxEJTErzgBTlsqiDX5fwpeKCfdm2il11wEBuMauun9AgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS2tp4rDeLvvyEmXbj-eW0ba0l8kjAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzU1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAGx96iKqN2Is_faIQn-0pW5AGMFTd6e_YsXns29qbqozyoW-4yRnhB-XcrxzzzWYIidroWfzaaqNZDba9mFWk5sAa9u13y1tFeouverB3QO5Cfh0njRRrWRo8qA3Aioy4fBYVVy5luTZn_sRTrydvk5e5gazwzEGDWGegPcbywvrNXdU6nc1rgrjjAJnpM4fYSGHGXb0WZ4-Lg09fU7BEWYQkcTipCkIkjF3dFhSnqX1goHFKv2bDknGBkjtOxnbMMyI1vvKZtYV7Eja5kFUAomLKBubQAwMKK1x6VewjOixSImup95MUwIfcy_91Mpy-Y2vpW2S_hIs-y7nbGTYJio&s=EwI35EWiNxp8eIiIo99WLr6R3GQSB6O9rmafy64E24YB-JtvZM0xVmk7p9YWv9lupUHAbeEgZKDxjke-JPvXRcZFzLMoT2BEcoHYqlYnJAbtFH9_xVTy5ge06Z2ViWBkrqreC7eJXuBjJfVe1bYaJftUsKxcG7vkACFgO-h7H3Tge10FpWKKxRN2GIDtSvbQVLMATZ7pkyRGcxW0sn0GKyHvvmZPdC2YZ2Mm2-75Igj-SkljyCi9sHf11F5pVJPJeapMIbI1dVZLtCL9XQNYpFV2YemQzcIGQ0FhgkT85a1OPQZAu8mdtodT8LcIO0KqzxFapSVk2Jt6AQfsGaDfTA&h=zrWdSr7ASFa-kG8QNkgONXuhRfauXRyL_F4GF53U0h0 Cache-Control: - no-cache Content-Length: - - '406' + - '422' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:01:38 GMT + - Wed, 20 May 2026 10:03:52 GMT Expires: - '-1' Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/048CA365-657D-487C-A9DB-6BF19EF73DF0?api-version=2022-07-01-preview&t=638924832998292629&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=PYRC8AcM0gqzbRODvKRyZ5MHDw1ESUS7vEN3ev92BhYO7tPSJ0DIV_aW4kVbzlepb1vDyOjksysiA2yooRYKSA4K2hKHsDvBjKljmuKzAqDKU_1MwkEjR9XvSI0-cEehQsXoSjxYGxKw8FftTd_h2j20nlENLBNZn4fKu4Ly1yOj0WIHVGDfrrnocLAnMejD8amyqfCoAvaDVjF7ilDCowLp20RE5iUj50diNi_KI-8FdI1mbvDlbh0RSYQWuK1AJ-EHoZmkEh_MxMjHpu6E_OIXos3_PcBHLnCueMXQHkgaQJPxlpsT5BKVGe40pKy3vIpEHp4fpcRKU6bZ0lDHAA&h=iJisSoATkYGcx4j7Po8B0Hgogjw8lcAafw0XeKBY2hE + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/CF51938D-94E3-4EBC-BE98-090160B69360?api-version=2022-07-01-preview&t=639148682322684924&c=MIIIJjCCBw6gAwIBAgIQb1M2vqaR25A9gkNSxtjvXjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDQwOTAzMTgwOFoXDTI2MTAwNDA5MTgwOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDPgmFG048x8Uf_ft-pFOYUkXAdl1n3zM6fuCbar9GPot6yeWzDjNAqEGSnNphgL5chFmXwDN314j1LqhDLioPE5QoIMe1S5dVO3zJMZFTcQt1FLYAOtrr20XqF7UPt2yAPe4Bu0ofMNWOJcpFbGSAWK44LhmuK8OxzZKM0edUvZv-Rfd9JgRaVaYkIbXGbH9imPrqoSNf2lY9gCzuElTuj7YvnpPaapxP9QNc_-grKNunFbyKNkxr0UMhsDMYV83Z8eXV3NZ2u6mOpJasVRwz0dA-tuO9wPF7XieZ7IKOetuuxEJTErzgBTlsqiDX5fwpeKCfdm2il11wEBuMauun9AgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS2tp4rDeLvvyEmXbj-eW0ba0l8kjAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzU1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAGx96iKqN2Is_faIQn-0pW5AGMFTd6e_YsXns29qbqozyoW-4yRnhB-XcrxzzzWYIidroWfzaaqNZDba9mFWk5sAa9u13y1tFeouverB3QO5Cfh0njRRrWRo8qA3Aioy4fBYVVy5luTZn_sRTrydvk5e5gazwzEGDWGegPcbywvrNXdU6nc1rgrjjAJnpM4fYSGHGXb0WZ4-Lg09fU7BEWYQkcTipCkIkjF3dFhSnqX1goHFKv2bDknGBkjtOxnbMMyI1vvKZtYV7Eja5kFUAomLKBubQAwMKK1x6VewjOixSImup95MUwIfcy_91Mpy-Y2vpW2S_hIs-y7nbGTYJio&s=ldkAoKFWdgOKCNQmWa39w66csModEnaFUrXUjMgj89MhfQWP7JkV3Y7sJOW8E_NyQF0Upt_IP_C1G0VmK6ol5Rsl70LC8Ex9yTwUu54SESzoHylazggkG0nvR20yBClU_3XHxyX_oLwJATsHlfjGLZiVBnfg1ybSBO77La2Um6buMs3qPfnA7H1ZY9s8Lj-kpDXAxK4CE75nB-Dg36RbTr6wHgfJXD4p_E4LkZBYJgNP5leSfg2mKl0qFXaN3JT81Nzlx2A-7HetEhNS37OLVA9wBklByGQ3Q3PwZuazxmbF4F43rbX9gv3767d9xAKmpBv2X6lD94YulfG5lnlcbw&h=_1QtGAshBsLiAnLEaqmWJre4VnjwhiaKPI5CRV5kKiM Pragma: - no-cache Strict-Transport-Security: @@ -117,206 +117,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/048CA365-657D-487C-A9DB-6BF19EF73DF0?api-version=2022-07-01-preview&t=638924832998292629&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=y9ia4BvWs1_jmoUvkCyzpAV0afyAHvNV43z3NHORG0oUi8rvJ_EOj0sWAaHV6-6eMrBf2bm_3ZDbURUAid5N_yeI_MgL9rajd19lvNzNtqUwn36G9G0384ze_pYegpKPCK4SSRiPBa6hXvTCzrT5Druvz1O5c_yyyDIc6gyjw9qt14Ko-67Kxvr7Xa7NkgdM6Rjqe7IwD5TcOUha73JVsAoMsC6BRwDlzmMaiMXRPsHC-PlR0rzEqys6T70SU9taAOZlnI211Rv8ZH5I40gS31i_3CcHgRHmgt-5levWKDKwHqx_YwmzandnnwOs_hISP6yJvOkMOIy4HmUvAh-JjQ&h=azmvG-M0RBNkz_w-HGgkGf5G7puUbun0oNQq1wycig8 + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/CF51938D-94E3-4EBC-BE98-090160B69360?api-version=2022-07-01-preview&t=639148682322684924&c=MIIIJjCCBw6gAwIBAgIQb1M2vqaR25A9gkNSxtjvXjANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXQ1VTIENBIDAxMB4XDTI2MDQwOTAzMTgwOFoXDTI2MTAwNDA5MTgwOFowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDPgmFG048x8Uf_ft-pFOYUkXAdl1n3zM6fuCbar9GPot6yeWzDjNAqEGSnNphgL5chFmXwDN314j1LqhDLioPE5QoIMe1S5dVO3zJMZFTcQt1FLYAOtrr20XqF7UPt2yAPe4Bu0ofMNWOJcpFbGSAWK44LhmuK8OxzZKM0edUvZv-Rfd9JgRaVaYkIbXGbH9imPrqoSNf2lY9gCzuElTuj7YvnpPaapxP9QNc_-grKNunFbyKNkxr0UMhsDMYV83Z8eXV3NZ2u6mOpJasVRwz0dA-tuO9wPF7XieZ7IKOetuuxEJTErzgBTlsqiDX5fwpeKCfdm2il11wEBuMauun9AgMBAAGjggUkMIIFIDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBS2tp4rDeLvvyEmXbj-eW0ba0l8kjAfBgNVHSMEGDAWgBQU0jfg9tZ9ft2NurplqwSUJeCWHTCCAfsGA1UdHwSCAfIwggHuMHugeaB3hnVodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwfaB7oHmGd2h0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3RjZW50cmFsdXMvY3Jscy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxLzU1L2N1cnJlbnQuY3JsMGygaqBohmZodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdGNlbnRyYWx1cy9jcmxzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwgYGgf6B9hntodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvNTUvY3VycmVudC5jcmwwggIABggrBgEFBQcBAQSCAfIwggHuMH4GCCsGAQUFBzAChnJodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdGNlbnRyYWx1cy9jYWNlcnRzL2NjbWV3ZXN0Y2VudHJhbHVzcGtpL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEvY2VydC5jZXIwgYAGCCsGAQUFBzAChnRodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0Y2VudHJhbHVzL2NhY2VydHMvY2NtZXdlc3RjZW50cmFsdXNwa2kvY2NtZXdlc3RjZW50cmFsdXNpY2EwMS9jZXJ0LmNlcjBvBggrBgEFBQcwAoZjaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3RjZW50cmFsdXMvY2FjZXJ0cy9jY21ld2VzdGNlbnRyYWx1c3BraS9jY21ld2VzdGNlbnRyYWx1c2ljYTAxL2NlcnQuY2VyMHgGCCsGAQUFBzAChmxodHRwOi8vY2NtZXdlc3RjZW50cmFsdXNwa2kud2VzdGNlbnRyYWx1cy5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0Y2VudHJhbHVzaWNhMDEwDQYJKoZIhvcNAQELBQADggEBAGx96iKqN2Is_faIQn-0pW5AGMFTd6e_YsXns29qbqozyoW-4yRnhB-XcrxzzzWYIidroWfzaaqNZDba9mFWk5sAa9u13y1tFeouverB3QO5Cfh0njRRrWRo8qA3Aioy4fBYVVy5luTZn_sRTrydvk5e5gazwzEGDWGegPcbywvrNXdU6nc1rgrjjAJnpM4fYSGHGXb0WZ4-Lg09fU7BEWYQkcTipCkIkjF3dFhSnqX1goHFKv2bDknGBkjtOxnbMMyI1vvKZtYV7Eja5kFUAomLKBubQAwMKK1x6VewjOixSImup95MUwIfcy_91Mpy-Y2vpW2S_hIs-y7nbGTYJio&s=EwI35EWiNxp8eIiIo99WLr6R3GQSB6O9rmafy64E24YB-JtvZM0xVmk7p9YWv9lupUHAbeEgZKDxjke-JPvXRcZFzLMoT2BEcoHYqlYnJAbtFH9_xVTy5ge06Z2ViWBkrqreC7eJXuBjJfVe1bYaJftUsKxcG7vkACFgO-h7H3Tge10FpWKKxRN2GIDtSvbQVLMATZ7pkyRGcxW0sn0GKyHvvmZPdC2YZ2Mm2-75Igj-SkljyCi9sHf11F5pVJPJeapMIbI1dVZLtCL9XQNYpFV2YemQzcIGQ0FhgkT85a1OPQZAu8mdtodT8LcIO0KqzxFapSVk2Jt6AQfsGaDfTA&h=zrWdSr7ASFa-kG8QNkgONXuhRfauXRyL_F4GF53U0h0 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/048CA365-657D-487C-A9DB-6BF19EF73DF0", - "name": "048CA365-657D-487C-A9DB-6BF19EF73DF0", "status": "Provisioning", - "startTime": "2025-09-03T08:01:39.1030000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '249' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:01:39 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/048CA365-657D-487C-A9DB-6BF19EF73DF0?api-version=2022-07-01-preview&t=638924832998292629&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=y9ia4BvWs1_jmoUvkCyzpAV0afyAHvNV43z3NHORG0oUi8rvJ_EOj0sWAaHV6-6eMrBf2bm_3ZDbURUAid5N_yeI_MgL9rajd19lvNzNtqUwn36G9G0384ze_pYegpKPCK4SSRiPBa6hXvTCzrT5Druvz1O5c_yyyDIc6gyjw9qt14Ko-67Kxvr7Xa7NkgdM6Rjqe7IwD5TcOUha73JVsAoMsC6BRwDlzmMaiMXRPsHC-PlR0rzEqys6T70SU9taAOZlnI211Rv8ZH5I40gS31i_3CcHgRHmgt-5levWKDKwHqx_YwmzandnnwOs_hISP6yJvOkMOIy4HmUvAh-JjQ&h=azmvG-M0RBNkz_w-HGgkGf5G7puUbun0oNQq1wycig8 - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/048CA365-657D-487C-A9DB-6BF19EF73DF0", - "name": "048CA365-657D-487C-A9DB-6BF19EF73DF0", "status": "Provisioning", - "startTime": "2025-09-03T08:01:39.1030000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '249' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:01:39 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/048CA365-657D-487C-A9DB-6BF19EF73DF0?api-version=2022-07-01-preview&t=638924832998292629&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=y9ia4BvWs1_jmoUvkCyzpAV0afyAHvNV43z3NHORG0oUi8rvJ_EOj0sWAaHV6-6eMrBf2bm_3ZDbURUAid5N_yeI_MgL9rajd19lvNzNtqUwn36G9G0384ze_pYegpKPCK4SSRiPBa6hXvTCzrT5Druvz1O5c_yyyDIc6gyjw9qt14Ko-67Kxvr7Xa7NkgdM6Rjqe7IwD5TcOUha73JVsAoMsC6BRwDlzmMaiMXRPsHC-PlR0rzEqys6T70SU9taAOZlnI211Rv8ZH5I40gS31i_3CcHgRHmgt-5levWKDKwHqx_YwmzandnnwOs_hISP6yJvOkMOIy4HmUvAh-JjQ&h=azmvG-M0RBNkz_w-HGgkGf5G7puUbun0oNQq1wycig8 - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/048CA365-657D-487C-A9DB-6BF19EF73DF0", - "name": "048CA365-657D-487C-A9DB-6BF19EF73DF0", "status": "Provisioning", - "startTime": "2025-09-03T08:01:39.1030000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '249' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:01:40 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/048CA365-657D-487C-A9DB-6BF19EF73DF0?api-version=2022-07-01-preview&t=638924832998292629&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=y9ia4BvWs1_jmoUvkCyzpAV0afyAHvNV43z3NHORG0oUi8rvJ_EOj0sWAaHV6-6eMrBf2bm_3ZDbURUAid5N_yeI_MgL9rajd19lvNzNtqUwn36G9G0384ze_pYegpKPCK4SSRiPBa6hXvTCzrT5Druvz1O5c_yyyDIc6gyjw9qt14Ko-67Kxvr7Xa7NkgdM6Rjqe7IwD5TcOUha73JVsAoMsC6BRwDlzmMaiMXRPsHC-PlR0rzEqys6T70SU9taAOZlnI211Rv8ZH5I40gS31i_3CcHgRHmgt-5levWKDKwHqx_YwmzandnnwOs_hISP6yJvOkMOIy4HmUvAh-JjQ&h=azmvG-M0RBNkz_w-HGgkGf5G7puUbun0oNQq1wycig8 - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/048CA365-657D-487C-A9DB-6BF19EF73DF0", - "name": "048CA365-657D-487C-A9DB-6BF19EF73DF0", "status": "Provisioning", - "startTime": "2025-09-03T08:01:39.1030000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '249' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:01:42 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/048CA365-657D-487C-A9DB-6BF19EF73DF0?api-version=2022-07-01-preview&t=638924832998292629&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=y9ia4BvWs1_jmoUvkCyzpAV0afyAHvNV43z3NHORG0oUi8rvJ_EOj0sWAaHV6-6eMrBf2bm_3ZDbURUAid5N_yeI_MgL9rajd19lvNzNtqUwn36G9G0384ze_pYegpKPCK4SSRiPBa6hXvTCzrT5Druvz1O5c_yyyDIc6gyjw9qt14Ko-67Kxvr7Xa7NkgdM6Rjqe7IwD5TcOUha73JVsAoMsC6BRwDlzmMaiMXRPsHC-PlR0rzEqys6T70SU9taAOZlnI211Rv8ZH5I40gS31i_3CcHgRHmgt-5levWKDKwHqx_YwmzandnnwOs_hISP6yJvOkMOIy4HmUvAh-JjQ&h=azmvG-M0RBNkz_w-HGgkGf5G7puUbun0oNQq1wycig8 - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/048CA365-657D-487C-A9DB-6BF19EF73DF0", - "name": "048CA365-657D-487C-A9DB-6BF19EF73DF0", "status": "Succeeded", "startTime": - "2025-09-03T08:01:39.1030000Z", "endTime": "2025-09-03T08:01:43.4130000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/CF51938D-94E3-4EBC-BE98-090160B69360", + "name": "CF51938D-94E3-4EBC-BE98-090160B69360", "status": "Succeeded", "startTime": + "2026-05-20T10:03:51.0570000Z", "endTime": "2026-05-20T10:03:54.6600000Z"}' headers: Cache-Control: - no-cache @@ -327,7 +135,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:01:46 GMT + - Wed, 20 May 2026 10:04:02 GMT Expires: - '-1' Pragma: @@ -357,14 +165,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": - "Active"}, {"id": "77ef3606-d28f-4ddc-8c27-0a0b1f503aa3", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "c08bbf62-37b1-473f-aa39-f2f279664f09", "displayName": "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -372,229 +180,30 @@ interactions: Cache-Control: - no-store, must-revalidate, no-cache Content-Encoding: - - gzip - Content-Length: - - '491' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:01:51 GMT - Pragma: - - no-cache - RequestId: - - c62935b2-941b-4646-9182-fe164a1fb215 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/capacities - response: - body: - string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F16", "region": "West Europe", "state": - "Active"}, {"id": "77ef3606-d28f-4ddc-8c27-0a0b1f503aa3", "displayName": "fabcli000001", - "sku": "F2", "region": "West Europe", "state": "Active"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '491' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:01:54 GMT - Pragma: - - no-cache - RequestId: - - 4cfbed6b-e16a-4bdc-958e-59aefdd493a7 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 - response: - body: - string: '{"properties": {"provisioningState": "Succeeded", "state": "Active", - "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", - "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": - "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '408' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:01:54 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 - response: - body: - string: '{"properties": {"provisioningState": "Succeeded", "state": "Active", - "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", - "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": - "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '408' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:01:54 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - 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.0.0 - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001/suspend?api-version=2023-11-01 - response: - body: - string: '' - headers: - Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/975CC849-02FE-4F45-B8CD-5B2B3C288E37?api-version=2022-07-01-preview&t=638924833163973133&c=MIIIrzCCBpegAwIBAgITUQCB88G3Wuu2JddPiQABAIHzwTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUwNzE5MTUxMjMyWhcNMjYwMTE1MTUxMjMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKmDMVduwrp8PgT2HFOjDhqrsaEVNWzsvMsP6g45jDrqUNB4LfL9lk6cyEBB48pk3iOv5j6dllGsZZXc04Mk4joo1Xkr85AjSKymRB2JuTsje2UytzlnMZpyPankFP187K82Cr1j5Wwpe9Ca5qjIHT5YlyGXCdG5i5vN-AozcAVQlBec1biBdTAP7QXPus0dPp8Y-F4iNohOAJch4TggOAusZ9Y7sw5o1z52_zx5acL92ngF6CCc-PusLjh0FmBzcDWxqMraLKRwBpRpIFX950_ShANksrKehbJ1rSy40x_yxDuiRHEQWJk639XRfsIpn71K81NZmOAgwu1__jn4VEkCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUwjIAbXgEuNSCepaWLXLMfxfduwAwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQA56LQqEz88aENVmBeJJaKqdIxFJVDuukkrxzVxNtL9vp8hNYxHc159aJJ9WDBAMTrrAWg96uES5kj9eEjEO3sjAAsLUjCMuPjvI0OTWJoemQSryABjT7IfB2q3Uemz8uo2jJY3h-AbxOuDWxE7tkAj7akRt-gIlnBojhJxhm3EfPkk6DcIQPxp0gCunakcxar3ZyEh9eopWsD7l2nVUVaXI-P1YQxnlYuX-_PLB9h3hlJx3a7Toxp148PT2civKuMfe5vWd8hQiYjjx_CzWGZ-RZRfqZk_e8VVtc4ox8oD5h2QNMbK1_5RmWHf6Sbcee6anr1rTphQ3zHtYyfc32GW2vTdl8ezNKkyL-KNT7vYQ8cQMyLlwDYFd5-HJMma1DyHQG9jkhJeAxKdGRayk6H6YB3fEbdVVx-kdkal05hsiNA_7r4x4eoZQBWzmWpHjzsR0NWMsW7DcHOheXihMp3kRQ_8OdHfc_JxWmQr4XGZh__KDljyYhtHPHgv0bGFuE4sP_U50VtTir-RWGAwfeM1XuxCYPGkPzGaGGZTArqeCgsEsTFIuOpU9o9DY_2TfgVNaYl-VgNHc9G6weERUy9qFAHlP0UFUg4sWbRJVj86ZqH2YthtUAjj1Ntpj0yIyS55p4nvGs__iMU8MbYbuVsvU1YYRtxCk5qmJgAlVYtZ1Q&s=dOBzHMxE70nLnSI1KNJZ8GtjmV1TE9ezSqMnkYut_1T6r2_9HBYoiG-0geLCq0umk5mH2QPpui_QNnpqR4Z35cH3ErXTVV76wpZHRxBUcs8TR5KRB_T6ok0-JjDfwQnqlkJNbfzJM5KP2S2hrL7nf78zGz7nqT7uVdFAr6EXKlV2X-q5uFARMmVin4iBjVty6oh4Ij0obVfngbnI9puTBxtiMWhfXDBfRizdO4oEfVGe_RbMA5i7PheyZ-4PngqsZpi0xucEka2fZ8tbwhZbY7-DWaCLX0ZnVzZddW3pKsnFrKeKKzdUyDfTtQ3Fpcp6EE1ltVB5Jj4sLDsUohdfGA&h=XNxBcvc0poTi1SLaLFpiA_CGrtTIcaKhDdKyvF8EGQs - Cache-Control: - - no-cache + - gzip Content-Length: - - '0' - Content-Security-Policy: - - script-src 'self' + - '459' + Content-Type: + - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:01:55 GMT - Expires: - - '-1' - Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/975CC849-02FE-4F45-B8CD-5B2B3C288E37?api-version=2022-07-01-preview&t=638924833163973133&c=MIIIrzCCBpegAwIBAgITUQCB88G3Wuu2JddPiQABAIHzwTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUwNzE5MTUxMjMyWhcNMjYwMTE1MTUxMjMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKmDMVduwrp8PgT2HFOjDhqrsaEVNWzsvMsP6g45jDrqUNB4LfL9lk6cyEBB48pk3iOv5j6dllGsZZXc04Mk4joo1Xkr85AjSKymRB2JuTsje2UytzlnMZpyPankFP187K82Cr1j5Wwpe9Ca5qjIHT5YlyGXCdG5i5vN-AozcAVQlBec1biBdTAP7QXPus0dPp8Y-F4iNohOAJch4TggOAusZ9Y7sw5o1z52_zx5acL92ngF6CCc-PusLjh0FmBzcDWxqMraLKRwBpRpIFX950_ShANksrKehbJ1rSy40x_yxDuiRHEQWJk639XRfsIpn71K81NZmOAgwu1__jn4VEkCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUwjIAbXgEuNSCepaWLXLMfxfduwAwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQA56LQqEz88aENVmBeJJaKqdIxFJVDuukkrxzVxNtL9vp8hNYxHc159aJJ9WDBAMTrrAWg96uES5kj9eEjEO3sjAAsLUjCMuPjvI0OTWJoemQSryABjT7IfB2q3Uemz8uo2jJY3h-AbxOuDWxE7tkAj7akRt-gIlnBojhJxhm3EfPkk6DcIQPxp0gCunakcxar3ZyEh9eopWsD7l2nVUVaXI-P1YQxnlYuX-_PLB9h3hlJx3a7Toxp148PT2civKuMfe5vWd8hQiYjjx_CzWGZ-RZRfqZk_e8VVtc4ox8oD5h2QNMbK1_5RmWHf6Sbcee6anr1rTphQ3zHtYyfc32GW2vTdl8ezNKkyL-KNT7vYQ8cQMyLlwDYFd5-HJMma1DyHQG9jkhJeAxKdGRayk6H6YB3fEbdVVx-kdkal05hsiNA_7r4x4eoZQBWzmWpHjzsR0NWMsW7DcHOheXihMp3kRQ_8OdHfc_JxWmQr4XGZh__KDljyYhtHPHgv0bGFuE4sP_U50VtTir-RWGAwfeM1XuxCYPGkPzGaGGZTArqeCgsEsTFIuOpU9o9DY_2TfgVNaYl-VgNHc9G6weERUy9qFAHlP0UFUg4sWbRJVj86ZqH2YthtUAjj1Ntpj0yIyS55p4nvGs__iMU8MbYbuVsvU1YYRtxCk5qmJgAlVYtZ1Q&s=ag7IoqXx93_Ft5ZTRkMcY5OlnjyihQPOUm52q6TlD3jEfvgCR4U_1U5Dov1ZwZ1WLFitTFRsKNgHPF5Nh3R1MdcGhNmKxdZNcqpb0a9jpssuRDFq6jWqJjAiQL03kxdJX59GszZzdSZtNyZmdElv5aVVxej31O0cJMYU0KW8zuV7T3dKnwD0h1g1Mf6U7yThFaiOsthZ7cA0ulO4huMfG_yk_MZWcZ5cdKHLp8_aBlRX451Y7JJK2RDz2u-_UVBRGaDuZ1jEkDYIY6W_6MfB1CLQS_g-tc5a4TTqCxPEIFqCLd6yQfBPmCzBjiKf3BjlyAOG2UOCwd33tToJXg1P_g&h=5Wva7QNcuMMnx_rcmkWlvkEuSpLhLj56o8DQ0FOpK84 + - Wed, 20 May 2026 10:04:08 GMT Pragma: - no-cache + RequestId: + - 3b44eefa-7a44-4b77-82bd-63932443ff58 Strict-Transport-Security: - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Frame-Options: - deny - X-XSS-Protection: - - 1; mode=block + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -607,39 +216,42 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/975CC849-02FE-4F45-B8CD-5B2B3C288E37?api-version=2022-07-01-preview&t=638924833163973133&c=MIIIrzCCBpegAwIBAgITUQCB88G3Wuu2JddPiQABAIHzwTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUwNzE5MTUxMjMyWhcNMjYwMTE1MTUxMjMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKmDMVduwrp8PgT2HFOjDhqrsaEVNWzsvMsP6g45jDrqUNB4LfL9lk6cyEBB48pk3iOv5j6dllGsZZXc04Mk4joo1Xkr85AjSKymRB2JuTsje2UytzlnMZpyPankFP187K82Cr1j5Wwpe9Ca5qjIHT5YlyGXCdG5i5vN-AozcAVQlBec1biBdTAP7QXPus0dPp8Y-F4iNohOAJch4TggOAusZ9Y7sw5o1z52_zx5acL92ngF6CCc-PusLjh0FmBzcDWxqMraLKRwBpRpIFX950_ShANksrKehbJ1rSy40x_yxDuiRHEQWJk639XRfsIpn71K81NZmOAgwu1__jn4VEkCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUwjIAbXgEuNSCepaWLXLMfxfduwAwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQA56LQqEz88aENVmBeJJaKqdIxFJVDuukkrxzVxNtL9vp8hNYxHc159aJJ9WDBAMTrrAWg96uES5kj9eEjEO3sjAAsLUjCMuPjvI0OTWJoemQSryABjT7IfB2q3Uemz8uo2jJY3h-AbxOuDWxE7tkAj7akRt-gIlnBojhJxhm3EfPkk6DcIQPxp0gCunakcxar3ZyEh9eopWsD7l2nVUVaXI-P1YQxnlYuX-_PLB9h3hlJx3a7Toxp148PT2civKuMfe5vWd8hQiYjjx_CzWGZ-RZRfqZk_e8VVtc4ox8oD5h2QNMbK1_5RmWHf6Sbcee6anr1rTphQ3zHtYyfc32GW2vTdl8ezNKkyL-KNT7vYQ8cQMyLlwDYFd5-HJMma1DyHQG9jkhJeAxKdGRayk6H6YB3fEbdVVx-kdkal05hsiNA_7r4x4eoZQBWzmWpHjzsR0NWMsW7DcHOheXihMp3kRQ_8OdHfc_JxWmQr4XGZh__KDljyYhtHPHgv0bGFuE4sP_U50VtTir-RWGAwfeM1XuxCYPGkPzGaGGZTArqeCgsEsTFIuOpU9o9DY_2TfgVNaYl-VgNHc9G6weERUy9qFAHlP0UFUg4sWbRJVj86ZqH2YthtUAjj1Ntpj0yIyS55p4nvGs__iMU8MbYbuVsvU1YYRtxCk5qmJgAlVYtZ1Q&s=dOBzHMxE70nLnSI1KNJZ8GtjmV1TE9ezSqMnkYut_1T6r2_9HBYoiG-0geLCq0umk5mH2QPpui_QNnpqR4Z35cH3ErXTVV76wpZHRxBUcs8TR5KRB_T6ok0-JjDfwQnqlkJNbfzJM5KP2S2hrL7nf78zGz7nqT7uVdFAr6EXKlV2X-q5uFARMmVin4iBjVty6oh4Ij0obVfngbnI9puTBxtiMWhfXDBfRizdO4oEfVGe_RbMA5i7PheyZ-4PngqsZpi0xucEka2fZ8tbwhZbY7-DWaCLX0ZnVzZddW3pKsnFrKeKKzdUyDfTtQ3Fpcp6EE1ltVB5Jj4sLDsUohdfGA&h=XNxBcvc0poTi1SLaLFpiA_CGrtTIcaKhDdKyvF8EGQs + uri: https://api.fabric.microsoft.com/v1/capacities response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/975CC849-02FE-4F45-B8CD-5B2B3C288E37", - "name": "975CC849-02FE-4F45-B8CD-5B2B3C288E37", "status": "Pausing", "startTime": - "2025-09-03T08:01:55.7770000Z"}' + string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "c08bbf62-37b1-473f-aa39-f2f279664f09", "displayName": "fabcli000001", + "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: + Access-Control-Expose-Headers: + - RequestId Cache-Control: - - no-cache + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip Content-Length: - - '244' - Content-Security-Policy: - - script-src 'self' + - '459' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:01:56 GMT - Expires: - - '-1' + - Wed, 20 May 2026 10:04:13 GMT Pragma: - no-cache + RequestId: + - cee8a76a-a282-42f4-9c0e-86806fac1cda Strict-Transport-Security: - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Frame-Options: - deny - X-XSS-Protection: - - 1; mode=block + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' status: code: 200 message: OK @@ -655,25 +267,26 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/975CC849-02FE-4F45-B8CD-5B2B3C288E37?api-version=2022-07-01-preview&t=638924833163973133&c=MIIIrzCCBpegAwIBAgITUQCB88G3Wuu2JddPiQABAIHzwTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUwNzE5MTUxMjMyWhcNMjYwMTE1MTUxMjMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKmDMVduwrp8PgT2HFOjDhqrsaEVNWzsvMsP6g45jDrqUNB4LfL9lk6cyEBB48pk3iOv5j6dllGsZZXc04Mk4joo1Xkr85AjSKymRB2JuTsje2UytzlnMZpyPankFP187K82Cr1j5Wwpe9Ca5qjIHT5YlyGXCdG5i5vN-AozcAVQlBec1biBdTAP7QXPus0dPp8Y-F4iNohOAJch4TggOAusZ9Y7sw5o1z52_zx5acL92ngF6CCc-PusLjh0FmBzcDWxqMraLKRwBpRpIFX950_ShANksrKehbJ1rSy40x_yxDuiRHEQWJk639XRfsIpn71K81NZmOAgwu1__jn4VEkCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUwjIAbXgEuNSCepaWLXLMfxfduwAwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQA56LQqEz88aENVmBeJJaKqdIxFJVDuukkrxzVxNtL9vp8hNYxHc159aJJ9WDBAMTrrAWg96uES5kj9eEjEO3sjAAsLUjCMuPjvI0OTWJoemQSryABjT7IfB2q3Uemz8uo2jJY3h-AbxOuDWxE7tkAj7akRt-gIlnBojhJxhm3EfPkk6DcIQPxp0gCunakcxar3ZyEh9eopWsD7l2nVUVaXI-P1YQxnlYuX-_PLB9h3hlJx3a7Toxp148PT2civKuMfe5vWd8hQiYjjx_CzWGZ-RZRfqZk_e8VVtc4ox8oD5h2QNMbK1_5RmWHf6Sbcee6anr1rTphQ3zHtYyfc32GW2vTdl8ezNKkyL-KNT7vYQ8cQMyLlwDYFd5-HJMma1DyHQG9jkhJeAxKdGRayk6H6YB3fEbdVVx-kdkal05hsiNA_7r4x4eoZQBWzmWpHjzsR0NWMsW7DcHOheXihMp3kRQ_8OdHfc_JxWmQr4XGZh__KDljyYhtHPHgv0bGFuE4sP_U50VtTir-RWGAwfeM1XuxCYPGkPzGaGGZTArqeCgsEsTFIuOpU9o9DY_2TfgVNaYl-VgNHc9G6weERUy9qFAHlP0UFUg4sWbRJVj86ZqH2YthtUAjj1Ntpj0yIyS55p4nvGs__iMU8MbYbuVsvU1YYRtxCk5qmJgAlVYtZ1Q&s=dOBzHMxE70nLnSI1KNJZ8GtjmV1TE9ezSqMnkYut_1T6r2_9HBYoiG-0geLCq0umk5mH2QPpui_QNnpqR4Z35cH3ErXTVV76wpZHRxBUcs8TR5KRB_T6ok0-JjDfwQnqlkJNbfzJM5KP2S2hrL7nf78zGz7nqT7uVdFAr6EXKlV2X-q5uFARMmVin4iBjVty6oh4Ij0obVfngbnI9puTBxtiMWhfXDBfRizdO4oEfVGe_RbMA5i7PheyZ-4PngqsZpi0xucEka2fZ8tbwhZbY7-DWaCLX0ZnVzZddW3pKsnFrKeKKzdUyDfTtQ3Fpcp6EE1ltVB5Jj4sLDsUohdfGA&h=XNxBcvc0poTi1SLaLFpiA_CGrtTIcaKhDdKyvF8EGQs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/975CC849-02FE-4F45-B8CD-5B2B3C288E37", - "name": "975CC849-02FE-4F45-B8CD-5B2B3C288E37", "status": "Pausing", "startTime": - "2025-09-03T08:01:55.7770000Z"}' + string: '{"properties": {"provisioningState": "Succeeded", "state": "Active", + "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", + "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": + "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}' headers: Cache-Control: - no-cache Content-Length: - - '244' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:01:56 GMT + - Wed, 20 May 2026 10:04:13 GMT Expires: - '-1' Pragma: @@ -703,25 +316,26 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/975CC849-02FE-4F45-B8CD-5B2B3C288E37?api-version=2022-07-01-preview&t=638924833163973133&c=MIIIrzCCBpegAwIBAgITUQCB88G3Wuu2JddPiQABAIHzwTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUwNzE5MTUxMjMyWhcNMjYwMTE1MTUxMjMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKmDMVduwrp8PgT2HFOjDhqrsaEVNWzsvMsP6g45jDrqUNB4LfL9lk6cyEBB48pk3iOv5j6dllGsZZXc04Mk4joo1Xkr85AjSKymRB2JuTsje2UytzlnMZpyPankFP187K82Cr1j5Wwpe9Ca5qjIHT5YlyGXCdG5i5vN-AozcAVQlBec1biBdTAP7QXPus0dPp8Y-F4iNohOAJch4TggOAusZ9Y7sw5o1z52_zx5acL92ngF6CCc-PusLjh0FmBzcDWxqMraLKRwBpRpIFX950_ShANksrKehbJ1rSy40x_yxDuiRHEQWJk639XRfsIpn71K81NZmOAgwu1__jn4VEkCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUwjIAbXgEuNSCepaWLXLMfxfduwAwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQA56LQqEz88aENVmBeJJaKqdIxFJVDuukkrxzVxNtL9vp8hNYxHc159aJJ9WDBAMTrrAWg96uES5kj9eEjEO3sjAAsLUjCMuPjvI0OTWJoemQSryABjT7IfB2q3Uemz8uo2jJY3h-AbxOuDWxE7tkAj7akRt-gIlnBojhJxhm3EfPkk6DcIQPxp0gCunakcxar3ZyEh9eopWsD7l2nVUVaXI-P1YQxnlYuX-_PLB9h3hlJx3a7Toxp148PT2civKuMfe5vWd8hQiYjjx_CzWGZ-RZRfqZk_e8VVtc4ox8oD5h2QNMbK1_5RmWHf6Sbcee6anr1rTphQ3zHtYyfc32GW2vTdl8ezNKkyL-KNT7vYQ8cQMyLlwDYFd5-HJMma1DyHQG9jkhJeAxKdGRayk6H6YB3fEbdVVx-kdkal05hsiNA_7r4x4eoZQBWzmWpHjzsR0NWMsW7DcHOheXihMp3kRQ_8OdHfc_JxWmQr4XGZh__KDljyYhtHPHgv0bGFuE4sP_U50VtTir-RWGAwfeM1XuxCYPGkPzGaGGZTArqeCgsEsTFIuOpU9o9DY_2TfgVNaYl-VgNHc9G6weERUy9qFAHlP0UFUg4sWbRJVj86ZqH2YthtUAjj1Ntpj0yIyS55p4nvGs__iMU8MbYbuVsvU1YYRtxCk5qmJgAlVYtZ1Q&s=dOBzHMxE70nLnSI1KNJZ8GtjmV1TE9ezSqMnkYut_1T6r2_9HBYoiG-0geLCq0umk5mH2QPpui_QNnpqR4Z35cH3ErXTVV76wpZHRxBUcs8TR5KRB_T6ok0-JjDfwQnqlkJNbfzJM5KP2S2hrL7nf78zGz7nqT7uVdFAr6EXKlV2X-q5uFARMmVin4iBjVty6oh4Ij0obVfngbnI9puTBxtiMWhfXDBfRizdO4oEfVGe_RbMA5i7PheyZ-4PngqsZpi0xucEka2fZ8tbwhZbY7-DWaCLX0ZnVzZddW3pKsnFrKeKKzdUyDfTtQ3Fpcp6EE1ltVB5Jj4sLDsUohdfGA&h=XNxBcvc0poTi1SLaLFpiA_CGrtTIcaKhDdKyvF8EGQs + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/975CC849-02FE-4F45-B8CD-5B2B3C288E37", - "name": "975CC849-02FE-4F45-B8CD-5B2B3C288E37", "status": "Pausing", "startTime": - "2025-09-03T08:01:55.7770000Z"}' + string: '{"properties": {"provisioningState": "Succeeded", "state": "Active", + "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", + "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": + "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}' headers: Cache-Control: - no-cache Content-Length: - - '244' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:01:57 GMT + - Wed, 20 May 2026 10:04:14 GMT Expires: - '-1' Pragma: @@ -748,30 +362,32 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Length: + - '0' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/975CC849-02FE-4F45-B8CD-5B2B3C288E37?api-version=2022-07-01-preview&t=638924833163973133&c=MIIIrzCCBpegAwIBAgITUQCB88G3Wuu2JddPiQABAIHzwTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUwNzE5MTUxMjMyWhcNMjYwMTE1MTUxMjMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKmDMVduwrp8PgT2HFOjDhqrsaEVNWzsvMsP6g45jDrqUNB4LfL9lk6cyEBB48pk3iOv5j6dllGsZZXc04Mk4joo1Xkr85AjSKymRB2JuTsje2UytzlnMZpyPankFP187K82Cr1j5Wwpe9Ca5qjIHT5YlyGXCdG5i5vN-AozcAVQlBec1biBdTAP7QXPus0dPp8Y-F4iNohOAJch4TggOAusZ9Y7sw5o1z52_zx5acL92ngF6CCc-PusLjh0FmBzcDWxqMraLKRwBpRpIFX950_ShANksrKehbJ1rSy40x_yxDuiRHEQWJk639XRfsIpn71K81NZmOAgwu1__jn4VEkCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUwjIAbXgEuNSCepaWLXLMfxfduwAwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQA56LQqEz88aENVmBeJJaKqdIxFJVDuukkrxzVxNtL9vp8hNYxHc159aJJ9WDBAMTrrAWg96uES5kj9eEjEO3sjAAsLUjCMuPjvI0OTWJoemQSryABjT7IfB2q3Uemz8uo2jJY3h-AbxOuDWxE7tkAj7akRt-gIlnBojhJxhm3EfPkk6DcIQPxp0gCunakcxar3ZyEh9eopWsD7l2nVUVaXI-P1YQxnlYuX-_PLB9h3hlJx3a7Toxp148PT2civKuMfe5vWd8hQiYjjx_CzWGZ-RZRfqZk_e8VVtc4ox8oD5h2QNMbK1_5RmWHf6Sbcee6anr1rTphQ3zHtYyfc32GW2vTdl8ezNKkyL-KNT7vYQ8cQMyLlwDYFd5-HJMma1DyHQG9jkhJeAxKdGRayk6H6YB3fEbdVVx-kdkal05hsiNA_7r4x4eoZQBWzmWpHjzsR0NWMsW7DcHOheXihMp3kRQ_8OdHfc_JxWmQr4XGZh__KDljyYhtHPHgv0bGFuE4sP_U50VtTir-RWGAwfeM1XuxCYPGkPzGaGGZTArqeCgsEsTFIuOpU9o9DY_2TfgVNaYl-VgNHc9G6weERUy9qFAHlP0UFUg4sWbRJVj86ZqH2YthtUAjj1Ntpj0yIyS55p4nvGs__iMU8MbYbuVsvU1YYRtxCk5qmJgAlVYtZ1Q&s=dOBzHMxE70nLnSI1KNJZ8GtjmV1TE9ezSqMnkYut_1T6r2_9HBYoiG-0geLCq0umk5mH2QPpui_QNnpqR4Z35cH3ErXTVV76wpZHRxBUcs8TR5KRB_T6ok0-JjDfwQnqlkJNbfzJM5KP2S2hrL7nf78zGz7nqT7uVdFAr6EXKlV2X-q5uFARMmVin4iBjVty6oh4Ij0obVfngbnI9puTBxtiMWhfXDBfRizdO4oEfVGe_RbMA5i7PheyZ-4PngqsZpi0xucEka2fZ8tbwhZbY7-DWaCLX0ZnVzZddW3pKsnFrKeKKzdUyDfTtQ3Fpcp6EE1ltVB5Jj4sLDsUohdfGA&h=XNxBcvc0poTi1SLaLFpiA_CGrtTIcaKhDdKyvF8EGQs + - ms-fabric-cli-test/1.6.1 + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001/suspend?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/975CC849-02FE-4F45-B8CD-5B2B3C288E37", - "name": "975CC849-02FE-4F45-B8CD-5B2B3C288E37", "status": "Pausing", "startTime": - "2025-09-03T08:01:55.7770000Z"}' + string: '' headers: + Azure-AsyncOperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/8F8EB8AB-5A4C-4C91-B809-27827BC74F28?api-version=2022-07-01-preview&t=639148682565905581&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=Z45X77YESWptIuXkQopizNoIEpQhVS-a8Vg4jCbyq3pk-G9OqIIQ8z066_IB9NmJP_jNHHVRbGXN6N8-jBKLXDIL6Xs1mKfegL4BEiZAMuCKzay_sBn0fQLqc8n9P52gf1G3HFHSh0lBluaLK9CpV0qbrIKpTBlte0u9kX3uC5K7KsOp6gO1plXmRhSudQVwouRt027O7RIhlB_5nwHC78TP0HPvx2-TYwE8HxM2ZvhsuM1e2_dEmh9sDnoavGF0qF8gQkSelcMQ0JEBVY5Oam_-x8okJHXhP9vTwc9F6kOWUrjvxMHNEKJnDQS9YO35qF744GYx-zpmm-GB1TCQvw&h=_uRi5sv8_bEGLXrXAcScwPeYxV-N9j-CbWuNqQIk6Xw Cache-Control: - no-cache Content-Length: - - '244' + - '0' Content-Security-Policy: - script-src 'self' - Content-Type: - - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:01:58 GMT + - Wed, 20 May 2026 10:04:16 GMT Expires: - '-1' + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/8F8EB8AB-5A4C-4C91-B809-27827BC74F28?api-version=2022-07-01-preview&t=639148682565905581&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=zm_LvfmbPnqp-lajHCkDkQ7xyBME-KV-2oU4N_DGPWLB2IVCsvAnyJDXcOjZ1D7oDxXy04yvvno1YTIhsbX4TMXDFqaJnmbV7dW86ddKalBPukHasXYtG1pLFTZHhVpbsFV8os_wYlkzYNAUdwHaWRE2ZpWTdNoQMkwnAfcoxHVLj3oAyBVIVSn4IKo3xcgYzIFd8kZXsJt6eCoUY5mSXZ1LI2fF5_kE2uZD6GRvTejMjn1JdvwQcZrnI9T8YIVWWuU-rtGLGtAOYJZrRgp_hpsTjRCJ0bxtXV9aUFxOWLOMuM2i6RHLNEe2te5h_XZKK56N779n9Wo2FRBpRX5KEQ&h=dRQP2W3ctYu3XCePA2co_k5MvuozJBAMLkYKensh-4I Pragma: - no-cache Strict-Transport-Security: @@ -785,8 +401,8 @@ interactions: X-XSS-Protection: - 1; mode=block status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -799,14 +415,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/975CC849-02FE-4F45-B8CD-5B2B3C288E37?api-version=2022-07-01-preview&t=638924833163973133&c=MIIIrzCCBpegAwIBAgITUQCB88G3Wuu2JddPiQABAIHzwTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUwNzE5MTUxMjMyWhcNMjYwMTE1MTUxMjMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKmDMVduwrp8PgT2HFOjDhqrsaEVNWzsvMsP6g45jDrqUNB4LfL9lk6cyEBB48pk3iOv5j6dllGsZZXc04Mk4joo1Xkr85AjSKymRB2JuTsje2UytzlnMZpyPankFP187K82Cr1j5Wwpe9Ca5qjIHT5YlyGXCdG5i5vN-AozcAVQlBec1biBdTAP7QXPus0dPp8Y-F4iNohOAJch4TggOAusZ9Y7sw5o1z52_zx5acL92ngF6CCc-PusLjh0FmBzcDWxqMraLKRwBpRpIFX950_ShANksrKehbJ1rSy40x_yxDuiRHEQWJk639XRfsIpn71K81NZmOAgwu1__jn4VEkCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUwjIAbXgEuNSCepaWLXLMfxfduwAwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQA56LQqEz88aENVmBeJJaKqdIxFJVDuukkrxzVxNtL9vp8hNYxHc159aJJ9WDBAMTrrAWg96uES5kj9eEjEO3sjAAsLUjCMuPjvI0OTWJoemQSryABjT7IfB2q3Uemz8uo2jJY3h-AbxOuDWxE7tkAj7akRt-gIlnBojhJxhm3EfPkk6DcIQPxp0gCunakcxar3ZyEh9eopWsD7l2nVUVaXI-P1YQxnlYuX-_PLB9h3hlJx3a7Toxp148PT2civKuMfe5vWd8hQiYjjx_CzWGZ-RZRfqZk_e8VVtc4ox8oD5h2QNMbK1_5RmWHf6Sbcee6anr1rTphQ3zHtYyfc32GW2vTdl8ezNKkyL-KNT7vYQ8cQMyLlwDYFd5-HJMma1DyHQG9jkhJeAxKdGRayk6H6YB3fEbdVVx-kdkal05hsiNA_7r4x4eoZQBWzmWpHjzsR0NWMsW7DcHOheXihMp3kRQ_8OdHfc_JxWmQr4XGZh__KDljyYhtHPHgv0bGFuE4sP_U50VtTir-RWGAwfeM1XuxCYPGkPzGaGGZTArqeCgsEsTFIuOpU9o9DY_2TfgVNaYl-VgNHc9G6weERUy9qFAHlP0UFUg4sWbRJVj86ZqH2YthtUAjj1Ntpj0yIyS55p4nvGs__iMU8MbYbuVsvU1YYRtxCk5qmJgAlVYtZ1Q&s=dOBzHMxE70nLnSI1KNJZ8GtjmV1TE9ezSqMnkYut_1T6r2_9HBYoiG-0geLCq0umk5mH2QPpui_QNnpqR4Z35cH3ErXTVV76wpZHRxBUcs8TR5KRB_T6ok0-JjDfwQnqlkJNbfzJM5KP2S2hrL7nf78zGz7nqT7uVdFAr6EXKlV2X-q5uFARMmVin4iBjVty6oh4Ij0obVfngbnI9puTBxtiMWhfXDBfRizdO4oEfVGe_RbMA5i7PheyZ-4PngqsZpi0xucEka2fZ8tbwhZbY7-DWaCLX0ZnVzZddW3pKsnFrKeKKzdUyDfTtQ3Fpcp6EE1ltVB5Jj4sLDsUohdfGA&h=XNxBcvc0poTi1SLaLFpiA_CGrtTIcaKhDdKyvF8EGQs + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/8F8EB8AB-5A4C-4C91-B809-27827BC74F28?api-version=2022-07-01-preview&t=639148682565905581&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=Z45X77YESWptIuXkQopizNoIEpQhVS-a8Vg4jCbyq3pk-G9OqIIQ8z066_IB9NmJP_jNHHVRbGXN6N8-jBKLXDIL6Xs1mKfegL4BEiZAMuCKzay_sBn0fQLqc8n9P52gf1G3HFHSh0lBluaLK9CpV0qbrIKpTBlte0u9kX3uC5K7KsOp6gO1plXmRhSudQVwouRt027O7RIhlB_5nwHC78TP0HPvx2-TYwE8HxM2ZvhsuM1e2_dEmh9sDnoavGF0qF8gQkSelcMQ0JEBVY5Oam_-x8okJHXhP9vTwc9F6kOWUrjvxMHNEKJnDQS9YO35qF744GYx-zpmm-GB1TCQvw&h=_uRi5sv8_bEGLXrXAcScwPeYxV-N9j-CbWuNqQIk6Xw response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/975CC849-02FE-4F45-B8CD-5B2B3C288E37", - "name": "975CC849-02FE-4F45-B8CD-5B2B3C288E37", "status": "Pausing", "startTime": - "2025-09-03T08:01:55.7770000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/8F8EB8AB-5A4C-4C91-B809-27827BC74F28", + "name": "8F8EB8AB-5A4C-4C91-B809-27827BC74F28", "status": "Pausing", "startTime": + "2026-05-20T10:04:15.9830000Z"}' headers: Cache-Control: - no-cache @@ -817,7 +433,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:02:03 GMT + - Wed, 20 May 2026 10:04:27 GMT Expires: - '-1' Pragma: @@ -847,14 +463,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/975CC849-02FE-4F45-B8CD-5B2B3C288E37?api-version=2022-07-01-preview&t=638924833163973133&c=MIIIrzCCBpegAwIBAgITUQCB88G3Wuu2JddPiQABAIHzwTANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUwNzE5MTUxMjMyWhcNMjYwMTE1MTUxMjMyWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKmDMVduwrp8PgT2HFOjDhqrsaEVNWzsvMsP6g45jDrqUNB4LfL9lk6cyEBB48pk3iOv5j6dllGsZZXc04Mk4joo1Xkr85AjSKymRB2JuTsje2UytzlnMZpyPankFP187K82Cr1j5Wwpe9Ca5qjIHT5YlyGXCdG5i5vN-AozcAVQlBec1biBdTAP7QXPus0dPp8Y-F4iNohOAJch4TggOAusZ9Y7sw5o1z52_zx5acL92ngF6CCc-PusLjh0FmBzcDWxqMraLKRwBpRpIFX950_ShANksrKehbJ1rSy40x_yxDuiRHEQWJk639XRfsIpn71K81NZmOAgwu1__jn4VEkCAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUwjIAbXgEuNSCepaWLXLMfxfduwAwDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQA56LQqEz88aENVmBeJJaKqdIxFJVDuukkrxzVxNtL9vp8hNYxHc159aJJ9WDBAMTrrAWg96uES5kj9eEjEO3sjAAsLUjCMuPjvI0OTWJoemQSryABjT7IfB2q3Uemz8uo2jJY3h-AbxOuDWxE7tkAj7akRt-gIlnBojhJxhm3EfPkk6DcIQPxp0gCunakcxar3ZyEh9eopWsD7l2nVUVaXI-P1YQxnlYuX-_PLB9h3hlJx3a7Toxp148PT2civKuMfe5vWd8hQiYjjx_CzWGZ-RZRfqZk_e8VVtc4ox8oD5h2QNMbK1_5RmWHf6Sbcee6anr1rTphQ3zHtYyfc32GW2vTdl8ezNKkyL-KNT7vYQ8cQMyLlwDYFd5-HJMma1DyHQG9jkhJeAxKdGRayk6H6YB3fEbdVVx-kdkal05hsiNA_7r4x4eoZQBWzmWpHjzsR0NWMsW7DcHOheXihMp3kRQ_8OdHfc_JxWmQr4XGZh__KDljyYhtHPHgv0bGFuE4sP_U50VtTir-RWGAwfeM1XuxCYPGkPzGaGGZTArqeCgsEsTFIuOpU9o9DY_2TfgVNaYl-VgNHc9G6weERUy9qFAHlP0UFUg4sWbRJVj86ZqH2YthtUAjj1Ntpj0yIyS55p4nvGs__iMU8MbYbuVsvU1YYRtxCk5qmJgAlVYtZ1Q&s=dOBzHMxE70nLnSI1KNJZ8GtjmV1TE9ezSqMnkYut_1T6r2_9HBYoiG-0geLCq0umk5mH2QPpui_QNnpqR4Z35cH3ErXTVV76wpZHRxBUcs8TR5KRB_T6ok0-JjDfwQnqlkJNbfzJM5KP2S2hrL7nf78zGz7nqT7uVdFAr6EXKlV2X-q5uFARMmVin4iBjVty6oh4Ij0obVfngbnI9puTBxtiMWhfXDBfRizdO4oEfVGe_RbMA5i7PheyZ-4PngqsZpi0xucEka2fZ8tbwhZbY7-DWaCLX0ZnVzZddW3pKsnFrKeKKzdUyDfTtQ3Fpcp6EE1ltVB5Jj4sLDsUohdfGA&h=XNxBcvc0poTi1SLaLFpiA_CGrtTIcaKhDdKyvF8EGQs + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/8F8EB8AB-5A4C-4C91-B809-27827BC74F28?api-version=2022-07-01-preview&t=639148682565905581&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=Z45X77YESWptIuXkQopizNoIEpQhVS-a8Vg4jCbyq3pk-G9OqIIQ8z066_IB9NmJP_jNHHVRbGXN6N8-jBKLXDIL6Xs1mKfegL4BEiZAMuCKzay_sBn0fQLqc8n9P52gf1G3HFHSh0lBluaLK9CpV0qbrIKpTBlte0u9kX3uC5K7KsOp6gO1plXmRhSudQVwouRt027O7RIhlB_5nwHC78TP0HPvx2-TYwE8HxM2ZvhsuM1e2_dEmh9sDnoavGF0qF8gQkSelcMQ0JEBVY5Oam_-x8okJHXhP9vTwc9F6kOWUrjvxMHNEKJnDQS9YO35qF744GYx-zpmm-GB1TCQvw&h=_uRi5sv8_bEGLXrXAcScwPeYxV-N9j-CbWuNqQIk6Xw response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/975CC849-02FE-4F45-B8CD-5B2B3C288E37", - "name": "975CC849-02FE-4F45-B8CD-5B2B3C288E37", "status": "Succeeded", "startTime": - "2025-09-03T08:01:55.7770000Z", "endTime": "2025-09-03T08:02:07.4200000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/8F8EB8AB-5A4C-4C91-B809-27827BC74F28", + "name": "8F8EB8AB-5A4C-4C91-B809-27827BC74F28", "status": "Succeeded", "startTime": + "2026-05-20T10:04:15.9830000Z", "endTime": "2026-05-20T10:04:34.1130000Z"}' headers: Cache-Control: - no-cache @@ -865,7 +481,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:02:11 GMT + - Wed, 20 May 2026 10:04:38 GMT Expires: - '-1' Pragma: @@ -895,15 +511,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: body: - string: '{"value": [{"id": "77ef3606-d28f-4ddc-8c27-0a0b1f503aa3", "displayName": - "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Inactive"}, - {"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", - "sku": "F16", "region": "West Europe", "state": "Active"}]}' + string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "c08bbf62-37b1-473f-aa39-f2f279664f09", "displayName": "fabcli000001", + "sku": "F2", "region": "West Europe", "state": "Inactive"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -912,15 +528,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '489' + - '465' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:02:16 GMT + - Wed, 20 May 2026 10:04:43 GMT Pragma: - no-cache RequestId: - - 0bdc2d84-28c5-475f-985b-b19f634c6ac1 + - 1c8779fa-c739-4999-b5bf-a20beef9afc2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -928,7 +544,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -946,15 +562,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: body: - string: '{"value": [{"id": "77ef3606-d28f-4ddc-8c27-0a0b1f503aa3", "displayName": + string: '{"value": [{"id": "c08bbf62-37b1-473f-aa39-f2f279664f09", "displayName": "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Inactive"}, {"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", - "sku": "F16", "region": "West Europe", "state": "Active"}]}' + "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -963,15 +579,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '489' + - '463' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:02:20 GMT + - Wed, 20 May 2026 10:04:48 GMT Pragma: - no-cache RequestId: - - 68917d96-b91b-473a-bd9c-f57cce718692 + - d57d0a99-386e-41be-8fab-a79480e36691 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -979,7 +595,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -997,7 +613,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -1010,13 +626,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:02:20 GMT + - Wed, 20 May 2026 10:04:48 GMT Expires: - '-1' Pragma: @@ -1046,7 +662,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -1059,13 +675,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:02:21 GMT + - Wed, 20 May 2026 10:04:50 GMT Expires: - '-1' Pragma: @@ -1095,15 +711,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: body: - string: '{"value": [{"id": "77ef3606-d28f-4ddc-8c27-0a0b1f503aa3", "displayName": - "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Inactive"}, - {"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", - "sku": "F16", "region": "West Europe", "state": "Active"}]}' + string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "c08bbf62-37b1-473f-aa39-f2f279664f09", "displayName": "fabcli000001", + "sku": "F2", "region": "West Europe", "state": "Inactive"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1112,15 +728,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '489' + - '465' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:02:26 GMT + - Wed, 20 May 2026 10:04:55 GMT Pragma: - no-cache RequestId: - - 15f1e833-eb26-4482-8f74-4e06a395e6a7 + - 2e50f572-c8d7-41ae-bb21-f00a5438c635 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1128,7 +744,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -1146,124 +762,24 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions?api-version=2022-12-01 - response: - body: - string: '{"value": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000"}], - "count": {"type": "Total", "value": 1}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '479' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:02:26 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/capacities?api-version=2023-11-01 + uri: https://management.azure.com/subscriptions/placeholder/resourceGroups/placeholder/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: body: - string: '{"value": [{"properties": {"provisioningState": "Succeeded", "state": - "Active", "administration": {"members": ["mocked@admin_test_user"]}}, "id": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/mocked_fabriccli_capacity_name", - "name": "mocked_fabriccli_capacity_name", "type": "Microsoft.Fabric/capacities", - "location": "West Europe", "sku": {"name": "F16", "tier": "Fabric"}, "tags": - {}}, {"properties": {"provisioningState": "Succeeded", "state": "Paused", - "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", - "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": - "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}]}' + string: '{"error": {"code": "InvalidSubscriptionId", "message": "The provided + subscription identifier ''placeholder'' is malformed or invalid."}}' headers: Cache-Control: - no-cache Content-Length: - - '2480' - Content-Security-Policy: - - script-src 'self' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:02:27 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - 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.0.0 - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 - response: - body: - string: '' - headers: - Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/9640F6B0-B263-41CB-A825-80C0FB10F490?api-version=2022-07-01-preview&t=638924833493159764&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=o1M0EZ3cCNfDiyYSa2V70mH4-ZwLY5q46ONSkiplIVtYqyPPPCoXmkkuoVwZqoTVAVoqSNXeflrf0aX2JKPwumJFnX5bJ0pGuxwAUTZjkY15hj81TKhRNNz1E5NilhOSrR0cPlW6Mt-eXcDjRSeHxth2QC7A9W6OU15lOyWq_uagyhi6jLwylnlsSr6o_ZYlUhyh1VTrxXEn_sLQPTqvejHabF1s-IgUFQCoZaANSkMlZEtKUJ5K1FtARhZJ_TARAP_q01X2qXWLN_ZmRJjmoonD6Zq4YciOo8HQHKTOPR9HuS2_GlgFqbHxWq5DP2HB0rXYUeudAAOTP1ZdZ4RHTw&h=b_7qZ6_aO7bi0iK1fe-pOsklY74ffpgbPy5ETrRpe0I - Cache-Control: - - no-cache - Content-Length: - - '0' - Content-Security-Policy: - - script-src 'self' - Date: - - Wed, 03 Sep 2025 08:02:28 GMT + - Wed, 20 May 2026 10:04:55 GMT Expires: - '-1' - Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/9640F6B0-B263-41CB-A825-80C0FB10F490?api-version=2022-07-01-preview&t=638924833493159764&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=By3CLn8OtHKjN1khet9FcDiLQ7HHZQRZi-HzJEvax28TpZQ2ljeaJwu6XXEsS3HT3TU6F6Hwqbz37KT551Ny-VTLq2SErDO_04NyER_Gx_6lYxo4hODrEmSlznwBqFOtrLBiDzOeAfObfkJTEckRy2zMXpDVpfvH8x_kO1wlTGnljTIJsw085uMxFYOnKEWHi4mYrko86xSegVeQoc7bgxReDhKYb4s9pUzm4AXlsmtQr9iSuuA9c9Nv2X4Tw5M5YP9MhbSbWIfXE7r_vHj0yFynoG-Z5BOzDcaN4JTA-WlgR0bTra290K_pr4yxovGJ1hs4RqVrGfFsaXNg2lD6WA&h=SY3Mdt-OC4ty3rpxfDj2ysU1ffZDkOC-tOi-h7eMx38 Pragma: - no-cache Strict-Transport-Security: @@ -1272,13 +788,9 @@ interactions: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block status: - code: 202 - message: Accepted + code: 400 + message: Bad Request - request: body: null headers: @@ -1291,25 +803,22 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/9640F6B0-B263-41CB-A825-80C0FB10F490?api-version=2022-07-01-preview&t=638924833493159764&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=o1M0EZ3cCNfDiyYSa2V70mH4-ZwLY5q46ONSkiplIVtYqyPPPCoXmkkuoVwZqoTVAVoqSNXeflrf0aX2JKPwumJFnX5bJ0pGuxwAUTZjkY15hj81TKhRNNz1E5NilhOSrR0cPlW6Mt-eXcDjRSeHxth2QC7A9W6OU15lOyWq_uagyhi6jLwylnlsSr6o_ZYlUhyh1VTrxXEn_sLQPTqvejHabF1s-IgUFQCoZaANSkMlZEtKUJ5K1FtARhZJ_TARAP_q01X2qXWLN_ZmRJjmoonD6Zq4YciOo8HQHKTOPR9HuS2_GlgFqbHxWq5DP2HB0rXYUeudAAOTP1ZdZ4RHTw&h=b_7qZ6_aO7bi0iK1fe-pOsklY74ffpgbPy5ETrRpe0I + uri: https://management.azure.com/subscriptions?api-version=2022-12-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/9640F6B0-B263-41CB-A825-80C0FB10F490", - "name": "9640F6B0-B263-41CB-A825-80C0FB10F490", "status": "Deleting", "startTime": - "2025-09-03T08:02:28.7300000Z"}' + string: '{"value": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000"}], + "count": {"type": "Total", "value": 1}}' headers: Cache-Control: - no-cache Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' + - '469' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:02:29 GMT + - Wed, 20 May 2026 10:04:56 GMT Expires: - '-1' Pragma: @@ -1320,10 +829,6 @@ interactions: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block status: code: 200 message: OK @@ -1339,25 +844,29 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/9640F6B0-B263-41CB-A825-80C0FB10F490?api-version=2022-07-01-preview&t=638924833493159764&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=o1M0EZ3cCNfDiyYSa2V70mH4-ZwLY5q46ONSkiplIVtYqyPPPCoXmkkuoVwZqoTVAVoqSNXeflrf0aX2JKPwumJFnX5bJ0pGuxwAUTZjkY15hj81TKhRNNz1E5NilhOSrR0cPlW6Mt-eXcDjRSeHxth2QC7A9W6OU15lOyWq_uagyhi6jLwylnlsSr6o_ZYlUhyh1VTrxXEn_sLQPTqvejHabF1s-IgUFQCoZaANSkMlZEtKUJ5K1FtARhZJ_TARAP_q01X2qXWLN_ZmRJjmoonD6Zq4YciOo8HQHKTOPR9HuS2_GlgFqbHxWq5DP2HB0rXYUeudAAOTP1ZdZ4RHTw&h=b_7qZ6_aO7bi0iK1fe-pOsklY74ffpgbPy5ETrRpe0I + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/capacities?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/9640F6B0-B263-41CB-A825-80C0FB10F490", - "name": "9640F6B0-B263-41CB-A825-80C0FB10F490", "status": "Deleting", "startTime": - "2025-09-03T08:02:28.7300000Z"}' + string: '{"value": [{"properties": {"provisioningState": "Succeeded", "state": + "Active", "administration": {"members": ["mocked@admin_test_user", "4fdd0762-85fe-4f8b-90dc-776e8605e0b9"]}}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/mocked_fabriccli_capacity_name", + "name": "mocked_fabriccli_capacity_name", "type": "Microsoft.Fabric/capacities", + "location": "Central US", "sku": {"name": "F16", "tier": "Fabric"}, "tags": + {}}, {"properties": {"provisioningState": "Succeeded", "state": "Paused", + "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", + "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": + "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}]}' headers: Cache-Control: - no-cache Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' + - '2562' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:02:29 GMT + - Wed, 20 May 2026 10:04:57 GMT Expires: - '-1' Pragma: @@ -1368,10 +877,6 @@ interactions: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block status: code: 200 message: OK @@ -1384,78 +889,32 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/9640F6B0-B263-41CB-A825-80C0FB10F490?api-version=2022-07-01-preview&t=638924833493159764&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=o1M0EZ3cCNfDiyYSa2V70mH4-ZwLY5q46ONSkiplIVtYqyPPPCoXmkkuoVwZqoTVAVoqSNXeflrf0aX2JKPwumJFnX5bJ0pGuxwAUTZjkY15hj81TKhRNNz1E5NilhOSrR0cPlW6Mt-eXcDjRSeHxth2QC7A9W6OU15lOyWq_uagyhi6jLwylnlsSr6o_ZYlUhyh1VTrxXEn_sLQPTqvejHabF1s-IgUFQCoZaANSkMlZEtKUJ5K1FtARhZJ_TARAP_q01X2qXWLN_ZmRJjmoonD6Zq4YciOo8HQHKTOPR9HuS2_GlgFqbHxWq5DP2HB0rXYUeudAAOTP1ZdZ4RHTw&h=b_7qZ6_aO7bi0iK1fe-pOsklY74ffpgbPy5ETrRpe0I - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/9640F6B0-B263-41CB-A825-80C0FB10F490", - "name": "9640F6B0-B263-41CB-A825-80C0FB10F490", "status": "Deleting", "startTime": - "2025-09-03T08:02:28.7300000Z"}' - headers: - Cache-Control: - - no-cache Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:02:30 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive + - '0' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/9640F6B0-B263-41CB-A825-80C0FB10F490?api-version=2022-07-01-preview&t=638924833493159764&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=o1M0EZ3cCNfDiyYSa2V70mH4-ZwLY5q46ONSkiplIVtYqyPPPCoXmkkuoVwZqoTVAVoqSNXeflrf0aX2JKPwumJFnX5bJ0pGuxwAUTZjkY15hj81TKhRNNz1E5NilhOSrR0cPlW6Mt-eXcDjRSeHxth2QC7A9W6OU15lOyWq_uagyhi6jLwylnlsSr6o_ZYlUhyh1VTrxXEn_sLQPTqvejHabF1s-IgUFQCoZaANSkMlZEtKUJ5K1FtARhZJ_TARAP_q01X2qXWLN_ZmRJjmoonD6Zq4YciOo8HQHKTOPR9HuS2_GlgFqbHxWq5DP2HB0rXYUeudAAOTP1ZdZ4RHTw&h=b_7qZ6_aO7bi0iK1fe-pOsklY74ffpgbPy5ETrRpe0I + - ms-fabric-cli-test/1.6.1 + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/9640F6B0-B263-41CB-A825-80C0FB10F490", - "name": "9640F6B0-B263-41CB-A825-80C0FB10F490", "status": "Deleting", "startTime": - "2025-09-03T08:02:28.7300000Z"}' + string: '' headers: + Azure-AsyncOperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/9BBA9160-4314-45AE-8219-DD65FDCD69E1?api-version=2022-07-01-preview&t=639148683001327172&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=nw61cTWPMlxNq9Ejz6FuVrSs4Xvya-E8KXI38AtgN4LADoCcCx-UYVVCz4VR1olBczalKdTcdkxKrzXBFqgt3uyBQrxyzhPnM3D_CZdXUgiAnzIAbLtlFX7WiF3aBbLLVR6JK_WTrmnVnYxmPlm_Y3deq8EHuJdzO6td0MUAOHaHEFyr6r8QqG9GBsn7JDoYVT6O8vnELLfBV25826eJHenddmo7j41pMXpLeFCsPgCT7cUrePjEWi9q4UAvkxnWaupX34dSEr0k_HDDyNuzHmSOYyJCvtM-etABip1LUPUMf60KV0E9znzRTqwZYim1gUPHqgMNV44gWNpmlJHbXw&h=1BEITeuSoFr_-k6Vrlb3SX3fnj1mnZQi3DNNl5bYyms Cache-Control: - no-cache Content-Length: - - '245' + - '0' Content-Security-Policy: - script-src 'self' - Content-Type: - - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:02:32 GMT + - Wed, 20 May 2026 10:04:59 GMT Expires: - '-1' + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/9BBA9160-4314-45AE-8219-DD65FDCD69E1?api-version=2022-07-01-preview&t=639148683001483351&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=vV3DxjIVpBxWPfAxjFS7ojNHPRztTcZCJ0TZLFNB9MikqDRNaUpzmEXK75iHg3TbqFZvBTsxic-3uAyTd4wOO0lKn6RroMmXVhVC5GnJPdZj6luwT5l7x6rUgLhkoQ6wdbrsyTpWG_HjvIwGu3VtQ3_AJKD2tH9L3rtZZMOEMaure3We4ijg9-rq4ihXG-5f69wKfPPsd_MA-nsHxGKgy5UNF-5E6n0_gtpxAuQP5lW6zBWb0qfTA-q5J0oR0dpZofXGlhk-i9mThsVm_0bYgIsXTgPqrY6dehmdT41u_hMCXONtETGpr6rC0WnrOniDbl96_rBbXc0WCtBbY7QBEQ&h=V1yVp6XB1ll3FQD-6qo9ktkhrK5OpO_NS--s0unbr_Q Pragma: - no-cache Strict-Transport-Security: @@ -1469,8 +928,8 @@ interactions: X-XSS-Protection: - 1; mode=block status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1483,14 +942,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/9640F6B0-B263-41CB-A825-80C0FB10F490?api-version=2022-07-01-preview&t=638924833493159764&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=o1M0EZ3cCNfDiyYSa2V70mH4-ZwLY5q46ONSkiplIVtYqyPPPCoXmkkuoVwZqoTVAVoqSNXeflrf0aX2JKPwumJFnX5bJ0pGuxwAUTZjkY15hj81TKhRNNz1E5NilhOSrR0cPlW6Mt-eXcDjRSeHxth2QC7A9W6OU15lOyWq_uagyhi6jLwylnlsSr6o_ZYlUhyh1VTrxXEn_sLQPTqvejHabF1s-IgUFQCoZaANSkMlZEtKUJ5K1FtARhZJ_TARAP_q01X2qXWLN_ZmRJjmoonD6Zq4YciOo8HQHKTOPR9HuS2_GlgFqbHxWq5DP2HB0rXYUeudAAOTP1ZdZ4RHTw&h=b_7qZ6_aO7bi0iK1fe-pOsklY74ffpgbPy5ETrRpe0I + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/9BBA9160-4314-45AE-8219-DD65FDCD69E1?api-version=2022-07-01-preview&t=639148683001327172&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=nw61cTWPMlxNq9Ejz6FuVrSs4Xvya-E8KXI38AtgN4LADoCcCx-UYVVCz4VR1olBczalKdTcdkxKrzXBFqgt3uyBQrxyzhPnM3D_CZdXUgiAnzIAbLtlFX7WiF3aBbLLVR6JK_WTrmnVnYxmPlm_Y3deq8EHuJdzO6td0MUAOHaHEFyr6r8QqG9GBsn7JDoYVT6O8vnELLfBV25826eJHenddmo7j41pMXpLeFCsPgCT7cUrePjEWi9q4UAvkxnWaupX34dSEr0k_HDDyNuzHmSOYyJCvtM-etABip1LUPUMf60KV0E9znzRTqwZYim1gUPHqgMNV44gWNpmlJHbXw&h=1BEITeuSoFr_-k6Vrlb3SX3fnj1mnZQi3DNNl5bYyms response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/9640F6B0-B263-41CB-A825-80C0FB10F490", - "name": "9640F6B0-B263-41CB-A825-80C0FB10F490", "status": "Deleting", "startTime": - "2025-09-03T08:02:28.7300000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/9BBA9160-4314-45AE-8219-DD65FDCD69E1", + "name": "9BBA9160-4314-45AE-8219-DD65FDCD69E1", "status": "Deleting", "startTime": + "2026-05-20T10:04:59.5630000Z"}' headers: Cache-Control: - no-cache @@ -1501,7 +960,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:02:37 GMT + - Wed, 20 May 2026 10:05:10 GMT Expires: - '-1' Pragma: @@ -1531,14 +990,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/9640F6B0-B263-41CB-A825-80C0FB10F490?api-version=2022-07-01-preview&t=638924833493159764&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=o1M0EZ3cCNfDiyYSa2V70mH4-ZwLY5q46ONSkiplIVtYqyPPPCoXmkkuoVwZqoTVAVoqSNXeflrf0aX2JKPwumJFnX5bJ0pGuxwAUTZjkY15hj81TKhRNNz1E5NilhOSrR0cPlW6Mt-eXcDjRSeHxth2QC7A9W6OU15lOyWq_uagyhi6jLwylnlsSr6o_ZYlUhyh1VTrxXEn_sLQPTqvejHabF1s-IgUFQCoZaANSkMlZEtKUJ5K1FtARhZJ_TARAP_q01X2qXWLN_ZmRJjmoonD6Zq4YciOo8HQHKTOPR9HuS2_GlgFqbHxWq5DP2HB0rXYUeudAAOTP1ZdZ4RHTw&h=b_7qZ6_aO7bi0iK1fe-pOsklY74ffpgbPy5ETrRpe0I + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/9BBA9160-4314-45AE-8219-DD65FDCD69E1?api-version=2022-07-01-preview&t=639148683001327172&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=nw61cTWPMlxNq9Ejz6FuVrSs4Xvya-E8KXI38AtgN4LADoCcCx-UYVVCz4VR1olBczalKdTcdkxKrzXBFqgt3uyBQrxyzhPnM3D_CZdXUgiAnzIAbLtlFX7WiF3aBbLLVR6JK_WTrmnVnYxmPlm_Y3deq8EHuJdzO6td0MUAOHaHEFyr6r8QqG9GBsn7JDoYVT6O8vnELLfBV25826eJHenddmo7j41pMXpLeFCsPgCT7cUrePjEWi9q4UAvkxnWaupX34dSEr0k_HDDyNuzHmSOYyJCvtM-etABip1LUPUMf60KV0E9znzRTqwZYim1gUPHqgMNV44gWNpmlJHbXw&h=1BEITeuSoFr_-k6Vrlb3SX3fnj1mnZQi3DNNl5bYyms response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/9640F6B0-B263-41CB-A825-80C0FB10F490", - "name": "9640F6B0-B263-41CB-A825-80C0FB10F490", "status": "Succeeded", "startTime": - "2025-09-03T08:02:28.7300000Z", "endTime": "2025-09-03T08:02:45.3630000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/9BBA9160-4314-45AE-8219-DD65FDCD69E1", + "name": "9BBA9160-4314-45AE-8219-DD65FDCD69E1", "status": "Succeeded", "startTime": + "2026-05-20T10:04:59.5630000Z", "endTime": "2026-05-20T10:05:21.2430000Z"}' headers: Cache-Control: - no-cache @@ -1549,7 +1008,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:02:45 GMT + - Wed, 20 May 2026 10:05:20 GMT Expires: - '-1' Pragma: diff --git a/tests/test_commands/recordings/test_commands/test_stop/test_stop_capacity_without_force_cancel_operation_success.yaml b/tests/test_commands/recordings/test_commands/test_stop/test_stop_capacity_without_force_cancel_operation_success.yaml index 27c9e99d9..adf00374d 100644 --- a/tests/test_commands/recordings/test_commands/test_stop/test_stop_capacity_without_force_cancel_operation_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_stop/test_stop_capacity_without_force_cancel_operation_success.yaml @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -27,15 +27,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '456' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:03:57 GMT + - Wed, 20 May 2026 10:07:23 GMT Pragma: - no-cache RequestId: - - 2c2865fe-22d5-45cc-b4f9-505315e367f1 + - f6a74f6c-892d-47d3-b5ae-4e645d0661e2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -43,7 +43,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -60,11 +60,11 @@ interactions: Connection: - keep-alive Content-Length: - - '149' + - '165' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -75,21 +75,21 @@ interactions: "westeurope", "sku": {"name": "F2", "tier": "Fabric"}}' headers: Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/04BF033A-1C13-492A-B04A-E72C215BEBC0?api-version=2022-07-01-preview&t=638924834405925576&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=Z7dXYO2t5vsNxOEnxFpI07vhGORDRXt4QCXwEFZeZ1DP_8Qruf-4WPpFo214qtE1z8zcu1EsoBq6pOVZt-XsCPKlWRGx1oyX0v8CWeF4djLj1dpRTYY9FS_RCW5M8r7ho7Cp2mzPPLQdoJE9UDvigrJO6Q62gzmM1myQvICQq46zfpfyK1eepZtJvChba0H99PDNe6g-uZyPi6cO6ivEhvCh7G0Pyg6l8KzLoAzaZmXnMXnWbADfG4YFo5EsfhJPOidBfDYFrWJGCX0YGCH1IQd78XQOCnIEx8IdSwxscRtCDZH9gvgIXib0_S57nuxslEyM-rKFA4ILDlmBFIccgg&h=N5OwaCFaEb1yY7DO9UW3d2qsQbDWNW2Dvjoz4Dt0Cqg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/4E1D5AA3-69C3-4B90-895C-39017BFC5556?api-version=2022-07-01-preview&t=639148684536481262&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=x1Ypjq0RiC_t3m_TkpU_gCdNXqw3ktv6rziMEWUUhouYIWgfbZJcoDmwurtX-hCekFu_Xnh5d__owGCtdiwaqGxcqNR94ldMYjQKoGAVemWmaCbm755o-mN_6IFlrCaqwZLr0o0KjbN_hJvmwSKHqjADxiz7amon-iYSshZGdEl1BwkPbe3TBK2imvc_-8IBMU6vUIc6tR8sYO1MEYmmnVO9BwHCRgMGHoHkRBZxp5Yrm9j-lwKiBrn4skqzmPoTilM-K1LswoW2ztcaEYYnilwkmLpSfJqi2KaSSRUlDzbgpFNjue0j8biwxuWxt3IPVx0pwnbFG50SY9djJ5H21g&h=Yyqfv1S6PeYm_dFn-ao4ZZl7hJc5OZ0xAi-39PhOEZc Cache-Control: - no-cache Content-Length: - - '406' + - '422' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:03:59 GMT + - Wed, 20 May 2026 10:07:32 GMT Expires: - '-1' Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/04BF033A-1C13-492A-B04A-E72C215BEBC0?api-version=2022-07-01-preview&t=638924834406081887&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=XvSpfV-gPnmjWVuf5ff9sLIMG0ddC5xpjYIR01uH7MgOXlN_6Cjhepw_Rfu_MM1rVloYwpVAPchwTEnVu9TOe5W5SMbT7XgGrH5VhRWPA653immRaybTOf0r7e_am_DubjFQHNLlZA8KoAox5fAoccjRt_lZvkR2gHkUl3d35FG3R5rL7L0eBQA959BOivoU38C7N5imIdwra1tQX05WkrvIw0nRN0yolRbfjGIna1VtU_nNWZ7xe2MrfzXSPWpoNHeYYzxKSsfBzNt6WN7b2Y906yFalVc0pUTTI9l_txTCzgYI4ZbBWGaxbnsx0ZvwmF0GxgAxUKO3KiVpcy12xQ&h=6SYsihw_PD3WxNQZJkGjTYSOwa0pKFoY3P8O9Fze6GI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/4E1D5AA3-69C3-4B90-895C-39017BFC5556?api-version=2022-07-01-preview&t=639148684536481262&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=aW-8jSqcIFBbDTnqXJyWiKEIIduOQonTOx5MQiiDHHGeTr8SMW9lT5xwI6tTTxoGcsq346Mbc3U8X6E5vLxRgKLuuRURSmQP5rvmY91vUmdm2_3JYlGG_uw1e9J2wVBFWGuH4RGmYbnFrlTtfNUmusmYrC0N4YABxWmWSxSsobFZlt7cX4YmIQfzxuj8hIMcnOyUeblvzXtrHacm3CecWTQqcsbG_8O9Nu9xYoxj7jHx93ozfzwqsc9SfTO3V_wn3AXlWV0GBzhXNXGQI8n1ELvB2qPcgYLSFcQsp0v4W2ljZPU9F1x16jvk7r14tpLWn0dFDmjeh7ju1cBNzlSAPw&h=zMzSN1GsEJnCksA6SnPHoDEU9wbFX66_fl_VHqi3D9s Pragma: - no-cache Strict-Transport-Security: @@ -117,158 +117,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/04BF033A-1C13-492A-B04A-E72C215BEBC0?api-version=2022-07-01-preview&t=638924834405925576&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=Z7dXYO2t5vsNxOEnxFpI07vhGORDRXt4QCXwEFZeZ1DP_8Qruf-4WPpFo214qtE1z8zcu1EsoBq6pOVZt-XsCPKlWRGx1oyX0v8CWeF4djLj1dpRTYY9FS_RCW5M8r7ho7Cp2mzPPLQdoJE9UDvigrJO6Q62gzmM1myQvICQq46zfpfyK1eepZtJvChba0H99PDNe6g-uZyPi6cO6ivEhvCh7G0Pyg6l8KzLoAzaZmXnMXnWbADfG4YFo5EsfhJPOidBfDYFrWJGCX0YGCH1IQd78XQOCnIEx8IdSwxscRtCDZH9gvgIXib0_S57nuxslEyM-rKFA4ILDlmBFIccgg&h=N5OwaCFaEb1yY7DO9UW3d2qsQbDWNW2Dvjoz4Dt0Cqg - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/04BF033A-1C13-492A-B04A-E72C215BEBC0", - "name": "04BF033A-1C13-492A-B04A-E72C215BEBC0", "status": "Provisioning", - "startTime": "2025-09-03T08:04:00.0770000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '249' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:04:00 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/04BF033A-1C13-492A-B04A-E72C215BEBC0?api-version=2022-07-01-preview&t=638924834405925576&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=Z7dXYO2t5vsNxOEnxFpI07vhGORDRXt4QCXwEFZeZ1DP_8Qruf-4WPpFo214qtE1z8zcu1EsoBq6pOVZt-XsCPKlWRGx1oyX0v8CWeF4djLj1dpRTYY9FS_RCW5M8r7ho7Cp2mzPPLQdoJE9UDvigrJO6Q62gzmM1myQvICQq46zfpfyK1eepZtJvChba0H99PDNe6g-uZyPi6cO6ivEhvCh7G0Pyg6l8KzLoAzaZmXnMXnWbADfG4YFo5EsfhJPOidBfDYFrWJGCX0YGCH1IQd78XQOCnIEx8IdSwxscRtCDZH9gvgIXib0_S57nuxslEyM-rKFA4ILDlmBFIccgg&h=N5OwaCFaEb1yY7DO9UW3d2qsQbDWNW2Dvjoz4Dt0Cqg + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/4E1D5AA3-69C3-4B90-895C-39017BFC5556?api-version=2022-07-01-preview&t=639148684536481262&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=x1Ypjq0RiC_t3m_TkpU_gCdNXqw3ktv6rziMEWUUhouYIWgfbZJcoDmwurtX-hCekFu_Xnh5d__owGCtdiwaqGxcqNR94ldMYjQKoGAVemWmaCbm755o-mN_6IFlrCaqwZLr0o0KjbN_hJvmwSKHqjADxiz7amon-iYSshZGdEl1BwkPbe3TBK2imvc_-8IBMU6vUIc6tR8sYO1MEYmmnVO9BwHCRgMGHoHkRBZxp5Yrm9j-lwKiBrn4skqzmPoTilM-K1LswoW2ztcaEYYnilwkmLpSfJqi2KaSSRUlDzbgpFNjue0j8biwxuWxt3IPVx0pwnbFG50SY9djJ5H21g&h=Yyqfv1S6PeYm_dFn-ao4ZZl7hJc5OZ0xAi-39PhOEZc response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/04BF033A-1C13-492A-B04A-E72C215BEBC0", - "name": "04BF033A-1C13-492A-B04A-E72C215BEBC0", "status": "Provisioning", - "startTime": "2025-09-03T08:04:00.0770000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '249' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:04:00 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/04BF033A-1C13-492A-B04A-E72C215BEBC0?api-version=2022-07-01-preview&t=638924834405925576&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=Z7dXYO2t5vsNxOEnxFpI07vhGORDRXt4QCXwEFZeZ1DP_8Qruf-4WPpFo214qtE1z8zcu1EsoBq6pOVZt-XsCPKlWRGx1oyX0v8CWeF4djLj1dpRTYY9FS_RCW5M8r7ho7Cp2mzPPLQdoJE9UDvigrJO6Q62gzmM1myQvICQq46zfpfyK1eepZtJvChba0H99PDNe6g-uZyPi6cO6ivEhvCh7G0Pyg6l8KzLoAzaZmXnMXnWbADfG4YFo5EsfhJPOidBfDYFrWJGCX0YGCH1IQd78XQOCnIEx8IdSwxscRtCDZH9gvgIXib0_S57nuxslEyM-rKFA4ILDlmBFIccgg&h=N5OwaCFaEb1yY7DO9UW3d2qsQbDWNW2Dvjoz4Dt0Cqg - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/04BF033A-1C13-492A-B04A-E72C215BEBC0", - "name": "04BF033A-1C13-492A-B04A-E72C215BEBC0", "status": "Provisioning", - "startTime": "2025-09-03T08:04:00.0770000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '249' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:04:01 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/04BF033A-1C13-492A-B04A-E72C215BEBC0?api-version=2022-07-01-preview&t=638924834405925576&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=Z7dXYO2t5vsNxOEnxFpI07vhGORDRXt4QCXwEFZeZ1DP_8Qruf-4WPpFo214qtE1z8zcu1EsoBq6pOVZt-XsCPKlWRGx1oyX0v8CWeF4djLj1dpRTYY9FS_RCW5M8r7ho7Cp2mzPPLQdoJE9UDvigrJO6Q62gzmM1myQvICQq46zfpfyK1eepZtJvChba0H99PDNe6g-uZyPi6cO6ivEhvCh7G0Pyg6l8KzLoAzaZmXnMXnWbADfG4YFo5EsfhJPOidBfDYFrWJGCX0YGCH1IQd78XQOCnIEx8IdSwxscRtCDZH9gvgIXib0_S57nuxslEyM-rKFA4ILDlmBFIccgg&h=N5OwaCFaEb1yY7DO9UW3d2qsQbDWNW2Dvjoz4Dt0Cqg - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/04BF033A-1C13-492A-B04A-E72C215BEBC0", - "name": "04BF033A-1C13-492A-B04A-E72C215BEBC0", "status": "Succeeded", "startTime": - "2025-09-03T08:04:00.0770000Z", "endTime": "2025-09-03T08:04:02.6330000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/4E1D5AA3-69C3-4B90-895C-39017BFC5556", + "name": "4E1D5AA3-69C3-4B90-895C-39017BFC5556", "status": "Succeeded", "startTime": + "2026-05-20T10:07:32.4100000Z", "endTime": "2026-05-20T10:07:35.1200000Z"}' headers: Cache-Control: - no-cache @@ -279,7 +135,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:04:03 GMT + - Wed, 20 May 2026 10:07:44 GMT Expires: - '-1' Pragma: @@ -309,15 +165,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": - "Active"}, {"id": "99e5ba89-0421-4b20-a305-cdedaebfeb39", "displayName": "fabcli000001", - "sku": "F2", "region": "West Europe", "state": "Active"}]}' + string: '{"value": [{"id": "3a8c1cc0-dbc6-441c-90fc-e52fae2f2599", "displayName": + "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}, + {"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", + "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -326,15 +182,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '489' + - '457' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:04:09 GMT + - Wed, 20 May 2026 10:07:47 GMT Pragma: - no-cache RequestId: - - 6d34165f-09d4-467d-aa96-3b2b2c483283 + - 3a073f78-2a2c-4113-a3ea-3ee91a4ad54a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -342,7 +198,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -360,14 +216,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": - "Active"}, {"id": "99e5ba89-0421-4b20-a305-cdedaebfeb39", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "3a8c1cc0-dbc6-441c-90fc-e52fae2f2599", "displayName": "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -377,15 +233,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '489' + - '456' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:04:15 GMT + - Wed, 20 May 2026 10:07:51 GMT Pragma: - no-cache RequestId: - - e65147e4-a646-4f87-9302-7c8a06e8e656 + - 43182298-3239-4051-a97a-9d8622f97e11 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -393,7 +249,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -411,7 +267,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -424,13 +280,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:04:15 GMT + - Wed, 20 May 2026 10:07:52 GMT Expires: - '-1' Pragma: @@ -460,7 +316,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -473,13 +329,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:04:15 GMT + - Wed, 20 May 2026 10:07:52 GMT Expires: - '-1' Pragma: @@ -509,15 +365,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": - "Active"}, {"id": "99e5ba89-0421-4b20-a305-cdedaebfeb39", "displayName": "fabcli000001", - "sku": "F2", "region": "West Europe", "state": "Active"}]}' + string: '{"value": [{"id": "3a8c1cc0-dbc6-441c-90fc-e52fae2f2599", "displayName": + "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}, + {"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", + "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -526,15 +382,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '489' + - '454' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:04:18 GMT + - Wed, 20 May 2026 10:07:57 GMT Pragma: - no-cache RequestId: - - f2b22408-5ab4-4724-b32b-0677d7e98926 + - a6464a5c-9fd6-4932-9347-f19536863b1f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -542,7 +398,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -560,14 +416,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": - "Active"}, {"id": "99e5ba89-0421-4b20-a305-cdedaebfeb39", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "3a8c1cc0-dbc6-441c-90fc-e52fae2f2599", "displayName": "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -577,15 +433,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '489' + - '456' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:04:24 GMT + - Wed, 20 May 2026 10:08:00 GMT Pragma: - no-cache RequestId: - - 130f7adc-81eb-42e5-89d3-9a8519a36cd1 + - a7cc7bdb-822c-4cca-8cac-6aeb27c44c2f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -593,7 +449,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -611,7 +467,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -624,13 +480,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:04:25 GMT + - Wed, 20 May 2026 10:08:02 GMT Expires: - '-1' Pragma: @@ -660,7 +516,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -673,13 +529,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:04:25 GMT + - Wed, 20 May 2026 10:08:03 GMT Expires: - '-1' Pragma: @@ -709,14 +565,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": - "Active"}, {"id": "99e5ba89-0421-4b20-a305-cdedaebfeb39", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "3a8c1cc0-dbc6-441c-90fc-e52fae2f2599", "displayName": "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -726,15 +582,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '489' + - '456' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:04:29 GMT + - Wed, 20 May 2026 10:08:08 GMT Pragma: - no-cache RequestId: - - 5a76e6a6-2056-4126-a9ab-b24de4f28333 + - 20408825-944a-4e36-aa52-fa2e2cbfe860 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -742,7 +598,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -760,124 +616,24 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions?api-version=2022-12-01 - response: - body: - string: '{"value": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000"}], - "count": {"type": "Total", "value": 1}}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '479' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:04:29 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/capacities?api-version=2023-11-01 + uri: https://management.azure.com/subscriptions/placeholder/resourceGroups/placeholder/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: body: - string: '{"value": [{"properties": {"provisioningState": "Succeeded", "state": - "Active", "administration": {"members": ["mocked@admin_test_user"]}}, "id": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/mocked_fabriccli_capacity_name", - "name": "mocked_fabriccli_capacity_name", "type": "Microsoft.Fabric/capacities", - "location": "West Europe", "sku": {"name": "F16", "tier": "Fabric"}, "tags": - {}}, {"properties": {"provisioningState": "Succeeded", "state": "Active", - "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", - "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": - "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}]}' + string: '{"error": {"code": "InvalidSubscriptionId", "message": "The provided + subscription identifier ''placeholder'' is malformed or invalid."}}' headers: Cache-Control: - no-cache Content-Length: - - '2480' - Content-Security-Policy: - - script-src 'self' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:04:30 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - 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.0.0 - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 - response: - body: - string: '' - headers: - Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/A243A211-7203-4B84-8353-378F2B8415A4?api-version=2022-07-01-preview&t=638924834711182665&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=ZSHnRUvcan6ozrrK5EZYgmuUdxpAAQKp6LROrFiicj8qlaD_NeEB5sNdvn_tJm69ed30DoxBVkIoDRnioaQ-PaSwckxA4l--Dj7iOFjCpkRAcVxDAH40iaXBFus6XaYS_tvc6y4GIlbpMsBc6MXwILYU_25MHFXMk-DI2R1SXRh5hhFRJoaSIHmQZPKbuOo1H6YVz04gxz4nmA8bCBIArrWksS1lnnLI0h3fQYzO8Povhi_3IFAnMOqUuQGOneb1WDIDwTkKdxhsJGz9oMIRCVr3TjCCBfkCapTZkuK1oFfe_41pmWRgqqRGttZt5qrH5BXyAiyZkr0MG3FwLNagfg&h=mO_qYJULeSMYKExqJn3aB7iQCJ5uoqkkWmceGs2uTQA - Cache-Control: - - no-cache - Content-Length: - - '0' - Content-Security-Policy: - - script-src 'self' - Date: - - Wed, 03 Sep 2025 08:04:30 GMT + - Wed, 20 May 2026 10:08:08 GMT Expires: - '-1' - Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/A243A211-7203-4B84-8353-378F2B8415A4?api-version=2022-07-01-preview&t=638924834711182665&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=dc5QvNeB_ZiQY_SldiaHIzrjYKddvRuI9uiuPgBGBjL5D-IHAKwiIAOt8ZPP35Dai5W7Q-UA310HxmGHAszxBOPjCofkdWk4tX5yCl574OEx2ZuQjK14kK7rjFfuQnqwPVXk45j1YzIEyeYPA-zMYUMQRP5cI9vc2S0zHYPGs02mcDJnfIJYA-mvO3LXsMdSsvLOj95QkIs4TIt_FUwOLE9cw74iM8CDpRLlygk4ivugFzgORAXiWeonKC9skW1ADKW2XmFOY1hkfXBMXXIct9wVbvlECiVV42X0pqZYkl07ItZ3ZKYIc93FyIn-h2caaigu5_hp7HXcF6-wBBeXwQ&h=SiqeXSje4bh1KBcNk0bAIkYhN_l3GdeKVdw-YA3pmyw Pragma: - no-cache Strict-Transport-Security: @@ -886,13 +642,9 @@ interactions: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block status: - code: 202 - message: Accepted + code: 400 + message: Bad Request - request: body: null headers: @@ -905,25 +657,22 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/A243A211-7203-4B84-8353-378F2B8415A4?api-version=2022-07-01-preview&t=638924834711182665&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=ZSHnRUvcan6ozrrK5EZYgmuUdxpAAQKp6LROrFiicj8qlaD_NeEB5sNdvn_tJm69ed30DoxBVkIoDRnioaQ-PaSwckxA4l--Dj7iOFjCpkRAcVxDAH40iaXBFus6XaYS_tvc6y4GIlbpMsBc6MXwILYU_25MHFXMk-DI2R1SXRh5hhFRJoaSIHmQZPKbuOo1H6YVz04gxz4nmA8bCBIArrWksS1lnnLI0h3fQYzO8Povhi_3IFAnMOqUuQGOneb1WDIDwTkKdxhsJGz9oMIRCVr3TjCCBfkCapTZkuK1oFfe_41pmWRgqqRGttZt5qrH5BXyAiyZkr0MG3FwLNagfg&h=mO_qYJULeSMYKExqJn3aB7iQCJ5uoqkkWmceGs2uTQA + uri: https://management.azure.com/subscriptions?api-version=2022-12-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/A243A211-7203-4B84-8353-378F2B8415A4", - "name": "A243A211-7203-4B84-8353-378F2B8415A4", "status": "Deleting", "startTime": - "2025-09-03T08:04:30.5270000Z"}' + string: '{"value": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000"}], + "count": {"type": "Total", "value": 1}}' headers: Cache-Control: - no-cache Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' + - '469' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:04:31 GMT + - Wed, 20 May 2026 10:08:09 GMT Expires: - '-1' Pragma: @@ -934,10 +683,6 @@ interactions: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block status: code: 200 message: OK @@ -953,25 +698,29 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/A243A211-7203-4B84-8353-378F2B8415A4?api-version=2022-07-01-preview&t=638924834711182665&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=ZSHnRUvcan6ozrrK5EZYgmuUdxpAAQKp6LROrFiicj8qlaD_NeEB5sNdvn_tJm69ed30DoxBVkIoDRnioaQ-PaSwckxA4l--Dj7iOFjCpkRAcVxDAH40iaXBFus6XaYS_tvc6y4GIlbpMsBc6MXwILYU_25MHFXMk-DI2R1SXRh5hhFRJoaSIHmQZPKbuOo1H6YVz04gxz4nmA8bCBIArrWksS1lnnLI0h3fQYzO8Povhi_3IFAnMOqUuQGOneb1WDIDwTkKdxhsJGz9oMIRCVr3TjCCBfkCapTZkuK1oFfe_41pmWRgqqRGttZt5qrH5BXyAiyZkr0MG3FwLNagfg&h=mO_qYJULeSMYKExqJn3aB7iQCJ5uoqkkWmceGs2uTQA + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/capacities?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/A243A211-7203-4B84-8353-378F2B8415A4", - "name": "A243A211-7203-4B84-8353-378F2B8415A4", "status": "Deleting", "startTime": - "2025-09-03T08:04:30.5270000Z"}' + string: '{"value": [{"properties": {"provisioningState": "Succeeded", "state": + "Active", "administration": {"members": ["mocked@admin_test_user", "4fdd0762-85fe-4f8b-90dc-776e8605e0b9"]}}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/mocked_fabriccli_capacity_name", + "name": "mocked_fabriccli_capacity_name", "type": "Microsoft.Fabric/capacities", + "location": "Central US", "sku": {"name": "F16", "tier": "Fabric"}, "tags": + {}}, {"properties": {"provisioningState": "Succeeded", "state": "Active", + "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", + "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": + "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}]}' headers: Cache-Control: - no-cache Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' + - '2562' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:04:31 GMT + - Wed, 20 May 2026 10:08:11 GMT Expires: - '-1' Pragma: @@ -982,10 +731,6 @@ interactions: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block status: code: 200 message: OK @@ -998,78 +743,32 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/A243A211-7203-4B84-8353-378F2B8415A4?api-version=2022-07-01-preview&t=638924834711182665&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=ZSHnRUvcan6ozrrK5EZYgmuUdxpAAQKp6LROrFiicj8qlaD_NeEB5sNdvn_tJm69ed30DoxBVkIoDRnioaQ-PaSwckxA4l--Dj7iOFjCpkRAcVxDAH40iaXBFus6XaYS_tvc6y4GIlbpMsBc6MXwILYU_25MHFXMk-DI2R1SXRh5hhFRJoaSIHmQZPKbuOo1H6YVz04gxz4nmA8bCBIArrWksS1lnnLI0h3fQYzO8Povhi_3IFAnMOqUuQGOneb1WDIDwTkKdxhsJGz9oMIRCVr3TjCCBfkCapTZkuK1oFfe_41pmWRgqqRGttZt5qrH5BXyAiyZkr0MG3FwLNagfg&h=mO_qYJULeSMYKExqJn3aB7iQCJ5uoqkkWmceGs2uTQA - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/A243A211-7203-4B84-8353-378F2B8415A4", - "name": "A243A211-7203-4B84-8353-378F2B8415A4", "status": "Deleting", "startTime": - "2025-09-03T08:04:30.5270000Z"}' - headers: - Cache-Control: - - no-cache Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:04:31 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive + - '0' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/A243A211-7203-4B84-8353-378F2B8415A4?api-version=2022-07-01-preview&t=638924834711182665&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=ZSHnRUvcan6ozrrK5EZYgmuUdxpAAQKp6LROrFiicj8qlaD_NeEB5sNdvn_tJm69ed30DoxBVkIoDRnioaQ-PaSwckxA4l--Dj7iOFjCpkRAcVxDAH40iaXBFus6XaYS_tvc6y4GIlbpMsBc6MXwILYU_25MHFXMk-DI2R1SXRh5hhFRJoaSIHmQZPKbuOo1H6YVz04gxz4nmA8bCBIArrWksS1lnnLI0h3fQYzO8Povhi_3IFAnMOqUuQGOneb1WDIDwTkKdxhsJGz9oMIRCVr3TjCCBfkCapTZkuK1oFfe_41pmWRgqqRGttZt5qrH5BXyAiyZkr0MG3FwLNagfg&h=mO_qYJULeSMYKExqJn3aB7iQCJ5uoqkkWmceGs2uTQA + - ms-fabric-cli-test/1.6.1 + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/A243A211-7203-4B84-8353-378F2B8415A4", - "name": "A243A211-7203-4B84-8353-378F2B8415A4", "status": "Deleting", "startTime": - "2025-09-03T08:04:30.5270000Z"}' + string: '' headers: + Azure-AsyncOperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/8F8BD958-32F8-420A-87D5-FA3F7CE29CE3?api-version=2022-07-01-preview&t=639148684934219263&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=i5CG7JcY77XnhynyJEsyXiRfcMaIbFSSX30N-SB5tIpk-2T-t0ypGoSEL_0tLO_nq5420IcSQ-BDbzyQLKgHLhpal71foXOa_RgbLpEZ6IPmZyGGeLN3IOLV-0Ikkro15Pd-CXgwc8tdHaoY8wpd8RwBdDQzC5KWWkBdPrkM8NZD6tBRb86h9h4LAo6vZH1NflAtKVo1rgzN0BAZHNpYlqLeQfSMY-vBqjG2kEMGZruQw-F5rtOa-AvI_RchFO6LkXTFsAhV2CZohgXKDZKaxZbtqv-dS1wExa6Zj-_xxzCVn-mxsi3KdSMSR0XmWOO48bMpIVhEcG4mNmYlvUrqgA&h=1xCU8_czL7SbiD_4dirD6IzxaWmYr19B12VWhNpa3Ek Cache-Control: - no-cache Content-Length: - - '245' + - '0' Content-Security-Policy: - script-src 'self' - Content-Type: - - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:04:34 GMT + - Wed, 20 May 2026 10:08:13 GMT Expires: - '-1' + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/8F8BD958-32F8-420A-87D5-FA3F7CE29CE3?api-version=2022-07-01-preview&t=639148684934375512&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=D-UfAKfA3fZmIRE5_QLwMT0ldKOFgHCsqGbOY9Mfq332nambHbDPn56A8uQcVBBCUDGfPBDX0RIdaOE2rt7DKeYJnEkXSqlFpPKyJRuawz12iWADI830RVVGjblQoPkIwazao8JCro_u9U2Dux0bCH1LXSEujM__dd5e34i8OWrojngfSKNiH1o25b91rr93H6n_Roz2e4U_QRs0vaNiP9TnouHIpdnLwnt4sipJSNfxrAw5uO_FJFzAGUXnwdLC9JggVJVGFm3dKKE9Vx6Jw0aSO7kMa2dh_iCVNNxAGvz8F4OJYfrlrJxgQDKdZA3BeqJ7VsRcKkgwmRYy-lXCvw&h=j37wF8KWYhttU5UGMYNw2D7MIN80VbGrNAblI8--Clo Pragma: - no-cache Strict-Transport-Security: @@ -1083,8 +782,8 @@ interactions: X-XSS-Protection: - 1; mode=block status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1097,14 +796,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/A243A211-7203-4B84-8353-378F2B8415A4?api-version=2022-07-01-preview&t=638924834711182665&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=ZSHnRUvcan6ozrrK5EZYgmuUdxpAAQKp6LROrFiicj8qlaD_NeEB5sNdvn_tJm69ed30DoxBVkIoDRnioaQ-PaSwckxA4l--Dj7iOFjCpkRAcVxDAH40iaXBFus6XaYS_tvc6y4GIlbpMsBc6MXwILYU_25MHFXMk-DI2R1SXRh5hhFRJoaSIHmQZPKbuOo1H6YVz04gxz4nmA8bCBIArrWksS1lnnLI0h3fQYzO8Povhi_3IFAnMOqUuQGOneb1WDIDwTkKdxhsJGz9oMIRCVr3TjCCBfkCapTZkuK1oFfe_41pmWRgqqRGttZt5qrH5BXyAiyZkr0MG3FwLNagfg&h=mO_qYJULeSMYKExqJn3aB7iQCJ5uoqkkWmceGs2uTQA + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/8F8BD958-32F8-420A-87D5-FA3F7CE29CE3?api-version=2022-07-01-preview&t=639148684934219263&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=i5CG7JcY77XnhynyJEsyXiRfcMaIbFSSX30N-SB5tIpk-2T-t0ypGoSEL_0tLO_nq5420IcSQ-BDbzyQLKgHLhpal71foXOa_RgbLpEZ6IPmZyGGeLN3IOLV-0Ikkro15Pd-CXgwc8tdHaoY8wpd8RwBdDQzC5KWWkBdPrkM8NZD6tBRb86h9h4LAo6vZH1NflAtKVo1rgzN0BAZHNpYlqLeQfSMY-vBqjG2kEMGZruQw-F5rtOa-AvI_RchFO6LkXTFsAhV2CZohgXKDZKaxZbtqv-dS1wExa6Zj-_xxzCVn-mxsi3KdSMSR0XmWOO48bMpIVhEcG4mNmYlvUrqgA&h=1xCU8_czL7SbiD_4dirD6IzxaWmYr19B12VWhNpa3Ek response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/A243A211-7203-4B84-8353-378F2B8415A4", - "name": "A243A211-7203-4B84-8353-378F2B8415A4", "status": "Deleting", "startTime": - "2025-09-03T08:04:30.5270000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/8F8BD958-32F8-420A-87D5-FA3F7CE29CE3", + "name": "8F8BD958-32F8-420A-87D5-FA3F7CE29CE3", "status": "Deleting", "startTime": + "2026-05-20T10:08:12.8530000Z"}' headers: Cache-Control: - no-cache @@ -1115,7 +814,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:04:38 GMT + - Wed, 20 May 2026 10:08:23 GMT Expires: - '-1' Pragma: @@ -1145,14 +844,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/A243A211-7203-4B84-8353-378F2B8415A4?api-version=2022-07-01-preview&t=638924834711182665&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=ZSHnRUvcan6ozrrK5EZYgmuUdxpAAQKp6LROrFiicj8qlaD_NeEB5sNdvn_tJm69ed30DoxBVkIoDRnioaQ-PaSwckxA4l--Dj7iOFjCpkRAcVxDAH40iaXBFus6XaYS_tvc6y4GIlbpMsBc6MXwILYU_25MHFXMk-DI2R1SXRh5hhFRJoaSIHmQZPKbuOo1H6YVz04gxz4nmA8bCBIArrWksS1lnnLI0h3fQYzO8Povhi_3IFAnMOqUuQGOneb1WDIDwTkKdxhsJGz9oMIRCVr3TjCCBfkCapTZkuK1oFfe_41pmWRgqqRGttZt5qrH5BXyAiyZkr0MG3FwLNagfg&h=mO_qYJULeSMYKExqJn3aB7iQCJ5uoqkkWmceGs2uTQA + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/8F8BD958-32F8-420A-87D5-FA3F7CE29CE3?api-version=2022-07-01-preview&t=639148684934219263&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=i5CG7JcY77XnhynyJEsyXiRfcMaIbFSSX30N-SB5tIpk-2T-t0ypGoSEL_0tLO_nq5420IcSQ-BDbzyQLKgHLhpal71foXOa_RgbLpEZ6IPmZyGGeLN3IOLV-0Ikkro15Pd-CXgwc8tdHaoY8wpd8RwBdDQzC5KWWkBdPrkM8NZD6tBRb86h9h4LAo6vZH1NflAtKVo1rgzN0BAZHNpYlqLeQfSMY-vBqjG2kEMGZruQw-F5rtOa-AvI_RchFO6LkXTFsAhV2CZohgXKDZKaxZbtqv-dS1wExa6Zj-_xxzCVn-mxsi3KdSMSR0XmWOO48bMpIVhEcG4mNmYlvUrqgA&h=1xCU8_czL7SbiD_4dirD6IzxaWmYr19B12VWhNpa3Ek response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/A243A211-7203-4B84-8353-378F2B8415A4", - "name": "A243A211-7203-4B84-8353-378F2B8415A4", "status": "Deleting", "startTime": - "2025-09-03T08:04:30.5270000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/8F8BD958-32F8-420A-87D5-FA3F7CE29CE3", + "name": "8F8BD958-32F8-420A-87D5-FA3F7CE29CE3", "status": "Deleting", "startTime": + "2026-05-20T10:08:12.8530000Z"}' headers: Cache-Control: - no-cache @@ -1163,7 +862,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:04:45 GMT + - Wed, 20 May 2026 10:08:35 GMT Expires: - '-1' Pragma: @@ -1193,14 +892,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/A243A211-7203-4B84-8353-378F2B8415A4?api-version=2022-07-01-preview&t=638924834711182665&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=ZSHnRUvcan6ozrrK5EZYgmuUdxpAAQKp6LROrFiicj8qlaD_NeEB5sNdvn_tJm69ed30DoxBVkIoDRnioaQ-PaSwckxA4l--Dj7iOFjCpkRAcVxDAH40iaXBFus6XaYS_tvc6y4GIlbpMsBc6MXwILYU_25MHFXMk-DI2R1SXRh5hhFRJoaSIHmQZPKbuOo1H6YVz04gxz4nmA8bCBIArrWksS1lnnLI0h3fQYzO8Povhi_3IFAnMOqUuQGOneb1WDIDwTkKdxhsJGz9oMIRCVr3TjCCBfkCapTZkuK1oFfe_41pmWRgqqRGttZt5qrH5BXyAiyZkr0MG3FwLNagfg&h=mO_qYJULeSMYKExqJn3aB7iQCJ5uoqkkWmceGs2uTQA + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/8F8BD958-32F8-420A-87D5-FA3F7CE29CE3?api-version=2022-07-01-preview&t=639148684934219263&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=i5CG7JcY77XnhynyJEsyXiRfcMaIbFSSX30N-SB5tIpk-2T-t0ypGoSEL_0tLO_nq5420IcSQ-BDbzyQLKgHLhpal71foXOa_RgbLpEZ6IPmZyGGeLN3IOLV-0Ikkro15Pd-CXgwc8tdHaoY8wpd8RwBdDQzC5KWWkBdPrkM8NZD6tBRb86h9h4LAo6vZH1NflAtKVo1rgzN0BAZHNpYlqLeQfSMY-vBqjG2kEMGZruQw-F5rtOa-AvI_RchFO6LkXTFsAhV2CZohgXKDZKaxZbtqv-dS1wExa6Zj-_xxzCVn-mxsi3KdSMSR0XmWOO48bMpIVhEcG4mNmYlvUrqgA&h=1xCU8_czL7SbiD_4dirD6IzxaWmYr19B12VWhNpa3Ek response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/A243A211-7203-4B84-8353-378F2B8415A4", - "name": "A243A211-7203-4B84-8353-378F2B8415A4", "status": "Succeeded", "startTime": - "2025-09-03T08:04:30.5270000Z", "endTime": "2025-09-03T08:04:49.7570000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/8F8BD958-32F8-420A-87D5-FA3F7CE29CE3", + "name": "8F8BD958-32F8-420A-87D5-FA3F7CE29CE3", "status": "Succeeded", "startTime": + "2026-05-20T10:08:12.8530000Z", "endTime": "2026-05-20T10:08:35.5130000Z"}' headers: Cache-Control: - no-cache @@ -1211,7 +910,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:05:01 GMT + - Wed, 20 May 2026 10:08:46 GMT Expires: - '-1' Pragma: diff --git a/tests/test_commands/recordings/test_commands/test_stop/test_stop_capacity_without_force_success.yaml b/tests/test_commands/recordings/test_commands/test_stop/test_stop_capacity_without_force_success.yaml index 4df0035cd..21c7c20ab 100644 --- a/tests/test_commands/recordings/test_commands/test_stop/test_stop_capacity_without_force_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_stop/test_stop_capacity_without_force_success.yaml @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -27,15 +27,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '456' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:02:48 GMT + - Wed, 20 May 2026 10:05:25 GMT Pragma: - no-cache RequestId: - - 150dc586-a1ba-4d06-b35e-45502eaea586 + - 137923bb-206d-4095-b799-557c6a657637 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -43,7 +43,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -60,11 +60,11 @@ interactions: Connection: - keep-alive Content-Length: - - '149' + - '165' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -75,21 +75,21 @@ interactions: "westeurope", "sku": {"name": "F2", "tier": "Fabric"}}' headers: Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/016D40D2-D019-42BF-BB6E-7F9DA20CED02?api-version=2022-07-01-preview&t=638924833714088972&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=Gjta5YKI1MJxZJR1ml_CjSslN9JpkTQQPtNFpkSl5bMJoR5oDWPzfh_4-JlgtUP80fu_D2FPfbMffWaM5a_nKlJsk8kM-ijNAMnRCaoghXOYkLJIkVWY9HMdjGEctSMoAkBGTpwzLJHzgLP7z69nqfex9SNDMqs9YT4HZcxly21YhfLRYROxyKrP6qmN6dgfgfVo7ParjG1XkSmjd5NmyH9iixa2i_9jVoF9u_5XDrNtuOZlbofLiXVUsHalZt0VpCJzBL6sHGw1RrDRAcnZMXWwfEqGpADMUKfUKUkclT3a6-gcFW3cudveS2kSvTg3CtnPgaiWsHXGdtuYiD4iCA&h=LDDeHCRWzGj7uyJvRHL63ldWhITd7MQJGcb72ugDbyc + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/92C82C0F-4B70-429D-A525-A2CA5544FC47?api-version=2022-07-01-preview&t=639148683303132924&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=LFBL3XWp-iat6eMlyidzlAqPwpJtGZxPK8uBu43J4muwKoA_A2VsgteP-4UFq_BYe2Ss4wm5rOTMh2hvse3eUXVKqJA3veiZyVlCn33eBMQcnaemQWP9EsHtBypA1zse5g6lLJTteyGfMbPiYR6tVQboaBncYeIPOyCowuq3DEsUSAz6EZEpD0xkOTu5kgjZ-WiPFtlT28xwTRZ55iMb9adjl5uRfhtv7582FpHYhRfAQJ0YsK-wZNdlmkEfYqOyhNMoDkiW6RYY0nVrG5rqmqyz_Rpu364ZURvVR4ow_GzYFlCa6FGJCugI2wyoRpaKQ3zvVTgHQrDVWad7iN9Fdw&h=ReV0OU81Iq6OBJJ8NP2Y3e6_DwEET9iF6qUMy7JzS10 Cache-Control: - no-cache Content-Length: - - '406' + - '422' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:02:51 GMT + - Wed, 20 May 2026 10:05:29 GMT Expires: - '-1' Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/016D40D2-D019-42BF-BB6E-7F9DA20CED02?api-version=2022-07-01-preview&t=638924833714088972&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=CFd9Tr9upTIi3O6M5lnQvtEYnpD3O6d9ZaF6kZJ5subsCYownnoi-pD-xUZl81EN5tBn3TLkXeOmO7AqZBvCmp6gnN-XmIxipykRF3jPT2h4e08zd4uIV5xOwDn6nEFfhkI0iU04Q_lG2g2L7uRqPMVgp2ikTj5BLguupxAVj7klKb7AlSxAoauvl2v_WcagNBH2k2A0BeDq-8adivkmRQzJWpW0VacQo8vELQnBebO-YGS2m2h-s26Dd76gEgq1xWgmofqsvK67ytUroxp8Vx6jsmFt_P5EZxygOJIa_2UO2j4kVAKovFqh4Z86L8ghO5clASGXOQH6Lo7aFxfyfQ&h=XJG_k0JU0dZhlOwmHuCIniTrudWZOwQB-e1o_R3ctjo + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/92C82C0F-4B70-429D-A525-A2CA5544FC47?api-version=2022-07-01-preview&t=639148683303289156&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=CAZXdiTGM2Qv2rwYyDtsebRRmO6_W3u_a9OUMPRvhlbSH045ThCNcuEf5kaFpNX08cV0yEnO_pqv3Pan0JDtCDRK6KKZi6K3VxTQVeG_GDcrS5CmQpkxITYBtsJhMBfHqjyzsuh8cDGS4Xoh0rNQn1gpKsGDULDuLXdK7hDWaZp4V4C4jJ_lUGh2VAzBl61klfj_dBM9w9N9w5jdODHbnX1IyTy4loj74ufSEHvgaU7WX04jrwnYlGyyArpJpUH9gjjsiiz7emkOSlDT68BzRRM8h92UzyKe2ona9mbKl7eFRnRG6fcVyMBlhsgDrnRnAInkcfbM9V7jq7mntbUCkQ&h=vJPQrKtEKwkUChUUWkdYFIrrcbJZ84eDAuGrvWloUQI Pragma: - no-cache Strict-Transport-Security: @@ -117,158 +117,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/016D40D2-D019-42BF-BB6E-7F9DA20CED02?api-version=2022-07-01-preview&t=638924833714088972&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=Gjta5YKI1MJxZJR1ml_CjSslN9JpkTQQPtNFpkSl5bMJoR5oDWPzfh_4-JlgtUP80fu_D2FPfbMffWaM5a_nKlJsk8kM-ijNAMnRCaoghXOYkLJIkVWY9HMdjGEctSMoAkBGTpwzLJHzgLP7z69nqfex9SNDMqs9YT4HZcxly21YhfLRYROxyKrP6qmN6dgfgfVo7ParjG1XkSmjd5NmyH9iixa2i_9jVoF9u_5XDrNtuOZlbofLiXVUsHalZt0VpCJzBL6sHGw1RrDRAcnZMXWwfEqGpADMUKfUKUkclT3a6-gcFW3cudveS2kSvTg3CtnPgaiWsHXGdtuYiD4iCA&h=LDDeHCRWzGj7uyJvRHL63ldWhITd7MQJGcb72ugDbyc + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/92C82C0F-4B70-429D-A525-A2CA5544FC47?api-version=2022-07-01-preview&t=639148683303132924&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=LFBL3XWp-iat6eMlyidzlAqPwpJtGZxPK8uBu43J4muwKoA_A2VsgteP-4UFq_BYe2Ss4wm5rOTMh2hvse3eUXVKqJA3veiZyVlCn33eBMQcnaemQWP9EsHtBypA1zse5g6lLJTteyGfMbPiYR6tVQboaBncYeIPOyCowuq3DEsUSAz6EZEpD0xkOTu5kgjZ-WiPFtlT28xwTRZ55iMb9adjl5uRfhtv7582FpHYhRfAQJ0YsK-wZNdlmkEfYqOyhNMoDkiW6RYY0nVrG5rqmqyz_Rpu364ZURvVR4ow_GzYFlCa6FGJCugI2wyoRpaKQ3zvVTgHQrDVWad7iN9Fdw&h=ReV0OU81Iq6OBJJ8NP2Y3e6_DwEET9iF6qUMy7JzS10 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/016D40D2-D019-42BF-BB6E-7F9DA20CED02", - "name": "016D40D2-D019-42BF-BB6E-7F9DA20CED02", "status": "Provisioning", - "startTime": "2025-09-03T08:02:50.6730000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '249' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:02:50 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/016D40D2-D019-42BF-BB6E-7F9DA20CED02?api-version=2022-07-01-preview&t=638924833714088972&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=Gjta5YKI1MJxZJR1ml_CjSslN9JpkTQQPtNFpkSl5bMJoR5oDWPzfh_4-JlgtUP80fu_D2FPfbMffWaM5a_nKlJsk8kM-ijNAMnRCaoghXOYkLJIkVWY9HMdjGEctSMoAkBGTpwzLJHzgLP7z69nqfex9SNDMqs9YT4HZcxly21YhfLRYROxyKrP6qmN6dgfgfVo7ParjG1XkSmjd5NmyH9iixa2i_9jVoF9u_5XDrNtuOZlbofLiXVUsHalZt0VpCJzBL6sHGw1RrDRAcnZMXWwfEqGpADMUKfUKUkclT3a6-gcFW3cudveS2kSvTg3CtnPgaiWsHXGdtuYiD4iCA&h=LDDeHCRWzGj7uyJvRHL63ldWhITd7MQJGcb72ugDbyc - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/016D40D2-D019-42BF-BB6E-7F9DA20CED02", - "name": "016D40D2-D019-42BF-BB6E-7F9DA20CED02", "status": "Provisioning", - "startTime": "2025-09-03T08:02:50.6730000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '249' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:02:51 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/016D40D2-D019-42BF-BB6E-7F9DA20CED02?api-version=2022-07-01-preview&t=638924833714088972&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=Gjta5YKI1MJxZJR1ml_CjSslN9JpkTQQPtNFpkSl5bMJoR5oDWPzfh_4-JlgtUP80fu_D2FPfbMffWaM5a_nKlJsk8kM-ijNAMnRCaoghXOYkLJIkVWY9HMdjGEctSMoAkBGTpwzLJHzgLP7z69nqfex9SNDMqs9YT4HZcxly21YhfLRYROxyKrP6qmN6dgfgfVo7ParjG1XkSmjd5NmyH9iixa2i_9jVoF9u_5XDrNtuOZlbofLiXVUsHalZt0VpCJzBL6sHGw1RrDRAcnZMXWwfEqGpADMUKfUKUkclT3a6-gcFW3cudveS2kSvTg3CtnPgaiWsHXGdtuYiD4iCA&h=LDDeHCRWzGj7uyJvRHL63ldWhITd7MQJGcb72ugDbyc - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/016D40D2-D019-42BF-BB6E-7F9DA20CED02", - "name": "016D40D2-D019-42BF-BB6E-7F9DA20CED02", "status": "Provisioning", - "startTime": "2025-09-03T08:02:50.6730000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '249' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:02:52 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/016D40D2-D019-42BF-BB6E-7F9DA20CED02?api-version=2022-07-01-preview&t=638924833714088972&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=Gjta5YKI1MJxZJR1ml_CjSslN9JpkTQQPtNFpkSl5bMJoR5oDWPzfh_4-JlgtUP80fu_D2FPfbMffWaM5a_nKlJsk8kM-ijNAMnRCaoghXOYkLJIkVWY9HMdjGEctSMoAkBGTpwzLJHzgLP7z69nqfex9SNDMqs9YT4HZcxly21YhfLRYROxyKrP6qmN6dgfgfVo7ParjG1XkSmjd5NmyH9iixa2i_9jVoF9u_5XDrNtuOZlbofLiXVUsHalZt0VpCJzBL6sHGw1RrDRAcnZMXWwfEqGpADMUKfUKUkclT3a6-gcFW3cudveS2kSvTg3CtnPgaiWsHXGdtuYiD4iCA&h=LDDeHCRWzGj7uyJvRHL63ldWhITd7MQJGcb72ugDbyc - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/016D40D2-D019-42BF-BB6E-7F9DA20CED02", - "name": "016D40D2-D019-42BF-BB6E-7F9DA20CED02", "status": "Succeeded", "startTime": - "2025-09-03T08:02:50.6730000Z", "endTime": "2025-09-03T08:02:54.2900000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/92C82C0F-4B70-429D-A525-A2CA5544FC47", + "name": "92C82C0F-4B70-429D-A525-A2CA5544FC47", "status": "Succeeded", "startTime": + "2026-05-20T10:05:28.9830000Z", "endTime": "2026-05-20T10:05:31.7500000Z"}' headers: Cache-Control: - no-cache @@ -279,7 +135,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:02:53 GMT + - Wed, 20 May 2026 10:05:40 GMT Expires: - '-1' Pragma: @@ -309,15 +165,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": - "Active"}, {"id": "148dd15a-40c1-43b0-a714-f4fc7339bc47", "displayName": "fabcli000001", - "sku": "F2", "region": "West Europe", "state": "Active"}]}' + string: '{"value": [{"id": "2579c30d-9c81-455c-b885-06e403de3462", "displayName": + "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}, + {"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", + "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -326,15 +182,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '489' + - '460' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:02:59 GMT + - Wed, 20 May 2026 10:05:46 GMT Pragma: - no-cache RequestId: - - 587037eb-02c3-4bac-9788-8aceae65f82d + - 1d305e45-6a06-403b-87fa-5213150ccfdc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -342,7 +198,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -360,14 +216,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": - "Active"}, {"id": "148dd15a-40c1-43b0-a714-f4fc7339bc47", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "2579c30d-9c81-455c-b885-06e403de3462", "displayName": "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -377,15 +233,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '489' + - '462' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:03:02 GMT + - Wed, 20 May 2026 10:05:52 GMT Pragma: - no-cache RequestId: - - c6a2e5c6-58c7-498c-b2a3-498cf3251c23 + - 892c58ff-d64b-4664-a0a7-bc9e4a2d8a64 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -393,7 +249,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -411,7 +267,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -424,13 +280,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:03:03 GMT + - Wed, 20 May 2026 10:05:53 GMT Expires: - '-1' Pragma: @@ -460,7 +316,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -473,13 +329,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:03:03 GMT + - Wed, 20 May 2026 10:05:54 GMT Expires: - '-1' Pragma: @@ -511,7 +367,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001/suspend?api-version=2023-11-01 response: @@ -519,7 +375,7 @@ interactions: string: '' headers: Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/B6D58DAC-2A72-4BC5-AA95-768420F8F1C7?api-version=2022-07-01-preview&t=638924833852408415&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=DsfqCr3WOVRWe2Yo44d4J9v9Apwo1mMSxoodHkZacT88nNkaDLOg6N1HNEG7B2n7Q63T-nO-pC4op2UhnalLew1dtxwg1Yxp8v0a-d7tkwq-2uSwpsCvhBEnhZQurtkKbMzJx5OkMQG1d_N4OiuDqPtknH6zmRZPQtToTtLXXm38cCy9ag-1lmPb_O44Z5gi5tkNE0xFH8XGesqpnIDjsWp0NlCfQvL3shpGbeHehN57WX4AKbJemFl5VNpdPJPeowSbQQ8K4yrrw94bR8TmCw8CZ8G-TB8QrZO9BCBkBQJEVzbNmXkT-ExyA2TEPGiW_bse6M6a4Ss2VNwdfqvc6w&h=efTxFItDQzsCSIMvbgHQ_mvXfyf3KBP3TXj2rBypsrg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/D6DCFC37-0583-40BC-8105-C48ADA8FF210?api-version=2022-07-01-preview&t=639148683566224953&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=f0mdOZQGbttSSMYLaWv-muRSxG1a3FBjyxUwa7-_MTMMNdMBD7HTBOxN7E0RHNNyxMWOvFCXLsEDlRtetW5sv4HfruWSmqmUEdcBazqLNo2TDOjpJsl4oFjAIfkY-Ynbxs9-HNXJpDb8-gi6eYsm-8wHEpc_rLirapKFVCWGNXGtIoPaeJbbhwqn8Tp8C2ufsNpUxKeflRjkSvT5_ll50S8E3WtFNq7htxOOuM_uAx2wvcA8OVWMb0KPuu_3CPc2njH8-1zYRxg-1rz6nl0n7w4T1Q8ex_3qYHRKdPyDZSnWg0e3nKh8COycak7VxZqRhRIxilCCQSnBjXsbKf5QdA&h=rt19KzS0eUJdVeGM9N0wvY8zqIu0-HBvARi-YrEJObM Cache-Control: - no-cache Content-Length: @@ -527,11 +383,11 @@ interactions: Content-Security-Policy: - script-src 'self' Date: - - Wed, 03 Sep 2025 08:03:04 GMT + - Wed, 20 May 2026 10:05:56 GMT Expires: - '-1' Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/B6D58DAC-2A72-4BC5-AA95-768420F8F1C7?api-version=2022-07-01-preview&t=638924833852408415&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=NqghnUEK19vorscJhEIH6cqnqgZ-UEon-5hlw_9kRD6XUIJF7N21TxlJ7pVX5FvxF0UtOC9XUuKGlRJyi19Z_db8xnFLLQ-HQB1zIBZtI40Kp_iNVQcOR9G-L5UizetwAQtiw-EZM8ouijl6_BByx6f4qGEVl2q_sZAIgeeRaR_bApgoFLlftpbvum45Ka_8RdK8WxLkFH3Gg1ZVv7FEUF0k_1tHoy6SLh_4hg8eLr4SDnvL5iB_rd5XMlAURRBz6Tpo62LOL330zwnmUFtFmUW7v5KbMt5sVhUhaCh6yaGZqRK01FN2KApl4K4GwW7JMRX5RIZtVVetIzmb2SENbA&h=zWHcLsVBYLS1lTnXsFgBYBmbH-mcYwez-SpU7jz0978 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/D6DCFC37-0583-40BC-8105-C48ADA8FF210?api-version=2022-07-01-preview&t=639148683566224953&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=rhQfkDCTGvpKiYynLRZQ-EKdwoAL_ahnMYil83yj3fNeXoFz-vL2SQtrBu0matBG6nmXhUWE12W1iP99z8fi3iSpEsC2-DZ5uLg4kdTlIFXQFKwZ30zkINCPAXmK9HrMmrqusK-MOZaUPOa_Na9pgFA7m5EcKQdeAM9Pv_FZn434QXA3SRPwiIfCcMiu20tyS5NxwfS5dMicdEAMxFIKxJD1B4RoI91UbpPPl70gllCYjXSKInTNfrIKlKlHw9dBUbnKlA09W2u2B3ubMY6CbseKVb33F__CwqB0vn7MK6AohpU9kTH0xLzu9iE76g9yq9t0giEo1sYqwMLgJskBbw&h=CKagN9P4SXdd97OLFucQUHPKCBvY3T99bGoULNK3CXc Pragma: - no-cache Strict-Transport-Security: @@ -559,14 +415,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/B6D58DAC-2A72-4BC5-AA95-768420F8F1C7?api-version=2022-07-01-preview&t=638924833852408415&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=DsfqCr3WOVRWe2Yo44d4J9v9Apwo1mMSxoodHkZacT88nNkaDLOg6N1HNEG7B2n7Q63T-nO-pC4op2UhnalLew1dtxwg1Yxp8v0a-d7tkwq-2uSwpsCvhBEnhZQurtkKbMzJx5OkMQG1d_N4OiuDqPtknH6zmRZPQtToTtLXXm38cCy9ag-1lmPb_O44Z5gi5tkNE0xFH8XGesqpnIDjsWp0NlCfQvL3shpGbeHehN57WX4AKbJemFl5VNpdPJPeowSbQQ8K4yrrw94bR8TmCw8CZ8G-TB8QrZO9BCBkBQJEVzbNmXkT-ExyA2TEPGiW_bse6M6a4Ss2VNwdfqvc6w&h=efTxFItDQzsCSIMvbgHQ_mvXfyf3KBP3TXj2rBypsrg + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/D6DCFC37-0583-40BC-8105-C48ADA8FF210?api-version=2022-07-01-preview&t=639148683566224953&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=f0mdOZQGbttSSMYLaWv-muRSxG1a3FBjyxUwa7-_MTMMNdMBD7HTBOxN7E0RHNNyxMWOvFCXLsEDlRtetW5sv4HfruWSmqmUEdcBazqLNo2TDOjpJsl4oFjAIfkY-Ynbxs9-HNXJpDb8-gi6eYsm-8wHEpc_rLirapKFVCWGNXGtIoPaeJbbhwqn8Tp8C2ufsNpUxKeflRjkSvT5_ll50S8E3WtFNq7htxOOuM_uAx2wvcA8OVWMb0KPuu_3CPc2njH8-1zYRxg-1rz6nl0n7w4T1Q8ex_3qYHRKdPyDZSnWg0e3nKh8COycak7VxZqRhRIxilCCQSnBjXsbKf5QdA&h=rt19KzS0eUJdVeGM9N0wvY8zqIu0-HBvARi-YrEJObM response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/B6D58DAC-2A72-4BC5-AA95-768420F8F1C7", - "name": "B6D58DAC-2A72-4BC5-AA95-768420F8F1C7", "status": "Pausing", "startTime": - "2025-09-03T08:03:04.6600000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/D6DCFC37-0583-40BC-8105-C48ADA8FF210", + "name": "D6DCFC37-0583-40BC-8105-C48ADA8FF210", "status": "Pausing", "startTime": + "2026-05-20T10:05:56.0030000Z"}' headers: Cache-Control: - no-cache @@ -577,7 +433,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:03:04 GMT + - Wed, 20 May 2026 10:06:07 GMT Expires: - '-1' Pragma: @@ -607,14 +463,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/B6D58DAC-2A72-4BC5-AA95-768420F8F1C7?api-version=2022-07-01-preview&t=638924833852408415&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=DsfqCr3WOVRWe2Yo44d4J9v9Apwo1mMSxoodHkZacT88nNkaDLOg6N1HNEG7B2n7Q63T-nO-pC4op2UhnalLew1dtxwg1Yxp8v0a-d7tkwq-2uSwpsCvhBEnhZQurtkKbMzJx5OkMQG1d_N4OiuDqPtknH6zmRZPQtToTtLXXm38cCy9ag-1lmPb_O44Z5gi5tkNE0xFH8XGesqpnIDjsWp0NlCfQvL3shpGbeHehN57WX4AKbJemFl5VNpdPJPeowSbQQ8K4yrrw94bR8TmCw8CZ8G-TB8QrZO9BCBkBQJEVzbNmXkT-ExyA2TEPGiW_bse6M6a4Ss2VNwdfqvc6w&h=efTxFItDQzsCSIMvbgHQ_mvXfyf3KBP3TXj2rBypsrg + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/D6DCFC37-0583-40BC-8105-C48ADA8FF210?api-version=2022-07-01-preview&t=639148683566224953&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=f0mdOZQGbttSSMYLaWv-muRSxG1a3FBjyxUwa7-_MTMMNdMBD7HTBOxN7E0RHNNyxMWOvFCXLsEDlRtetW5sv4HfruWSmqmUEdcBazqLNo2TDOjpJsl4oFjAIfkY-Ynbxs9-HNXJpDb8-gi6eYsm-8wHEpc_rLirapKFVCWGNXGtIoPaeJbbhwqn8Tp8C2ufsNpUxKeflRjkSvT5_ll50S8E3WtFNq7htxOOuM_uAx2wvcA8OVWMb0KPuu_3CPc2njH8-1zYRxg-1rz6nl0n7w4T1Q8ex_3qYHRKdPyDZSnWg0e3nKh8COycak7VxZqRhRIxilCCQSnBjXsbKf5QdA&h=rt19KzS0eUJdVeGM9N0wvY8zqIu0-HBvARi-YrEJObM response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/B6D58DAC-2A72-4BC5-AA95-768420F8F1C7", - "name": "B6D58DAC-2A72-4BC5-AA95-768420F8F1C7", "status": "Pausing", "startTime": - "2025-09-03T08:03:04.6600000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/D6DCFC37-0583-40BC-8105-C48ADA8FF210", + "name": "D6DCFC37-0583-40BC-8105-C48ADA8FF210", "status": "Pausing", "startTime": + "2026-05-20T10:05:56.0030000Z"}' headers: Cache-Control: - no-cache @@ -625,7 +481,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:03:05 GMT + - Wed, 20 May 2026 10:06:17 GMT Expires: - '-1' Pragma: @@ -655,158 +511,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/B6D58DAC-2A72-4BC5-AA95-768420F8F1C7?api-version=2022-07-01-preview&t=638924833852408415&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=DsfqCr3WOVRWe2Yo44d4J9v9Apwo1mMSxoodHkZacT88nNkaDLOg6N1HNEG7B2n7Q63T-nO-pC4op2UhnalLew1dtxwg1Yxp8v0a-d7tkwq-2uSwpsCvhBEnhZQurtkKbMzJx5OkMQG1d_N4OiuDqPtknH6zmRZPQtToTtLXXm38cCy9ag-1lmPb_O44Z5gi5tkNE0xFH8XGesqpnIDjsWp0NlCfQvL3shpGbeHehN57WX4AKbJemFl5VNpdPJPeowSbQQ8K4yrrw94bR8TmCw8CZ8G-TB8QrZO9BCBkBQJEVzbNmXkT-ExyA2TEPGiW_bse6M6a4Ss2VNwdfqvc6w&h=efTxFItDQzsCSIMvbgHQ_mvXfyf3KBP3TXj2rBypsrg + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/D6DCFC37-0583-40BC-8105-C48ADA8FF210?api-version=2022-07-01-preview&t=639148683566224953&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=f0mdOZQGbttSSMYLaWv-muRSxG1a3FBjyxUwa7-_MTMMNdMBD7HTBOxN7E0RHNNyxMWOvFCXLsEDlRtetW5sv4HfruWSmqmUEdcBazqLNo2TDOjpJsl4oFjAIfkY-Ynbxs9-HNXJpDb8-gi6eYsm-8wHEpc_rLirapKFVCWGNXGtIoPaeJbbhwqn8Tp8C2ufsNpUxKeflRjkSvT5_ll50S8E3WtFNq7htxOOuM_uAx2wvcA8OVWMb0KPuu_3CPc2njH8-1zYRxg-1rz6nl0n7w4T1Q8ex_3qYHRKdPyDZSnWg0e3nKh8COycak7VxZqRhRIxilCCQSnBjXsbKf5QdA&h=rt19KzS0eUJdVeGM9N0wvY8zqIu0-HBvARi-YrEJObM response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/B6D58DAC-2A72-4BC5-AA95-768420F8F1C7", - "name": "B6D58DAC-2A72-4BC5-AA95-768420F8F1C7", "status": "Pausing", "startTime": - "2025-09-03T08:03:04.6600000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '244' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:03:05 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/B6D58DAC-2A72-4BC5-AA95-768420F8F1C7?api-version=2022-07-01-preview&t=638924833852408415&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=DsfqCr3WOVRWe2Yo44d4J9v9Apwo1mMSxoodHkZacT88nNkaDLOg6N1HNEG7B2n7Q63T-nO-pC4op2UhnalLew1dtxwg1Yxp8v0a-d7tkwq-2uSwpsCvhBEnhZQurtkKbMzJx5OkMQG1d_N4OiuDqPtknH6zmRZPQtToTtLXXm38cCy9ag-1lmPb_O44Z5gi5tkNE0xFH8XGesqpnIDjsWp0NlCfQvL3shpGbeHehN57WX4AKbJemFl5VNpdPJPeowSbQQ8K4yrrw94bR8TmCw8CZ8G-TB8QrZO9BCBkBQJEVzbNmXkT-ExyA2TEPGiW_bse6M6a4Ss2VNwdfqvc6w&h=efTxFItDQzsCSIMvbgHQ_mvXfyf3KBP3TXj2rBypsrg - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/B6D58DAC-2A72-4BC5-AA95-768420F8F1C7", - "name": "B6D58DAC-2A72-4BC5-AA95-768420F8F1C7", "status": "Pausing", "startTime": - "2025-09-03T08:03:04.6600000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '244' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:03:07 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/B6D58DAC-2A72-4BC5-AA95-768420F8F1C7?api-version=2022-07-01-preview&t=638924833852408415&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=DsfqCr3WOVRWe2Yo44d4J9v9Apwo1mMSxoodHkZacT88nNkaDLOg6N1HNEG7B2n7Q63T-nO-pC4op2UhnalLew1dtxwg1Yxp8v0a-d7tkwq-2uSwpsCvhBEnhZQurtkKbMzJx5OkMQG1d_N4OiuDqPtknH6zmRZPQtToTtLXXm38cCy9ag-1lmPb_O44Z5gi5tkNE0xFH8XGesqpnIDjsWp0NlCfQvL3shpGbeHehN57WX4AKbJemFl5VNpdPJPeowSbQQ8K4yrrw94bR8TmCw8CZ8G-TB8QrZO9BCBkBQJEVzbNmXkT-ExyA2TEPGiW_bse6M6a4Ss2VNwdfqvc6w&h=efTxFItDQzsCSIMvbgHQ_mvXfyf3KBP3TXj2rBypsrg - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/B6D58DAC-2A72-4BC5-AA95-768420F8F1C7", - "name": "B6D58DAC-2A72-4BC5-AA95-768420F8F1C7", "status": "Pausing", "startTime": - "2025-09-03T08:03:04.6600000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '244' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:03:12 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/B6D58DAC-2A72-4BC5-AA95-768420F8F1C7?api-version=2022-07-01-preview&t=638924833852408415&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=DsfqCr3WOVRWe2Yo44d4J9v9Apwo1mMSxoodHkZacT88nNkaDLOg6N1HNEG7B2n7Q63T-nO-pC4op2UhnalLew1dtxwg1Yxp8v0a-d7tkwq-2uSwpsCvhBEnhZQurtkKbMzJx5OkMQG1d_N4OiuDqPtknH6zmRZPQtToTtLXXm38cCy9ag-1lmPb_O44Z5gi5tkNE0xFH8XGesqpnIDjsWp0NlCfQvL3shpGbeHehN57WX4AKbJemFl5VNpdPJPeowSbQQ8K4yrrw94bR8TmCw8CZ8G-TB8QrZO9BCBkBQJEVzbNmXkT-ExyA2TEPGiW_bse6M6a4Ss2VNwdfqvc6w&h=efTxFItDQzsCSIMvbgHQ_mvXfyf3KBP3TXj2rBypsrg - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/B6D58DAC-2A72-4BC5-AA95-768420F8F1C7", - "name": "B6D58DAC-2A72-4BC5-AA95-768420F8F1C7", "status": "Succeeded", "startTime": - "2025-09-03T08:03:04.6600000Z", "endTime": "2025-09-03T08:03:14.8870000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/D6DCFC37-0583-40BC-8105-C48ADA8FF210", + "name": "D6DCFC37-0583-40BC-8105-C48ADA8FF210", "status": "Succeeded", "startTime": + "2026-05-20T10:05:56.0030000Z", "endTime": "2026-05-20T10:06:23.1630000Z"}' headers: Cache-Control: - no-cache @@ -817,7 +529,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:03:20 GMT + - Wed, 20 May 2026 10:06:28 GMT Expires: - '-1' Pragma: @@ -847,15 +559,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: body: - string: '{"value": [{"id": "148dd15a-40c1-43b0-a714-f4fc7339bc47", "displayName": - "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Inactive"}, - {"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", - "sku": "F16", "region": "West Europe", "state": "Active"}]}' + string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "2579c30d-9c81-455c-b885-06e403de3462", "displayName": "fabcli000001", + "sku": "F2", "region": "West Europe", "state": "Inactive"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -864,15 +576,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '489' + - '469' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:03:23 GMT + - Wed, 20 May 2026 10:06:32 GMT Pragma: - no-cache RequestId: - - 64e57e0e-dd46-4592-9202-a4583c4c57c8 + - 8b52bf4d-409e-4dbf-8aef-f766de7ae35e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -880,7 +592,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -898,15 +610,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: body: - string: '{"value": [{"id": "148dd15a-40c1-43b0-a714-f4fc7339bc47", "displayName": + string: '{"value": [{"id": "2579c30d-9c81-455c-b885-06e403de3462", "displayName": "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Inactive"}, {"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", - "sku": "F16", "region": "West Europe", "state": "Active"}]}' + "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -915,15 +627,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '489' + - '464' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:03:30 GMT + - Wed, 20 May 2026 10:06:35 GMT Pragma: - no-cache RequestId: - - 7ddbad8a-5733-4d47-a592-c83f83274379 + - 6a26b39f-e7b1-4724-8ccf-823a098a2750 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -931,7 +643,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -949,7 +661,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -962,13 +674,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:03:31 GMT + - Wed, 20 May 2026 10:06:37 GMT Expires: - '-1' Pragma: @@ -998,7 +710,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -1011,13 +723,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:03:31 GMT + - Wed, 20 May 2026 10:06:37 GMT Expires: - '-1' Pragma: @@ -1047,15 +759,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: body: - string: '{"value": [{"id": "148dd15a-40c1-43b0-a714-f4fc7339bc47", "displayName": - "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Inactive"}, - {"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", - "sku": "F16", "region": "West Europe", "state": "Active"}]}' + string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "2579c30d-9c81-455c-b885-06e403de3462", "displayName": "fabcli000001", + "sku": "F2", "region": "West Europe", "state": "Inactive"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1064,15 +776,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '489' + - '469' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:03:35 GMT + - Wed, 20 May 2026 10:06:42 GMT Pragma: - no-cache RequestId: - - 7f34ac60-77db-45bf-860b-70e0c1c271d7 + - d4d1c356-69f2-4452-ad91-bc4d248c8d55 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1080,7 +792,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -1098,22 +810,22 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions?api-version=2022-12-01 + uri: https://management.azure.com/subscriptions/placeholder/resourceGroups/placeholder/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: body: - string: '{"value": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000"}], - "count": {"type": "Total", "value": 1}}' + string: '{"error": {"code": "InvalidSubscriptionId", "message": "The provided + subscription identifier ''placeholder'' is malformed or invalid."}}' headers: Cache-Control: - no-cache Content-Length: - - '479' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:03:36 GMT + - Wed, 20 May 2026 10:06:43 GMT Expires: - '-1' Pragma: @@ -1125,8 +837,8 @@ interactions: X-Content-Type-Options: - nosniff status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: body: null headers: @@ -1139,31 +851,22 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/capacities?api-version=2023-11-01 + uri: https://management.azure.com/subscriptions?api-version=2022-12-01 response: body: - string: '{"value": [{"properties": {"provisioningState": "Succeeded", "state": - "Active", "administration": {"members": ["mocked@admin_test_user"]}}, "id": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/mocked_fabriccli_capacity_name", - "name": "mocked_fabriccli_capacity_name", "type": "Microsoft.Fabric/capacities", - "location": "West Europe", "sku": {"name": "F16", "tier": "Fabric"}, "tags": - {}}, {"properties": {"provisioningState": "Succeeded", "state": "Paused", - "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", - "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": - "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}]}' + string: '{"value": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000"}], + "count": {"type": "Total", "value": 1}}' headers: Cache-Control: - no-cache Content-Length: - - '2480' - Content-Security-Policy: - - script-src 'self' + - '469' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:03:35 GMT + - Wed, 20 May 2026 10:06:43 GMT Expires: - '-1' Pragma: @@ -1174,10 +877,6 @@ interactions: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block status: code: 200 message: OK @@ -1190,78 +889,32 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '0' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 - response: - body: - string: '' - headers: - Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/5097E558-B151-4515-BBB2-AD3C25ADF27A?api-version=2022-07-01-preview&t=638924834179862301&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=E31aOdXHiHeCcp-FfakreWaYsBqJ9WoheZYbc_f4s_hY5WKjB8XPGMaq6GJrfoQhRb-XJtiZ-3g5JISUpfEQRd9epCbXxl4uo88RusCkmwf8B0bxMmqkMgjV9O_wEahNC2ajP92INjVtRH6ZnxI_IQhZL4Y5EoLr2SuPrvu28jXBASZH76gmF_v9Ojxq3xQkKavpOUgbVWrbuZ0uk66OBZXPzMRjRememsvvmpFRNalx3IaT0_IucFDN7Z-lZ1uVw1AOLF0177vPnPfvOMTH_AEheKNKkdWV2IdLALNUvyklcjhR_X9bvq8Kg4jcjTI8P9hWRQs2IiNs_MQcmjLzkg&h=Cnkk3gSwViMLaKlJrJdjN0G1jYw0UW-Qd6BpSMygmMk - Cache-Control: - - no-cache - Content-Length: - - '0' - Content-Security-Policy: - - script-src 'self' - Date: - - Wed, 03 Sep 2025 08:03:37 GMT - Expires: - - '-1' - Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/5097E558-B151-4515-BBB2-AD3C25ADF27A?api-version=2022-07-01-preview&t=638924834180018512&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=Uewajf9E2Xw89MZTZVztOXZHUYVkh_YFE8D7W8rlP_OOauuw2tKrkOoYqymsftTot2wd0rX5A_YgtYAKVyLTwUz88aVrBK2X01gyBo1QmNdd7eKZlITDitnWLhf2E3Fy_tI93WWcudv3nd-VBgrTAK3YRMfkfFN2tNJ3RnlcW_zOW_h8KP8OnOkTrD3UkjHlO4S98BS2IrFPw7hcJob_F-Ft167_dDkHTEAyiT5FAo9yp0WS8OzXyviJm0EMXLhLF1HNHDFLzB7MOlkQNZ5VXd52_YrTXKvgEbS7_d42E8bE1seFLnFselh-Xk8T_uf2-CwcbQviEmQkLXFCpvBs0A&h=tyNy5GvxF6Nu5KOJwsVJiRTYAJsGud0XBZLfI6k870E - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - 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.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/5097E558-B151-4515-BBB2-AD3C25ADF27A?api-version=2022-07-01-preview&t=638924834179862301&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=E31aOdXHiHeCcp-FfakreWaYsBqJ9WoheZYbc_f4s_hY5WKjB8XPGMaq6GJrfoQhRb-XJtiZ-3g5JISUpfEQRd9epCbXxl4uo88RusCkmwf8B0bxMmqkMgjV9O_wEahNC2ajP92INjVtRH6ZnxI_IQhZL4Y5EoLr2SuPrvu28jXBASZH76gmF_v9Ojxq3xQkKavpOUgbVWrbuZ0uk66OBZXPzMRjRememsvvmpFRNalx3IaT0_IucFDN7Z-lZ1uVw1AOLF0177vPnPfvOMTH_AEheKNKkdWV2IdLALNUvyklcjhR_X9bvq8Kg4jcjTI8P9hWRQs2IiNs_MQcmjLzkg&h=Cnkk3gSwViMLaKlJrJdjN0G1jYw0UW-Qd6BpSMygmMk + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/capacities?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/5097E558-B151-4515-BBB2-AD3C25ADF27A", - "name": "5097E558-B151-4515-BBB2-AD3C25ADF27A", "status": "Deleting", "startTime": - "2025-09-03T08:03:37.4100000Z"}' + string: '{"value": [{"properties": {"provisioningState": "Succeeded", "state": + "Active", "administration": {"members": ["mocked@admin_test_user", "4fdd0762-85fe-4f8b-90dc-776e8605e0b9"]}}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/mocked_fabriccli_capacity_name", + "name": "mocked_fabriccli_capacity_name", "type": "Microsoft.Fabric/capacities", + "location": "Central US", "sku": {"name": "F16", "tier": "Fabric"}, "tags": + {}}, {"properties": {"provisioningState": "Succeeded", "state": "Paused", + "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", + "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": + "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}]}' headers: Cache-Control: - no-cache Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' + - '2562' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:03:37 GMT + - Wed, 20 May 2026 10:06:45 GMT Expires: - '-1' Pragma: @@ -1272,10 +925,6 @@ interactions: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block status: code: 200 message: OK @@ -1288,78 +937,32 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/5097E558-B151-4515-BBB2-AD3C25ADF27A?api-version=2022-07-01-preview&t=638924834179862301&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=E31aOdXHiHeCcp-FfakreWaYsBqJ9WoheZYbc_f4s_hY5WKjB8XPGMaq6GJrfoQhRb-XJtiZ-3g5JISUpfEQRd9epCbXxl4uo88RusCkmwf8B0bxMmqkMgjV9O_wEahNC2ajP92INjVtRH6ZnxI_IQhZL4Y5EoLr2SuPrvu28jXBASZH76gmF_v9Ojxq3xQkKavpOUgbVWrbuZ0uk66OBZXPzMRjRememsvvmpFRNalx3IaT0_IucFDN7Z-lZ1uVw1AOLF0177vPnPfvOMTH_AEheKNKkdWV2IdLALNUvyklcjhR_X9bvq8Kg4jcjTI8P9hWRQs2IiNs_MQcmjLzkg&h=Cnkk3gSwViMLaKlJrJdjN0G1jYw0UW-Qd6BpSMygmMk - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/5097E558-B151-4515-BBB2-AD3C25ADF27A", - "name": "5097E558-B151-4515-BBB2-AD3C25ADF27A", "status": "Deleting", "startTime": - "2025-09-03T08:03:37.4100000Z"}' - headers: - Cache-Control: - - no-cache Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 08:03:38 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive + - '0' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/5097E558-B151-4515-BBB2-AD3C25ADF27A?api-version=2022-07-01-preview&t=638924834179862301&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=E31aOdXHiHeCcp-FfakreWaYsBqJ9WoheZYbc_f4s_hY5WKjB8XPGMaq6GJrfoQhRb-XJtiZ-3g5JISUpfEQRd9epCbXxl4uo88RusCkmwf8B0bxMmqkMgjV9O_wEahNC2ajP92INjVtRH6ZnxI_IQhZL4Y5EoLr2SuPrvu28jXBASZH76gmF_v9Ojxq3xQkKavpOUgbVWrbuZ0uk66OBZXPzMRjRememsvvmpFRNalx3IaT0_IucFDN7Z-lZ1uVw1AOLF0177vPnPfvOMTH_AEheKNKkdWV2IdLALNUvyklcjhR_X9bvq8Kg4jcjTI8P9hWRQs2IiNs_MQcmjLzkg&h=Cnkk3gSwViMLaKlJrJdjN0G1jYw0UW-Qd6BpSMygmMk + - ms-fabric-cli-test/1.6.1 + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/5097E558-B151-4515-BBB2-AD3C25ADF27A", - "name": "5097E558-B151-4515-BBB2-AD3C25ADF27A", "status": "Deleting", "startTime": - "2025-09-03T08:03:37.4100000Z"}' + string: '' headers: + Azure-AsyncOperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/97709DD1-2E4C-49BA-B717-457E5207CE2D?api-version=2022-07-01-preview&t=639148684075437776&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=um5zv2zCFGnxsXuxiv4rjpgW_xG-nlksEoconB1gJVrbqBGRz5jfc6x5VaFPNKfJUH98ubLOy0NlV8GnFewMEdroIaj4l65JcIfthRFGrQZZrgXug06-8c1JSdQSjIpmNeRGSffx4FbaMdEhdUibZ7pdXJSG5M_9QZDVGqgb7VoBrJgX8FJj-9L0n_zUWj4ayz0gSaa4yLENSpUuz8RnjTU-UJfzJtTAyOxY1bB5ij_bcxuukbyKAZI0QhtAx3n5iDDVqkTtL77XraMtEm5pCAh6Q13mVNULTs8fyLWennigurqUst3tgQroAKB_nUfFxJ_L_u6g8TB5EEr0NZ-5pQ&h=LnGWXtiADBrZ6N0XPrSaxpwZsmd31S7F0RV6De2xh2o Cache-Control: - no-cache Content-Length: - - '245' + - '0' Content-Security-Policy: - script-src 'self' - Content-Type: - - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:03:39 GMT + - Wed, 20 May 2026 10:06:47 GMT Expires: - '-1' + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/97709DD1-2E4C-49BA-B717-457E5207CE2D?api-version=2022-07-01-preview&t=639148684075437776&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=vrAR_0i6dqM5RmQzhKUjADfBLXBBIk8hQ3WftGbvXS0QrpC5N1tYKr3HKifO08XGQYBWRzo_nxq2JttU5zbz9Lp8LIZyZ-mglDcGVBcqYlcz21dS5HNTxBcNTVO64AJ0l5UaiDj-DpKyNIy7m-r4wH8DSChahwxueJakpaf5LRI-4NowYizKhanHw09CGe8jVw-TLQBjPdT8YcsH63GotofhVLfPmeQzFcu_z2zv_Y2VoP9MRbcE5GRDA_yU4iX0fsiJm_F64Km57oLd6xQ2PTWOaCZzPTNmFNPYreGtr2wZVEOTrcAn1ppJgxw7WgwM1GCwPLFAr9PMEJadc3rqgw&h=gD1EjEJWxNT1XcdEyDyYIu8BzuHZpAox-w0FL0YF0Pc Pragma: - no-cache Strict-Transport-Security: @@ -1373,8 +976,8 @@ interactions: X-XSS-Protection: - 1; mode=block status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -1387,14 +990,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/5097E558-B151-4515-BBB2-AD3C25ADF27A?api-version=2022-07-01-preview&t=638924834179862301&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=E31aOdXHiHeCcp-FfakreWaYsBqJ9WoheZYbc_f4s_hY5WKjB8XPGMaq6GJrfoQhRb-XJtiZ-3g5JISUpfEQRd9epCbXxl4uo88RusCkmwf8B0bxMmqkMgjV9O_wEahNC2ajP92INjVtRH6ZnxI_IQhZL4Y5EoLr2SuPrvu28jXBASZH76gmF_v9Ojxq3xQkKavpOUgbVWrbuZ0uk66OBZXPzMRjRememsvvmpFRNalx3IaT0_IucFDN7Z-lZ1uVw1AOLF0177vPnPfvOMTH_AEheKNKkdWV2IdLALNUvyklcjhR_X9bvq8Kg4jcjTI8P9hWRQs2IiNs_MQcmjLzkg&h=Cnkk3gSwViMLaKlJrJdjN0G1jYw0UW-Qd6BpSMygmMk + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/97709DD1-2E4C-49BA-B717-457E5207CE2D?api-version=2022-07-01-preview&t=639148684075437776&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=um5zv2zCFGnxsXuxiv4rjpgW_xG-nlksEoconB1gJVrbqBGRz5jfc6x5VaFPNKfJUH98ubLOy0NlV8GnFewMEdroIaj4l65JcIfthRFGrQZZrgXug06-8c1JSdQSjIpmNeRGSffx4FbaMdEhdUibZ7pdXJSG5M_9QZDVGqgb7VoBrJgX8FJj-9L0n_zUWj4ayz0gSaa4yLENSpUuz8RnjTU-UJfzJtTAyOxY1bB5ij_bcxuukbyKAZI0QhtAx3n5iDDVqkTtL77XraMtEm5pCAh6Q13mVNULTs8fyLWennigurqUst3tgQroAKB_nUfFxJ_L_u6g8TB5EEr0NZ-5pQ&h=LnGWXtiADBrZ6N0XPrSaxpwZsmd31S7F0RV6De2xh2o response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/5097E558-B151-4515-BBB2-AD3C25ADF27A", - "name": "5097E558-B151-4515-BBB2-AD3C25ADF27A", "status": "Deleting", "startTime": - "2025-09-03T08:03:37.4100000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/97709DD1-2E4C-49BA-B717-457E5207CE2D", + "name": "97709DD1-2E4C-49BA-B717-457E5207CE2D", "status": "Deleting", "startTime": + "2026-05-20T10:06:46.9270000Z"}' headers: Cache-Control: - no-cache @@ -1405,7 +1008,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:03:41 GMT + - Wed, 20 May 2026 10:06:58 GMT Expires: - '-1' Pragma: @@ -1435,14 +1038,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/5097E558-B151-4515-BBB2-AD3C25ADF27A?api-version=2022-07-01-preview&t=638924834179862301&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=E31aOdXHiHeCcp-FfakreWaYsBqJ9WoheZYbc_f4s_hY5WKjB8XPGMaq6GJrfoQhRb-XJtiZ-3g5JISUpfEQRd9epCbXxl4uo88RusCkmwf8B0bxMmqkMgjV9O_wEahNC2ajP92INjVtRH6ZnxI_IQhZL4Y5EoLr2SuPrvu28jXBASZH76gmF_v9Ojxq3xQkKavpOUgbVWrbuZ0uk66OBZXPzMRjRememsvvmpFRNalx3IaT0_IucFDN7Z-lZ1uVw1AOLF0177vPnPfvOMTH_AEheKNKkdWV2IdLALNUvyklcjhR_X9bvq8Kg4jcjTI8P9hWRQs2IiNs_MQcmjLzkg&h=Cnkk3gSwViMLaKlJrJdjN0G1jYw0UW-Qd6BpSMygmMk + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/97709DD1-2E4C-49BA-B717-457E5207CE2D?api-version=2022-07-01-preview&t=639148684075437776&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=um5zv2zCFGnxsXuxiv4rjpgW_xG-nlksEoconB1gJVrbqBGRz5jfc6x5VaFPNKfJUH98ubLOy0NlV8GnFewMEdroIaj4l65JcIfthRFGrQZZrgXug06-8c1JSdQSjIpmNeRGSffx4FbaMdEhdUibZ7pdXJSG5M_9QZDVGqgb7VoBrJgX8FJj-9L0n_zUWj4ayz0gSaa4yLENSpUuz8RnjTU-UJfzJtTAyOxY1bB5ij_bcxuukbyKAZI0QhtAx3n5iDDVqkTtL77XraMtEm5pCAh6Q13mVNULTs8fyLWennigurqUst3tgQroAKB_nUfFxJ_L_u6g8TB5EEr0NZ-5pQ&h=LnGWXtiADBrZ6N0XPrSaxpwZsmd31S7F0RV6De2xh2o response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/5097E558-B151-4515-BBB2-AD3C25ADF27A", - "name": "5097E558-B151-4515-BBB2-AD3C25ADF27A", "status": "Deleting", "startTime": - "2025-09-03T08:03:37.4100000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/97709DD1-2E4C-49BA-B717-457E5207CE2D", + "name": "97709DD1-2E4C-49BA-B717-457E5207CE2D", "status": "Deleting", "startTime": + "2026-05-20T10:06:46.9270000Z"}' headers: Cache-Control: - no-cache @@ -1453,7 +1056,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:03:45 GMT + - Wed, 20 May 2026 10:07:08 GMT Expires: - '-1' Pragma: @@ -1483,14 +1086,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/5097E558-B151-4515-BBB2-AD3C25ADF27A?api-version=2022-07-01-preview&t=638924834179862301&c=MIIHhzCCBm-gAwIBAgITfAh_Ec4cGA5eC_tcQwAACH8RzjANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUwNzE3MDk0MzUwWhcNMjYwMTEzMDk0MzUwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMju_Y4SY8v0smlm6TQWM1eo5FPVZ6ky6cACXBgjutbzedfdE18urYFSrxCdjLt3Rwzra0zh4q5U10-aWuNd7RvJ7VyQc7-p4kO4gTeiAige5uj4-WgOif9qPbdQraxv886ZzJ3_7_ooervNTPQLfSduoEfzIS63Tbpusqw18Mg-pvHiYuQIPIOxGay6_fQLtbFpu1Bv2dF1_DJ_TYEOFjtG_Mxf7V0b8YNRTXGaPlRu9H2wtL1l5iokb3sMXCz4lKdXeFAsVQDlkdCRc8L9gVj5w9ENu0fRwlX1JyxUNy6V-NN5GQ9SoDqUg3jC8G3P3YPgwUqtcX7gWkCxh-SUWy0CAwEAAaOCBHQwggRwMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBS8KaC9ondDhTSYy1HxHwBee1EmRjAOBgNVHQ8BAf8EBAMCBaAwggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAJG-k_n1D-zqc00gE5LOEHGN4Qytqqa7uKVwXNOSr1HakWawLoFvjbFJQw2VKeF4ePaCKclTQFpOrEEGJpEYmbRUGozEfeUkUdiF2Wc1lqeQwjsUY0a5ReFspBoA1pNesvE-kn-dffJWBYN6nPAjVma4I2ukydHyTVbplCIL5GZPzBwwUOixvMocpNbsqi-TN_3UE4AoW6UC-AMIq90gXmhYylwLXL3I_Gz6AbsHRAPVgqzfmTwI6BEL9YsFrg-sCxYm-jPx4xiDZerUCQItcEwsdGga3RvEvJsmdfiuznAAxeKU1mVlHBwObw9BrRTnAZxw_wyvQIFsqRkPjHCbB7Y&s=E31aOdXHiHeCcp-FfakreWaYsBqJ9WoheZYbc_f4s_hY5WKjB8XPGMaq6GJrfoQhRb-XJtiZ-3g5JISUpfEQRd9epCbXxl4uo88RusCkmwf8B0bxMmqkMgjV9O_wEahNC2ajP92INjVtRH6ZnxI_IQhZL4Y5EoLr2SuPrvu28jXBASZH76gmF_v9Ojxq3xQkKavpOUgbVWrbuZ0uk66OBZXPzMRjRememsvvmpFRNalx3IaT0_IucFDN7Z-lZ1uVw1AOLF0177vPnPfvOMTH_AEheKNKkdWV2IdLALNUvyklcjhR_X9bvq8Kg4jcjTI8P9hWRQs2IiNs_MQcmjLzkg&h=Cnkk3gSwViMLaKlJrJdjN0G1jYw0UW-Qd6BpSMygmMk + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/97709DD1-2E4C-49BA-B717-457E5207CE2D?api-version=2022-07-01-preview&t=639148684075437776&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=um5zv2zCFGnxsXuxiv4rjpgW_xG-nlksEoconB1gJVrbqBGRz5jfc6x5VaFPNKfJUH98ubLOy0NlV8GnFewMEdroIaj4l65JcIfthRFGrQZZrgXug06-8c1JSdQSjIpmNeRGSffx4FbaMdEhdUibZ7pdXJSG5M_9QZDVGqgb7VoBrJgX8FJj-9L0n_zUWj4ayz0gSaa4yLENSpUuz8RnjTU-UJfzJtTAyOxY1bB5ij_bcxuukbyKAZI0QhtAx3n5iDDVqkTtL77XraMtEm5pCAh6Q13mVNULTs8fyLWennigurqUst3tgQroAKB_nUfFxJ_L_u6g8TB5EEr0NZ-5pQ&h=LnGWXtiADBrZ6N0XPrSaxpwZsmd31S7F0RV6De2xh2o response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/5097E558-B151-4515-BBB2-AD3C25ADF27A", - "name": "5097E558-B151-4515-BBB2-AD3C25ADF27A", "status": "Succeeded", "startTime": - "2025-09-03T08:03:37.4100000Z", "endTime": "2025-09-03T08:03:51.9870000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/97709DD1-2E4C-49BA-B717-457E5207CE2D", + "name": "97709DD1-2E4C-49BA-B717-457E5207CE2D", "status": "Succeeded", "startTime": + "2026-05-20T10:06:46.9270000Z", "endTime": "2026-05-20T10:07:16.3800000Z"}' headers: Cache-Control: - no-cache @@ -1501,7 +1104,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 08:03:53 GMT + - Wed, 20 May 2026 10:07:20 GMT Expires: - '-1' Pragma: diff --git a/tests/test_commands/recordings/test_commands/test_stop/test_stop_mirrored_db_already_paused_failure.yaml b/tests/test_commands/recordings/test_commands/test_stop/test_stop_mirrored_db_already_paused_failure.yaml index ae6a9a0b2..c0e4be8ed 100644 --- a/tests/test_commands/recordings/test_commands/test_stop/test_stop_mirrored_db_already_paused_failure.yaml +++ b/tests/test_commands/recordings/test_commands/test_stop/test_stop_mirrored_db_already_paused_failure.yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "431e99c3-79af-4cdf-9019-94a41d1243dc", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "aaaf2004-b4e4-403d-809d-86c1fb7e4359", + "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: - - '566' + - '2625' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:46:30 GMT + - Wed, 20 May 2026 10:12:38 GMT Pragma: - no-cache RequestId: - - 40de514c-8bb0-4df5-9e4d-441797d8ae25 + - ea916f71-23a3-4959-939e-8cdfd19a68fc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -43,7 +44,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -61,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc/items + uri: https://api.fabric.microsoft.com/v1/workspaces/aaaf2004-b4e4-403d-809d-86c1fb7e4359/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:46:30 GMT + - Wed, 20 May 2026 10:12:39 GMT Pragma: - no-cache RequestId: - - d580c75a-7904-41b8-bd38-10398a463c86 + - 3b14afbf-21ba-44b1-8c79-7e772e6711a2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -91,7 +92,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -109,9 +110,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc/items + uri: https://api.fabric.microsoft.com/v1/workspaces/aaaf2004-b4e4-403d-809d-86c1fb7e4359/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:46:30 GMT + - Wed, 20 May 2026 10:12:40 GMT Pragma: - no-cache RequestId: - - 28bb3544-3bff-41a0-815f-52a2d6f6cfd2 + - 27949044-c5a7-4922-a564-9f7121a71a94 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -139,14 +140,16 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: 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.1.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc/mirroredDatabases + uri: https://api.fabric.microsoft.com/v1/workspaces/aaaf2004-b4e4-403d-809d-86c1fb7e4359/mirroredDatabases response: body: - string: '{"id": "f9ebf138-61b7-4e83-a3fd-03a78d75fd05", "type": "MirroredDatabase", - "displayName": "fabcli000001", "workspaceId": - "431e99c3-79af-4cdf-9019-94a41d1243dc"}' + string: '{"id": "ddff01e8-9657-4b9b-aa7c-ba0efa9feb6f", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "aaaf2004-b4e4-403d-809d-86c1fb7e4359"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +177,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '170' + - '161' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:46:31 GMT + - Wed, 20 May 2026 10:12:42 GMT ETag: - '""' Pragma: - no-cache RequestId: - - c504b452-601e-4d6e-b051-26744e54a41e + - 96ddcc94-6ead-4b06-a451-8d83fb18ca83 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -194,7 +195,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -212,14 +213,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "431e99c3-79af-4cdf-9019-94a41d1243dc", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "aaaf2004-b4e4-403d-809d-86c1fb7e4359", + "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: - - '566' + - '2625' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:47:02 GMT + - Wed, 20 May 2026 10:13:13 GMT Pragma: - no-cache RequestId: - - 6c26235c-2456-4f81-8aad-1f05ecb03203 + - 33ce429f-caeb-4e0b-979d-ad339001b7b7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -244,7 +246,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -262,16 +264,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc/items + uri: https://api.fabric.microsoft.com/v1/workspaces/aaaf2004-b4e4-403d-809d-86c1fb7e4359/items response: body: - string: '{"value": [{"id": "6cca7243-2038-479f-80c4-07ac7aecf618", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "431e99c3-79af-4cdf-9019-94a41d1243dc"}, - {"id": "f9ebf138-61b7-4e83-a3fd-03a78d75fd05", "type": "MirroredDatabase", - "displayName": "fabcli000001", "workspaceId": - "431e99c3-79af-4cdf-9019-94a41d1243dc"}]}' + string: '{"value": [{"id": "f06ac2aa-592a-4269-8cd9-35943d6217ae", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "aaaf2004-b4e4-403d-809d-86c1fb7e4359"}, + {"id": "ddff01e8-9657-4b9b-aa7c-ba0efa9feb6f", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "aaaf2004-b4e4-403d-809d-86c1fb7e4359"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -280,15 +281,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '232' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:47:02 GMT + - Wed, 20 May 2026 10:13:13 GMT Pragma: - no-cache RequestId: - - bb259425-5ed9-48d7-93a4-e06d2c08aab3 + - c4a2ef0c-5f8a-4643-a892-fd913502b3f5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -296,7 +297,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -316,403 +317,23 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc/mirroredDatabases/f9ebf138-61b7-4e83-a3fd-03a78d75fd05/getMirroringStatus + uri: https://api.fabric.microsoft.com/v1/workspaces/aaaf2004-b4e4-403d-809d-86c1fb7e4359/mirroredDatabases/ddff01e8-9657-4b9b-aa7c-ba0efa9feb6f/getMirroringStatus response: body: - string: '{"status": "Initialized"}' + string: '{"status": "Initializing"}' headers: Access-Control-Expose-Headers: - RequestId Content-Length: - - '31' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 16 Sep 2025 08:47:03 GMT - RequestId: - - 39224562-c1e4-4708-a494-9d158e00613a - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.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.1.0 - method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc/mirroredDatabases/f9ebf138-61b7-4e83-a3fd-03a78d75fd05/startMirroring - response: - body: - string: '' - headers: - Access-Control-Expose-Headers: - - RequestId - Content-Length: - - '0' - Content-Type: - - application/octet-stream - Date: - - Tue, 16 Sep 2025 08:47:04 GMT - RequestId: - - d79c1de3-66f9-4ee8-a547-8c52e42f31bd - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.1.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "431e99c3-79af-4cdf-9019-94a41d1243dc", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "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: - - '566' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 16 Sep 2025 08:47:35 GMT - Pragma: - - no-cache - RequestId: - - 83012dab-92a8-427e-894d-088192400666 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.1.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc/items - response: - body: - string: '{"value": [{"id": "6cca7243-2038-479f-80c4-07ac7aecf618", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "431e99c3-79af-4cdf-9019-94a41d1243dc"}, - {"id": "f9ebf138-61b7-4e83-a3fd-03a78d75fd05", "type": "MirroredDatabase", - "displayName": "fabcli000001", "workspaceId": - "431e99c3-79af-4cdf-9019-94a41d1243dc"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '232' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 16 Sep 2025 08:47:36 GMT - Pragma: - - no-cache - RequestId: - - 58b8159b-960c-416e-9a81-4f66af0307ae - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.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.1.0 - method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc/mirroredDatabases/f9ebf138-61b7-4e83-a3fd-03a78d75fd05/getMirroringStatus - response: - body: - string: '{"status": "Running"}' - headers: - Access-Control-Expose-Headers: - - RequestId - Content-Length: - - '27' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 16 Sep 2025 08:47:36 GMT - RequestId: - - e9708371-09cc-4b4c-98e7-34372ec3c004 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.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.1.0 - method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc/mirroredDatabases/f9ebf138-61b7-4e83-a3fd-03a78d75fd05/stopMirroring - response: - body: - string: '' - headers: - Access-Control-Expose-Headers: - - RequestId - Content-Length: - - '0' - Content-Type: - - application/octet-stream - Date: - - Tue, 16 Sep 2025 08:47:37 GMT - RequestId: - - d32375cf-0f2a-4b44-9cbb-aaec93faf77e - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.1.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "431e99c3-79af-4cdf-9019-94a41d1243dc", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "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: - - '566' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 16 Sep 2025 08:47:37 GMT - Pragma: - - no-cache - RequestId: - - ee6519ba-65d3-444d-a971-3766d6d7f31d - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.1.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc/items - response: - body: - string: '{"value": [{"id": "6cca7243-2038-479f-80c4-07ac7aecf618", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "431e99c3-79af-4cdf-9019-94a41d1243dc"}, - {"id": "f9ebf138-61b7-4e83-a3fd-03a78d75fd05", "type": "MirroredDatabase", - "displayName": "fabcli000001", "workspaceId": - "431e99c3-79af-4cdf-9019-94a41d1243dc"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '232' - Content-Type: - - application/json; charset=utf-8 - Date: - - Tue, 16 Sep 2025 08:47:37 GMT - Pragma: - - no-cache - RequestId: - - 490bde37-3009-42f5-a067-237ccb81002c - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.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.1.0 - method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc/mirroredDatabases/f9ebf138-61b7-4e83-a3fd-03a78d75fd05/getMirroringStatus - response: - body: - string: '{"status": "Stopping"}' - headers: - Access-Control-Expose-Headers: - - RequestId - Content-Length: - - '28' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:47:38 GMT + - Wed, 20 May 2026 10:13:14 GMT RequestId: - - 7e29a8dc-c5d4-48b1-bbee-6e772d9842d2 + - 47052d1d-4aa3-44cf-8a69-f5f628d7f1a2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -720,7 +341,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -738,14 +359,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "431e99c3-79af-4cdf-9019-94a41d1243dc", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "aaaf2004-b4e4-403d-809d-86c1fb7e4359", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -754,15 +376,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '566' + - '2625' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:47:38 GMT + - Wed, 20 May 2026 10:13:15 GMT Pragma: - no-cache RequestId: - - a9a384c9-3f25-4544-a117-758b764e93f1 + - 619be6e5-409c-4112-99dc-38e7cec753a3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -770,7 +392,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -788,16 +410,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc/items + uri: https://api.fabric.microsoft.com/v1/workspaces/aaaf2004-b4e4-403d-809d-86c1fb7e4359/items response: body: - string: '{"value": [{"id": "6cca7243-2038-479f-80c4-07ac7aecf618", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "431e99c3-79af-4cdf-9019-94a41d1243dc"}, - {"id": "f9ebf138-61b7-4e83-a3fd-03a78d75fd05", "type": "MirroredDatabase", - "displayName": "fabcli000001", "workspaceId": - "431e99c3-79af-4cdf-9019-94a41d1243dc"}]}' + string: '{"value": [{"id": "f06ac2aa-592a-4269-8cd9-35943d6217ae", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "aaaf2004-b4e4-403d-809d-86c1fb7e4359"}, + {"id": "ddff01e8-9657-4b9b-aa7c-ba0efa9feb6f", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "aaaf2004-b4e4-403d-809d-86c1fb7e4359"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -806,15 +427,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '232' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:47:38 GMT + - Wed, 20 May 2026 10:13:16 GMT Pragma: - no-cache RequestId: - - afb06b7b-85ef-4dbf-929e-7d205b6345fd + - feb55bb6-9f71-4170-bbaa-4b4dcc09f61c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -822,7 +443,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -842,9 +463,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc/items/f9ebf138-61b7-4e83-a3fd-03a78d75fd05 + uri: https://api.fabric.microsoft.com/v1/workspaces/aaaf2004-b4e4-403d-809d-86c1fb7e4359/items/ddff01e8-9657-4b9b-aa7c-ba0efa9feb6f response: body: string: '' @@ -860,11 +481,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 16 Sep 2025 08:47:38 GMT + - Wed, 20 May 2026 10:13:17 GMT Pragma: - no-cache RequestId: - - 6289eb38-bd15-4210-8e13-efdb37269800 + - 752d06cb-3d98-4ac2-8de0-dab668fa4e49 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -872,7 +493,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: diff --git a/tests/test_commands/recordings/test_commands/test_stop/test_stop_mirrored_db_success.yaml b/tests/test_commands/recordings/test_commands/test_stop/test_stop_mirrored_db_success.yaml index ff95cad59..3875b2472 100644 --- a/tests/test_commands/recordings/test_commands/test_stop/test_stop_mirrored_db_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_stop/test_stop_mirrored_db_success.yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "431e99c3-79af-4cdf-9019-94a41d1243dc", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "aaaf2004-b4e4-403d-809d-86c1fb7e4359", + "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: - - '566' + - '2625' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:44:19 GMT + - Wed, 20 May 2026 10:10:11 GMT Pragma: - no-cache RequestId: - - afc9654a-6d6a-4d80-ad45-79dcd0afcf54 + - 177860f4-6181-49ed-bfe1-44f1bcd3df45 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -43,7 +44,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -61,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc/items + uri: https://api.fabric.microsoft.com/v1/workspaces/aaaf2004-b4e4-403d-809d-86c1fb7e4359/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:44:20 GMT + - Wed, 20 May 2026 10:10:12 GMT Pragma: - no-cache RequestId: - - 8ac5e8db-d354-4332-a630-a92e40630c66 + - 9adf77ab-0062-4616-9e3f-d6e2e7f375ae Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -91,7 +92,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -109,9 +110,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc/items + uri: https://api.fabric.microsoft.com/v1/workspaces/aaaf2004-b4e4-403d-809d-86c1fb7e4359/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:44:20 GMT + - Wed, 20 May 2026 10:10:13 GMT Pragma: - no-cache RequestId: - - 3c1760d6-a5c5-47b2-b950-b078c3ac8d0d + - 489d3742-be18-41d9-83ae-12a7621e8586 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -139,14 +140,16 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: 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.1.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc/mirroredDatabases + uri: https://api.fabric.microsoft.com/v1/workspaces/aaaf2004-b4e4-403d-809d-86c1fb7e4359/mirroredDatabases response: body: - string: '{"id": "c179232e-36d0-4e01-bfb6-41ee08c54cee", "type": "MirroredDatabase", - "displayName": "fabcli000001", "workspaceId": - "431e99c3-79af-4cdf-9019-94a41d1243dc"}' + string: '{"id": "d4e5db48-50bd-4d2e-b043-ecb52afc0009", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "aaaf2004-b4e4-403d-809d-86c1fb7e4359"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +177,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '159' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:44:23 GMT + - Wed, 20 May 2026 10:10:16 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 733b3090-29c9-4adf-8520-5da713f570b8 + - ff6a3d99-fd19-419e-a004-c57cb8f8b843 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -194,7 +195,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -212,14 +213,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "431e99c3-79af-4cdf-9019-94a41d1243dc", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "aaaf2004-b4e4-403d-809d-86c1fb7e4359", + "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: - - '566' + - '2625' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:45:23 GMT + - Wed, 20 May 2026 10:11:17 GMT Pragma: - no-cache RequestId: - - 7e95ee10-d12a-4b2e-9b9d-c7daeea3d0c2 + - b42ebc6b-20a8-463d-a863-02fecc11ec94 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -244,7 +246,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -262,16 +264,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc/items + uri: https://api.fabric.microsoft.com/v1/workspaces/aaaf2004-b4e4-403d-809d-86c1fb7e4359/items response: body: - string: '{"value": [{"id": "deae2030-275b-4d5d-be76-076e5de22ad5", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "431e99c3-79af-4cdf-9019-94a41d1243dc"}, - {"id": "c179232e-36d0-4e01-bfb6-41ee08c54cee", "type": "MirroredDatabase", - "displayName": "fabcli000001", "workspaceId": - "431e99c3-79af-4cdf-9019-94a41d1243dc"}]}' + string: '{"value": [{"id": "0370c8c8-1ba3-459d-90d5-96b13a32ae29", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "aaaf2004-b4e4-403d-809d-86c1fb7e4359"}, + {"id": "d4e5db48-50bd-4d2e-b043-ecb52afc0009", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "aaaf2004-b4e4-403d-809d-86c1fb7e4359"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -280,15 +281,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '230' + - '217' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:45:23 GMT + - Wed, 20 May 2026 10:11:18 GMT Pragma: - no-cache RequestId: - - 241bfcce-06bb-49d2-b5fd-edcb3195d8a0 + - d81d9103-0595-4f2f-ae38-52ff27f9a979 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -296,7 +297,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -316,9 +317,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc/mirroredDatabases/c179232e-36d0-4e01-bfb6-41ee08c54cee/getMirroringStatus + uri: https://api.fabric.microsoft.com/v1/workspaces/aaaf2004-b4e4-403d-809d-86c1fb7e4359/mirroredDatabases/d4e5db48-50bd-4d2e-b043-ecb52afc0009/getMirroringStatus response: body: string: '{"status": "Initialized"}' @@ -330,9 +331,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:45:23 GMT + - Wed, 20 May 2026 10:11:20 GMT RequestId: - - e4368509-58f0-4ad6-a55f-a34a0e77501b + - da8f8a01-dc9e-4ebd-bd37-5fecf05cb320 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -340,7 +341,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -360,9 +361,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc/mirroredDatabases/c179232e-36d0-4e01-bfb6-41ee08c54cee/startMirroring + uri: https://api.fabric.microsoft.com/v1/workspaces/aaaf2004-b4e4-403d-809d-86c1fb7e4359/mirroredDatabases/d4e5db48-50bd-4d2e-b043-ecb52afc0009/startMirroring response: body: string: '' @@ -374,9 +375,9 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 16 Sep 2025 08:45:25 GMT + - Wed, 20 May 2026 10:11:22 GMT RequestId: - - 4cfc5bab-b561-4aeb-a3d7-77de5803f5e4 + - 41b5ff8e-657c-4bc8-a85d-742df183a5b8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -384,7 +385,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -402,14 +403,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "431e99c3-79af-4cdf-9019-94a41d1243dc", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "aaaf2004-b4e4-403d-809d-86c1fb7e4359", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -418,15 +420,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '566' + - '2625' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:45:55 GMT + - Wed, 20 May 2026 10:11:53 GMT Pragma: - no-cache RequestId: - - 463654aa-0d00-48bd-961c-43158a4b8bd6 + - 182699c9-7a11-45fb-8cf2-64afdeb505ee Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -434,7 +436,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -452,16 +454,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc/items + uri: https://api.fabric.microsoft.com/v1/workspaces/aaaf2004-b4e4-403d-809d-86c1fb7e4359/items response: body: - string: '{"value": [{"id": "deae2030-275b-4d5d-be76-076e5de22ad5", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "431e99c3-79af-4cdf-9019-94a41d1243dc"}, - {"id": "c179232e-36d0-4e01-bfb6-41ee08c54cee", "type": "MirroredDatabase", - "displayName": "fabcli000001", "workspaceId": - "431e99c3-79af-4cdf-9019-94a41d1243dc"}]}' + string: '{"value": [{"id": "0370c8c8-1ba3-459d-90d5-96b13a32ae29", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "aaaf2004-b4e4-403d-809d-86c1fb7e4359"}, + {"id": "d4e5db48-50bd-4d2e-b043-ecb52afc0009", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "aaaf2004-b4e4-403d-809d-86c1fb7e4359"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -470,15 +471,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '230' + - '217' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:45:55 GMT + - Wed, 20 May 2026 10:11:54 GMT Pragma: - no-cache RequestId: - - c64863af-e002-4cb7-b740-35b98a366ef9 + - f2b107ae-3cc4-4c8f-afaa-288819457f78 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -486,7 +487,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -506,9 +507,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc/mirroredDatabases/c179232e-36d0-4e01-bfb6-41ee08c54cee/getMirroringStatus + uri: https://api.fabric.microsoft.com/v1/workspaces/aaaf2004-b4e4-403d-809d-86c1fb7e4359/mirroredDatabases/d4e5db48-50bd-4d2e-b043-ecb52afc0009/getMirroringStatus response: body: string: '{"status": "Running"}' @@ -520,9 +521,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:45:56 GMT + - Wed, 20 May 2026 10:11:55 GMT RequestId: - - b759fadf-2563-4e20-82ce-b43386946a87 + - ac15861b-1799-4a52-b8c8-200530410445 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -530,7 +531,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -550,9 +551,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc/mirroredDatabases/c179232e-36d0-4e01-bfb6-41ee08c54cee/stopMirroring + uri: https://api.fabric.microsoft.com/v1/workspaces/aaaf2004-b4e4-403d-809d-86c1fb7e4359/mirroredDatabases/d4e5db48-50bd-4d2e-b043-ecb52afc0009/stopMirroring response: body: string: '' @@ -564,9 +565,9 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 16 Sep 2025 08:45:56 GMT + - Wed, 20 May 2026 10:11:57 GMT RequestId: - - ef423bd7-6502-4297-9c29-d58138ee0c88 + - 233d0c44-1f68-4090-9236-2e8ef111776e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -574,7 +575,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -592,14 +593,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "431e99c3-79af-4cdf-9019-94a41d1243dc", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "aaaf2004-b4e4-403d-809d-86c1fb7e4359", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -608,15 +610,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '566' + - '2625' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:46:26 GMT + - Wed, 20 May 2026 10:12:28 GMT Pragma: - no-cache RequestId: - - b60f1720-3109-4203-922d-301abdda5291 + - d43a08ab-aba1-4959-a032-cb1b5eb13a6b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -624,7 +626,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -642,16 +644,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc/items + uri: https://api.fabric.microsoft.com/v1/workspaces/aaaf2004-b4e4-403d-809d-86c1fb7e4359/items response: body: - string: '{"value": [{"id": "deae2030-275b-4d5d-be76-076e5de22ad5", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "431e99c3-79af-4cdf-9019-94a41d1243dc"}, - {"id": "c179232e-36d0-4e01-bfb6-41ee08c54cee", "type": "MirroredDatabase", - "displayName": "fabcli000001", "workspaceId": - "431e99c3-79af-4cdf-9019-94a41d1243dc"}]}' + string: '{"value": [{"id": "0370c8c8-1ba3-459d-90d5-96b13a32ae29", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "aaaf2004-b4e4-403d-809d-86c1fb7e4359"}, + {"id": "d4e5db48-50bd-4d2e-b043-ecb52afc0009", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "aaaf2004-b4e4-403d-809d-86c1fb7e4359"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -660,15 +661,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '230' + - '217' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:46:26 GMT + - Wed, 20 May 2026 10:12:28 GMT Pragma: - no-cache RequestId: - - 92cfd356-847e-4e75-9d3d-d5ad4213d1a4 + - 1398c16e-fa0b-4cb2-b19a-b5b1ec57773f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -676,7 +677,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -694,17 +695,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc/mirroredDatabases/c179232e-36d0-4e01-bfb6-41ee08c54cee + uri: https://api.fabric.microsoft.com/v1/workspaces/aaaf2004-b4e4-403d-809d-86c1fb7e4359/mirroredDatabases/d4e5db48-50bd-4d2e-b043-ecb52afc0009 response: body: - string: '{"id": "c179232e-36d0-4e01-bfb6-41ee08c54cee", "type": "MirroredDatabase", - "displayName": "fabcli000001", "workspaceId": - "431e99c3-79af-4cdf-9019-94a41d1243dc", "properties": {"oneLakeTablesPath": - "https://onelake.dfs.fabric.microsoft.com/431e99c3-79af-4cdf-9019-94a41d1243dc/c179232e-36d0-4e01-bfb6-41ee08c54cee/Tables", + string: '{"id": "d4e5db48-50bd-4d2e-b043-ecb52afc0009", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "aaaf2004-b4e4-403d-809d-86c1fb7e4359", + "properties": {"oneLakeTablesPath": "https://onelake.dfs.fabric.microsoft.com/aaaf2004-b4e4-403d-809d-86c1fb7e4359/d4e5db48-50bd-4d2e-b043-ecb52afc0009/Tables", "sqlEndpointProperties": {"connectionString": "mock_connection_string", "id": - "deae2030-275b-4d5d-be76-076e5de22ad5", "provisioningStatus": "Success"}}}' + "0370c8c8-1ba3-459d-90d5-96b13a32ae29", "provisioningStatus": "Success"}}}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -713,17 +713,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '365' + - '356' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:46:27 GMT + - Wed, 20 May 2026 10:12:29 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 0a2b3add-07b1-446e-b448-37fb5e1ca3a3 + - 720f6ee7-3a55-496e-99d9-77436668903c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -731,7 +731,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -751,13 +751,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc/items/c179232e-36d0-4e01-bfb6-41ee08c54cee/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/aaaf2004-b4e4-403d-809d-86c1fb7e4359/items/d4e5db48-50bd-4d2e-b043-ecb52afc0009/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: @@ -767,15 +767,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '561' + - '535' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:46:27 GMT + - Wed, 20 May 2026 10:12:31 GMT Pragma: - no-cache RequestId: - - 11652c70-948a-4df6-90b7-8e04617a27a2 + - 00f3c8cd-7cac-4fcb-ab3e-150b1fb04fcc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -783,7 +783,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -801,9 +801,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc/items/c179232e-36d0-4e01-bfb6-41ee08c54cee/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/aaaf2004-b4e4-403d-809d-86c1fb7e4359/items/d4e5db48-50bd-4d2e-b043-ecb52afc0009/connections response: body: string: '{"value": []}' @@ -819,11 +819,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:46:28 GMT + - Wed, 20 May 2026 10:12:32 GMT Pragma: - no-cache RequestId: - - a51ba373-9ce0-4712-add6-96c29e79e89c + - 008129d2-4003-445d-bdf4-29163a2a72d3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -831,7 +831,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -851,9 +851,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc/mirroredDatabases/c179232e-36d0-4e01-bfb6-41ee08c54cee/getMirroringStatus + uri: https://api.fabric.microsoft.com/v1/workspaces/aaaf2004-b4e4-403d-809d-86c1fb7e4359/mirroredDatabases/d4e5db48-50bd-4d2e-b043-ecb52afc0009/getMirroringStatus response: body: string: '{"status": "Stopped"}' @@ -865,9 +865,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:46:28 GMT + - Wed, 20 May 2026 10:12:32 GMT RequestId: - - 91b1de43-611a-49df-87ef-d352ce1ffc64 + - a10afd1b-bb2a-4df5-9a62-e2d3a2498da4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -875,7 +875,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -895,9 +895,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc/mirroredDatabases/c179232e-36d0-4e01-bfb6-41ee08c54cee/getTablesMirroringStatus + uri: https://api.fabric.microsoft.com/v1/workspaces/aaaf2004-b4e4-403d-809d-86c1fb7e4359/mirroredDatabases/d4e5db48-50bd-4d2e-b043-ecb52afc0009/getTablesMirroringStatus response: body: string: '{"continuationToken": null, "continuationUri": null, "data": []}' @@ -909,9 +909,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:46:29 GMT + - Wed, 20 May 2026 10:12:34 GMT RequestId: - - e1b4617f-8435-43d7-b650-74440da67bf5 + - 4b0d859b-3202-4f1f-a1fa-80d03a19f6b6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -919,7 +919,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -937,14 +937,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "431e99c3-79af-4cdf-9019-94a41d1243dc", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "aaaf2004-b4e4-403d-809d-86c1fb7e4359", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -953,15 +954,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '566' + - '2625' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:46:29 GMT + - Wed, 20 May 2026 10:12:35 GMT Pragma: - no-cache RequestId: - - edf2f7fd-398f-496d-ab2a-7a35cb936d22 + - ad93e1d6-61a4-4760-91b0-04e53d53dbb1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -969,7 +970,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -987,16 +988,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc/items + uri: https://api.fabric.microsoft.com/v1/workspaces/aaaf2004-b4e4-403d-809d-86c1fb7e4359/items response: body: - string: '{"value": [{"id": "deae2030-275b-4d5d-be76-076e5de22ad5", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "431e99c3-79af-4cdf-9019-94a41d1243dc"}, - {"id": "c179232e-36d0-4e01-bfb6-41ee08c54cee", "type": "MirroredDatabase", - "displayName": "fabcli000001", "workspaceId": - "431e99c3-79af-4cdf-9019-94a41d1243dc"}]}' + string: '{"value": [{"id": "0370c8c8-1ba3-459d-90d5-96b13a32ae29", "type": "SQLEndpoint", + "displayName": "fabcli000001", "description": "", "workspaceId": "aaaf2004-b4e4-403d-809d-86c1fb7e4359"}, + {"id": "d4e5db48-50bd-4d2e-b043-ecb52afc0009", "type": "MirroredDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "aaaf2004-b4e4-403d-809d-86c1fb7e4359"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1005,15 +1005,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '230' + - '217' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 16 Sep 2025 08:46:28 GMT + - Wed, 20 May 2026 10:12:35 GMT Pragma: - no-cache RequestId: - - 2d569a47-7f01-4ac2-abca-459ba72f553f + - db8502cf-82f1-49f1-9122-4779cdd29d0f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1021,7 +1021,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -1041,9 +1041,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/431e99c3-79af-4cdf-9019-94a41d1243dc/items/c179232e-36d0-4e01-bfb6-41ee08c54cee + uri: https://api.fabric.microsoft.com/v1/workspaces/aaaf2004-b4e4-403d-809d-86c1fb7e4359/items/d4e5db48-50bd-4d2e-b043-ecb52afc0009 response: body: string: '' @@ -1059,11 +1059,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 16 Sep 2025 08:46:29 GMT + - Wed, 20 May 2026 10:12:37 GMT Pragma: - no-cache RequestId: - - e7a9c670-2adb-457c-87fd-e112512d972a + - 57a36183-0e52-4b95-95ad-c98cf6604ff6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1071,7 +1071,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: From 4369cbf570a71445de877cfeece9a40ad3c946ec Mon Sep 17 00:00:00 2001 From: Alex Moraru Date: Fri, 22 May 2026 06:09:46 +0000 Subject: [PATCH 12/14] Re-records spark job test --- .../test_commands/test_jobs/class_setup.yaml | 72 +- .../test_jobs/test_run_spark_job.yaml | 990 ++++++------------ 2 files changed, 339 insertions(+), 723 deletions(-) diff --git a/tests/test_commands/recordings/test_commands/test_jobs/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_jobs/class_setup.yaml index 28fbaeec9..8d13da2b5 100644 --- a/tests/test_commands/recordings/test_commands/test_jobs/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_jobs/class_setup.yaml @@ -11,7 +11,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.3.1 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.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: - - '2232' + - '2690' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 19 Jan 2026 13:12:34 GMT + - Fri, 22 May 2026 06:04:46 GMT Pragma: - no-cache RequestId: - - 4e2c0cb4-ed18-4096-b87b-957a3cbc8192 + - ef87984c-31b0-481d-b1dc-941b46407d3a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -60,7 +60,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.3.1 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.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: - - '2232' + - '2690' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 19 Jan 2026 13:12:34 GMT + - Fri, 22 May 2026 06:04:47 GMT Pragma: - no-cache RequestId: - - 62d5a5a6-f18d-4f82-afb1-1b25b2db2f37 + - 5b070c0c-1af1-488e-ad9b-ca244f82fe6d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,13 +109,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.3.1 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.6.1 (None; Linux/6.12.76-linuxkit; Python/3.12.11) 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": "F32", "region": "Central US", "state": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -125,15 +125,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '425' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 19 Jan 2026 13:12:40 GMT + - Fri, 22 May 2026 06:04:51 GMT Pragma: - no-cache RequestId: - - a5664de8-11d6-4182-b695-4db555cb2919 + - 7633b97d-a669-4ef7-8737-3c147b7888fc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -148,7 +148,8 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabriccli_WorkspacePerTestclass_000001", "capacityId": "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabriccli_WorkspacePerTestclass_000001", "capacityId": + "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -158,16 +159,16 @@ interactions: - keep-alive Content-Length: - '124' - Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.3.1 (None; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.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": "4aec0924-bc5a-4b1a-a84b-e7863321d437", "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "4cd6d74d-347d-445c-898e-2ad658f4ee79", "displayName": "fabriccli_WorkspacePerTestclass_000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -176,17 +177,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '187' + - '174' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 19 Jan 2026 13:12:46 GMT + - Fri, 22 May 2026 06:04:58 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/4aec0924-bc5a-4b1a-a84b-e7863321d437 + - https://api.fabric.microsoft.com/v1/workspaces/4cd6d74d-347d-445c-898e-2ad658f4ee79 Pragma: - no-cache RequestId: - - 2e49777f-790b-4976-9f30-93fe6d4506a9 + - 64813dd6-6078-4b84-af41-b1e57cb98947 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/1.3.1 (job run; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.6.1 (job run; 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": "4aec0924-bc5a-4b1a-a84b-e7863321d437", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4cd6d74d-347d-445c-898e-2ad658f4ee79", + "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: - - '2266' + - '2726' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 19 Jan 2026 13:14:01 GMT + - Fri, 22 May 2026 06:08:26 GMT Pragma: - no-cache RequestId: - - 6573ea3c-6d46-4903-8c4d-26b5a8d933ae + - 971d4900-238a-42dc-abc9-69044cef4b65 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -262,9 +264,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.3.1 (job run; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.6.1 (job run; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/4aec0924-bc5a-4b1a-a84b-e7863321d437/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4cd6d74d-347d-445c-898e-2ad658f4ee79/items response: body: string: '{"value": []}' @@ -280,11 +282,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 19 Jan 2026 13:14:01 GMT + - Fri, 22 May 2026 06:08:27 GMT Pragma: - no-cache RequestId: - - a8d40339-290e-4252-993e-606957f6c9a7 + - 355d06a3-5af9-4182-b431-4c5c1c63f3f7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -312,9 +314,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.3.1 (job run; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.6.1 (job run; Linux/6.12.76-linuxkit; Python/3.12.11) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/4aec0924-bc5a-4b1a-a84b-e7863321d437 + uri: https://api.fabric.microsoft.com/v1/workspaces/4cd6d74d-347d-445c-898e-2ad658f4ee79 response: body: string: '' @@ -330,11 +332,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Mon, 19 Jan 2026 13:14:02 GMT + - Fri, 22 May 2026 06:08:28 GMT Pragma: - no-cache RequestId: - - 4e1f295c-c70b-4ed2-9eb0-33a1e04f30cd + - a7f4450e-17e5-4146-a16b-653d38077a7e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_jobs/test_run_spark_job.yaml b/tests/test_commands/recordings/test_commands/test_jobs/test_run_spark_job.yaml index 0fd825dca..7a61040a5 100644 --- a/tests/test_commands/recordings/test_commands/test_jobs/test_run_spark_job.yaml +++ b/tests/test_commands/recordings/test_commands/test_jobs/test_run_spark_job.yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "ab04aa79-51eb-45b8-8fa6-c96d985f33e7", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "4cd6d74d-347d-445c-898e-2ad658f4ee79", + "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: - - '498' + - '2726' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 07 Sep 2025 15:02:07 GMT + - Fri, 22 May 2026 06:05:00 GMT Pragma: - no-cache RequestId: - - 1f9a3f43-55a8-48f8-a858-8d2e5538d1aa + - f6cbbc94-9051-404a-8e39-9e36594fb6dc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -43,7 +44,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -61,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4cd6d74d-347d-445c-898e-2ad658f4ee79/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 07 Sep 2025 15:02:07 GMT + - Fri, 22 May 2026 06:05:01 GMT Pragma: - no-cache RequestId: - - ef963695-9a55-4651-9093-7365ab7255e3 + - 62454412-6af6-45a4-8446-81b07b12ec73 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -91,7 +92,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -109,9 +110,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4cd6d74d-347d-445c-898e-2ad658f4ee79/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 07 Sep 2025 15:02:07 GMT + - Fri, 22 May 2026 06:05:01 GMT Pragma: - no-cache RequestId: - - b0fadc01-71c4-4fea-8ce6-f674c4a02c27 + - ae57e47d-a99b-4bd4-8fdb-ea02253dcc39 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -139,14 +140,17 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: code: 200 message: OK - request: - body: '{"type": "SparkJobDefinition", "folderId": null, "displayName": "fabcli000001", "definition": {"format": "SparkJobDefinitionV1", "parts": [{"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiU3BhcmtKb2JEZWZpbml0aW9uIiwKICAgICAgICAiZGlzcGxheU5hbWUiOiAiUGFyYW1fVGVzdF9TcGFya0pvYiIsCiAgICAgICAgImRlc2NyaXB0aW9uIjogIlNwYXJrIGpvYiBkZWZpbml0aW9uIgogICAgfSwKICAgICJjb25maWciOiB7CiAgICAgICAgInZlcnNpb24iOiAiMi4wIiwKICAgICAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICAgIH0KfQ==", "payloadType": "InlineBase64"}, {"path": "SparkJobDefinitionV1.json", "payload": "ewogICAgImV4ZWN1dGFibGVGaWxlIjogIiIsCiAgICAiZGVmYXVsdExha2Vob3VzZUFydGlmYWN0SWQiOiAiIiwKICAgICJtYWluQ2xhc3MiOiAiIiwKICAgICJhZGRpdGlvbmFsTGFrZWhvdXNlSWRzIjogW10sCiAgICAicmV0cnlQb2xpY3kiOiBudWxsLAogICAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogIiIsCiAgICAiYWRkaXRpb25hbExpYnJhcnlVcmlzIjogW10sCiAgICAibGFuZ3VhZ2UiOiAiUHl0aG9uIiwKICAgICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsCn0=", "payloadType": "InlineBase64"}]}}' + body: '{"type": "SparkJobDefinition", "folderId": null, "displayName": "fabcli000001", + "definition": {"parts": [{"path": "SparkJobDefinitionV1.json", "payload": "ewogICAgImV4ZWN1dGFibGVGaWxlIjogIiIsCiAgICAiZGVmYXVsdExha2Vob3VzZUFydGlmYWN0SWQiOiAiIiwKICAgICJtYWluQ2xhc3MiOiAiIiwKICAgICJhZGRpdGlvbmFsTGFrZWhvdXNlSWRzIjogW10sCiAgICAicmV0cnlQb2xpY3kiOiBudWxsLAogICAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogIiIsCiAgICAiYWRkaXRpb25hbExpYnJhcnlVcmlzIjogW10sCiAgICAibGFuZ3VhZ2UiOiAiUHl0aG9uIiwKICAgICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsCn0=", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICAgIiRzY2hlbWEiOiAiaHR0cHM6Ly9kZXZlbG9wZXIubWljcm9zb2Z0LmNvbS9qc29uLXNjaGVtYXMvZmFicmljL2dpdEludGVncmF0aW9uL3BsYXRmb3JtUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgICAibWV0YWRhdGEiOiB7CiAgICAgICAgInR5cGUiOiAiU3BhcmtKb2JEZWZpbml0aW9uIiwKICAgICAgICAiZGlzcGxheU5hbWUiOiAiUGFyYW1fVGVzdF9TcGFya0pvYiIsCiAgICAgICAgImRlc2NyaXB0aW9uIjogIlNwYXJrIGpvYiBkZWZpbml0aW9uIgogICAgfSwKICAgICJjb25maWciOiB7CiAgICAgICAgInZlcnNpb24iOiAiMi4wIiwKICAgICAgICAibG9naWNhbElkIjogIjAwMDAwMDAwLTAwMDAtMDAwMC0wMDAwLTAwMDAwMDAwMDAwMCIKICAgIH0KfQ==", + "payloadType": "InlineBase64"}], "format": "SparkJobDefinitionV1"}}' headers: Accept: - '*/*' @@ -156,18 +160,17 @@ interactions: - keep-alive Content-Length: - '1182' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4cd6d74d-347d-445c-898e-2ad658f4ee79/items response: body: - string: '{"id": "d90a2d5f-1b3d-4645-831a-d8c66446a389", "type": "SparkJobDefinition", - "displayName": "fabcli000001", "workspaceId": - "ab04aa79-51eb-45b8-8fa6-c96d985f33e7"}' + string: '{"id": "6656abf0-4f1b-4f39-870c-20895ab91708", "type": "SparkJobDefinition", + "displayName": "fabcli000001", "description": "Spark job definition", "workspaceId": + "4cd6d74d-347d-445c-898e-2ad658f4ee79"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +179,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '175' + - '173' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 07 Sep 2025 15:02:10 GMT + - Fri, 22 May 2026 06:05:04 GMT ETag: - '""' Pragma: - no-cache RequestId: - - d4cd9386-84ba-4b22-a333-3fdc452c1ea1 + - 12e25fe5-a946-4ca6-81e0-b3e00bd36ad0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -194,7 +197,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -212,14 +215,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "ab04aa79-51eb-45b8-8fa6-c96d985f33e7", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "4cd6d74d-347d-445c-898e-2ad658f4ee79", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -228,15 +232,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '498' + - '2726' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 07 Sep 2025 15:02:09 GMT + - Fri, 22 May 2026 06:05:05 GMT Pragma: - no-cache RequestId: - - a02fd6b4-7a43-4745-8152-a7a35292a102 + - 0bf553b7-5359-41bf-9d68-53f5f4257280 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -244,7 +248,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -262,14 +266,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4cd6d74d-347d-445c-898e-2ad658f4ee79/items response: body: - string: '{"value": [{"id": "d90a2d5f-1b3d-4645-831a-d8c66446a389", "type": "SparkJobDefinition", - "displayName": "fabcli000001", "workspaceId": - "ab04aa79-51eb-45b8-8fa6-c96d985f33e7"}]}' + string: '{"value": [{"id": "6656abf0-4f1b-4f39-870c-20895ab91708", "type": "SparkJobDefinition", + "displayName": "fabcli000001", "description": "Spark job definition", "workspaceId": + "4cd6d74d-347d-445c-898e-2ad658f4ee79"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +282,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '186' + - '183' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 07 Sep 2025 15:02:10 GMT + - Fri, 22 May 2026 06:05:06 GMT Pragma: - no-cache RequestId: - - ff1361bc-5196-47c5-a305-b6ecdd2f2abc + - 2c71032f-c8dc-4f80-b54d-3c5eb6056e5b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -294,7 +298,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -312,14 +316,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "ab04aa79-51eb-45b8-8fa6-c96d985f33e7", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "4cd6d74d-347d-445c-898e-2ad658f4ee79", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -328,15 +333,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '498' + - '2726' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 07 Sep 2025 15:02:09 GMT + - Fri, 22 May 2026 06:05:07 GMT Pragma: - no-cache RequestId: - - 203c4fde-95e2-49a6-b5e7-9d241946c21c + - 9553369c-a24a-4b17-8347-a87a6e9659e0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -344,7 +349,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -362,14 +367,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4cd6d74d-347d-445c-898e-2ad658f4ee79/items response: body: - string: '{"value": [{"id": "d90a2d5f-1b3d-4645-831a-d8c66446a389", "type": "SparkJobDefinition", - "displayName": "fabcli000001", "workspaceId": - "ab04aa79-51eb-45b8-8fa6-c96d985f33e7"}]}' + string: '{"value": [{"id": "6656abf0-4f1b-4f39-870c-20895ab91708", "type": "SparkJobDefinition", + "displayName": "fabcli000001", "description": "Spark job definition", "workspaceId": + "4cd6d74d-347d-445c-898e-2ad658f4ee79"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -378,15 +383,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '186' + - '183' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 07 Sep 2025 15:02:10 GMT + - Fri, 22 May 2026 06:05:08 GMT Pragma: - no-cache RequestId: - - 0c938078-eb53-49a1-9ade-702e6491ce5d + - 46d7f4ac-ed93-4905-a598-6b141ce9136d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -394,7 +399,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -412,14 +417,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4cd6d74d-347d-445c-898e-2ad658f4ee79/items response: body: - string: '{"value": [{"id": "d90a2d5f-1b3d-4645-831a-d8c66446a389", "type": "SparkJobDefinition", - "displayName": "fabcli000001", "workspaceId": - "ab04aa79-51eb-45b8-8fa6-c96d985f33e7"}]}' + string: '{"value": [{"id": "6656abf0-4f1b-4f39-870c-20895ab91708", "type": "SparkJobDefinition", + "displayName": "fabcli000001", "description": "Spark job definition", "workspaceId": + "4cd6d74d-347d-445c-898e-2ad658f4ee79"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -428,15 +433,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '186' + - '183' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 07 Sep 2025 15:02:10 GMT + - Fri, 22 May 2026 06:05:09 GMT Pragma: - no-cache RequestId: - - d2526d56-389c-4cd1-a624-dcc514e0337f + - 8959bf30-73d1-4da5-9381-175d9e9503d9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -444,7 +449,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -461,18 +466,16 @@ interactions: - keep-alive Content-Length: - '74' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/4cd6d74d-347d-445c-898e-2ad658f4ee79/lakehouses response: body: - string: '{"id": "d788fdbe-3330-488f-aeb2-44daf0964697", "type": "Lakehouse", - "displayName": "fabcli000002", "workspaceId": - "ab04aa79-51eb-45b8-8fa6-c96d985f33e7"}' + string: '{"id": "d9674c35-e758-438c-aab1-058311cbbb81", "type": "Lakehouse", + "displayName": "fabcli000002", "description": "", "workspaceId": "4cd6d74d-347d-445c-898e-2ad658f4ee79"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -481,17 +484,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '157' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 07 Sep 2025 15:02:14 GMT + - Fri, 22 May 2026 06:05:13 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 82bbd43d-038f-45de-a1cb-8ee96e0c8372 + - 017d5212-5317-4d5f-a228-b4f627b82a67 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -499,7 +502,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -517,14 +520,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "ab04aa79-51eb-45b8-8fa6-c96d985f33e7", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "4cd6d74d-347d-445c-898e-2ad658f4ee79", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -533,15 +537,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '498' + - '2726' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 07 Sep 2025 15:02:15 GMT + - Fri, 22 May 2026 06:05:14 GMT Pragma: - no-cache RequestId: - - 7397e634-add4-4aee-ac1b-8ad873244f1e + - 1323674e-1bd2-439a-ad7e-25379a34824b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -549,7 +553,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -567,15 +571,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4cd6d74d-347d-445c-898e-2ad658f4ee79/items response: body: - string: '{"value": [{"id": "d90a2d5f-1b3d-4645-831a-d8c66446a389", "type": "SparkJobDefinition", - "displayName": "fabcli000001", "workspaceId": - "ab04aa79-51eb-45b8-8fa6-c96d985f33e7"}, {"id": "d788fdbe-3330-488f-aeb2-44daf0964697", - "type": "Lakehouse", "displayName": "fabcli000002", "workspaceId": "ab04aa79-51eb-45b8-8fa6-c96d985f33e7"}]}' + string: '{"value": [{"id": "6656abf0-4f1b-4f39-870c-20895ab91708", "type": "SparkJobDefinition", + "displayName": "fabcli000001", "description": "Spark job definition", "workspaceId": + "4cd6d74d-347d-445c-898e-2ad658f4ee79"}, {"id": "d9674c35-e758-438c-aab1-058311cbbb81", + "type": "Lakehouse", "displayName": "fabcli000002", "description": "", "workspaceId": + "4cd6d74d-347d-445c-898e-2ad658f4ee79"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -584,15 +589,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '248' + - '240' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 07 Sep 2025 15:02:15 GMT + - Fri, 22 May 2026 06:05:15 GMT Pragma: - no-cache RequestId: - - e9af983a-1837-430e-966c-9719a663b11f + - 203e4a09-4034-4407-a026-7c1b88d180f8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -600,7 +605,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -618,14 +623,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "ab04aa79-51eb-45b8-8fa6-c96d985f33e7", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "4cd6d74d-347d-445c-898e-2ad658f4ee79", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -634,15 +640,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '498' + - '2726' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 07 Sep 2025 15:02:15 GMT + - Fri, 22 May 2026 06:05:16 GMT Pragma: - no-cache RequestId: - - 777e5e95-793e-4362-b011-35033a5e3c16 + - f180f160-2847-4613-a116-89c6cf6ca40d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -650,7 +656,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -668,15 +674,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4cd6d74d-347d-445c-898e-2ad658f4ee79/items response: body: - string: '{"value": [{"id": "d90a2d5f-1b3d-4645-831a-d8c66446a389", "type": "SparkJobDefinition", - "displayName": "fabcli000001", "workspaceId": - "ab04aa79-51eb-45b8-8fa6-c96d985f33e7"}, {"id": "d788fdbe-3330-488f-aeb2-44daf0964697", - "type": "Lakehouse", "displayName": "fabcli000002", "workspaceId": "ab04aa79-51eb-45b8-8fa6-c96d985f33e7"}]}' + string: '{"value": [{"id": "6656abf0-4f1b-4f39-870c-20895ab91708", "type": "SparkJobDefinition", + "displayName": "fabcli000001", "description": "Spark job definition", "workspaceId": + "4cd6d74d-347d-445c-898e-2ad658f4ee79"}, {"id": "d9674c35-e758-438c-aab1-058311cbbb81", + "type": "Lakehouse", "displayName": "fabcli000002", "description": "", "workspaceId": + "4cd6d74d-347d-445c-898e-2ad658f4ee79"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -685,15 +692,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '248' + - '240' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 07 Sep 2025 15:02:15 GMT + - Fri, 22 May 2026 06:05:17 GMT Pragma: - no-cache RequestId: - - c36562b9-9a48-43ca-b7ac-fa95ec10ecb1 + - 5a1c1f59-b2f4-4b3d-bc41-2093fb9a9e11 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -701,60 +708,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/sparkJobDefinitions/d90a2d5f-1b3d-4645-831a-d8c66446a389 - response: - body: - string: '{"id": "d90a2d5f-1b3d-4645-831a-d8c66446a389", "type": "SparkJobDefinition", - "displayName": "fabcli000001", "workspaceId": - "ab04aa79-51eb-45b8-8fa6-c96d985f33e7", "properties": {"oneLakeRootPath": - "https://onelake.dfs.fabric.microsoft.com/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/d90a2d5f-1b3d-4645-831a-d8c66446a389"}}' - headers: - Access-Control-Expose-Headers: - - RequestId,ETag - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '237' - Content-Type: - - application/json; charset=utf-8 - Date: - - Sun, 07 Sep 2025 15:02:16 GMT - ETag: - - '""' - Pragma: - - no-cache - RequestId: - - b50c4a4f-369d-43ec-b2ef-c2c6e9dd2ee4 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -774,14 +728,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/items/d90a2d5f-1b3d-4645-831a-d8c66446a389/getDefinition?format=SparkJobDefinitionV1 + uri: https://api.fabric.microsoft.com/v1/workspaces/4cd6d74d-347d-445c-898e-2ad658f4ee79/items/6656abf0-4f1b-4f39-870c-20895ab91708/getDefinition?format=SparkJobDefinitionV1 response: body: string: '{"definition": {"parts": [{"path": "SparkJobDefinitionV1.json", "payload": "ew0KICAiZXhlY3V0YWJsZUZpbGUiOiAiIiwNCiAgImRlZmF1bHRMYWtlaG91c2VBcnRpZmFjdElkIjogbnVsbCwNCiAgIm1haW5DbGFzcyI6ICIiLA0KICAiYWRkaXRpb25hbExha2Vob3VzZUlkcyI6IFtdLA0KICAicmV0cnlQb2xpY3kiOiBudWxsLA0KICAiY29tbWFuZExpbmVBcmd1bWVudHMiOiAiIiwNCiAgImFkZGl0aW9uYWxMaWJyYXJ5VXJpcyI6IFtdLA0KICAibGFuZ3VhZ2UiOiAiUHl0aG9uIiwNCiAgImVudmlyb25tZW50QXJ0aWZhY3RJZCI6IG51bGwNCn0=", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIiwKICAgICJkZXNjcmlwdGlvbiI6ICJJbXBvcnRlZCBmcm9tIGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIiwKICAgICJkZXNjcmlwdGlvbiI6ICJTcGFyayBqb2IgZGVmaW5pdGlvbiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -795,161 +749,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Sun, 07 Sep 2025 15:02:17 GMT - Pragma: - - no-cache - RequestId: - - 3a67e7df-9bcf-4e13-8b8d-bea27439fbf8 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/items/d90a2d5f-1b3d-4645-831a-d8c66446a389/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: - - Sun, 07 Sep 2025 15:02:17 GMT - Pragma: - - no-cache - RequestId: - - 149d7bec-4ab4-408d-9690-17c77acf6dbb - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/items/d90a2d5f-1b3d-4645-831a-d8c66446a389/jobs/sparkjob/schedules - 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: - - Sun, 07 Sep 2025 15:02:17 GMT - Pragma: - - no-cache - RequestId: - - 94b45c5b-95f7-4668-af91-624f7a797111 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: '{"displayName": "fabcli000001"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '71' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 - method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/items/d90a2d5f-1b3d-4645-831a-d8c66446a389 - response: - body: - string: '{"id": "d90a2d5f-1b3d-4645-831a-d8c66446a389", "type": "SparkJobDefinition", - "displayName": "fabcli000001", "workspaceId": - "ab04aa79-51eb-45b8-8fa6-c96d985f33e7"}' - headers: - Access-Control-Expose-Headers: - - RequestId,ETag - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '175' - Content-Type: - - application/json; charset=utf-8 - Date: - - Sun, 07 Sep 2025 15:02:17 GMT - ETag: - - '""' + - Fri, 22 May 2026 06:05:18 GMT Pragma: - no-cache RequestId: - - 94a08491-c60f-4c2c-8ac1-8bff40481437 + - 22e65bb6-b55d-4663-97e3-72eaa7ca46e9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -957,7 +761,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -965,8 +769,8 @@ interactions: message: OK - request: body: '{"definition": {"parts": [{"path": "SparkJobDefinitionV1.json", "payload": - "eyJleGVjdXRhYmxlRmlsZSI6ICIiLCAiZGVmYXVsdExha2Vob3VzZUFydGlmYWN0SWQiOiAiZDc4OGZkYmUtMzMzMC00ODhmLWFlYjItNDRkYWYwOTY0Njk3IiwgIm1haW5DbGFzcyI6ICIiLCAiYWRkaXRpb25hbExha2Vob3VzZUlkcyI6IFtdLCAicmV0cnlQb2xpY3kiOiBudWxsLCAiY29tbWFuZExpbmVBcmd1bWVudHMiOiAiIiwgImFkZGl0aW9uYWxMaWJyYXJ5VXJpcyI6IFtdLCAibGFuZ3VhZ2UiOiAiUHl0aG9uIiwgImVudmlyb25tZW50QXJ0aWZhY3RJZCI6IG51bGx9", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "eyIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLCAibWV0YWRhdGEiOiB7InR5cGUiOiAiU3BhcmtKb2JEZWZpbml0aW9uIiwgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIsICJkZXNjcmlwdGlvbiI6ICJJbXBvcnRlZCBmcm9tIGZhYiJ9LCAiY29uZmlnIjogeyJ2ZXJzaW9uIjogIjIuMCIsICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIn19", + "eyJleGVjdXRhYmxlRmlsZSI6ICIiLCAiZGVmYXVsdExha2Vob3VzZUFydGlmYWN0SWQiOiAiZDk2NzRjMzUtZTc1OC00MzhjLWFhYjEtMDU4MzExY2JiYjgxIiwgIm1haW5DbGFzcyI6ICIiLCAiYWRkaXRpb25hbExha2Vob3VzZUlkcyI6IFtdLCAicmV0cnlQb2xpY3kiOiBudWxsLCAiY29tbWFuZExpbmVBcmd1bWVudHMiOiAiIiwgImFkZGl0aW9uYWxMaWJyYXJ5VXJpcyI6IFtdLCAibGFuZ3VhZ2UiOiAiUHl0aG9uIiwgImVudmlyb25tZW50QXJ0aWZhY3RJZCI6IG51bGx9", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "eyIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLCAibWV0YWRhdGEiOiB7InR5cGUiOiAiU3BhcmtKb2JEZWZpbml0aW9uIiwgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIsICJkZXNjcmlwdGlvbiI6ICJTcGFyayBqb2IgZGVmaW5pdGlvbiJ9LCAiY29uZmlnIjogeyJ2ZXJzaW9uIjogIjIuMCIsICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIn19", "payloadType": "InlineBase64"}]}}' headers: Accept: @@ -976,13 +780,13 @@ interactions: Connection: - keep-alive Content-Length: - - '965' + - '969' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/items/d90a2d5f-1b3d-4645-831a-d8c66446a389/updateDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/4cd6d74d-347d-445c-898e-2ad658f4ee79/items/6656abf0-4f1b-4f39-870c-20895ab91708/updateDefinition response: body: string: '' @@ -998,11 +802,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Sun, 07 Sep 2025 15:02:18 GMT + - Fri, 22 May 2026 06:05:20 GMT Pragma: - no-cache RequestId: - - a4b037b6-af0a-460a-847e-d3c2a915a426 + - 24c38b1a-2cd4-4fa8-aba9-1c1538dc15ea Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1010,7 +814,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -1030,9 +834,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: PUT - uri: https://onelake.dfs.fabric.microsoft.com/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/d90a2d5f-1b3d-4645-831a-d8c66446a389/Main/spark_job_simple.py/?resource=file + uri: https://onelake.dfs.fabric.microsoft.com//4cd6d74d-347d-445c-898e-2ad658f4ee79/6656abf0-4f1b-4f39-870c-20895ab91708/Main/spark_job_simple.py/?resource=file response: body: string: '' @@ -1048,13 +852,14 @@ interactions: Content-Length: - '0' Date: - - Sun, 07 Sep 2025 15:02:19 GMT + - Fri, 22 May 2026 06:05:23 GMT ETag: - - '"0x8DDEE1F8AD14F10"' + - '"0x8DEB7C81CB82D84"' Last-Modified: - - Sun, 07 Sep 2025 15:02:19 GMT + - Fri, 22 May 2026 06:05:23 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Windows-Azure-HDFS/1.0 + - Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1097,11 +902,11 @@ interactions: Content-Type: - text/plain User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 x-ms-content-type: - text/plain method: PATCH - uri: https://onelake.dfs.fabric.microsoft.com/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/d90a2d5f-1b3d-4645-831a-d8c66446a389/Main/spark_job_simple.py?action=append&position=0 + uri: https://onelake.dfs.fabric.microsoft.com//4cd6d74d-347d-445c-898e-2ad658f4ee79/6656abf0-4f1b-4f39-870c-20895ab91708/Main/spark_job_simple.py?action=append&position=0 response: body: string: '' @@ -1117,9 +922,10 @@ interactions: Content-Length: - '0' Date: - - Sun, 07 Sep 2025 15:02:20 GMT + - Fri, 22 May 2026 06:05:24 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Windows-Azure-HDFS/1.0 + - Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1141,11 +947,11 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 x-ms-content-type: - text/plain method: PATCH - uri: https://onelake.dfs.fabric.microsoft.com/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/d90a2d5f-1b3d-4645-831a-d8c66446a389/Main/spark_job_simple.py?action=flush&position=1758 + uri: https://onelake.dfs.fabric.microsoft.com//4cd6d74d-347d-445c-898e-2ad658f4ee79/6656abf0-4f1b-4f39-870c-20895ab91708/Main/spark_job_simple.py?action=flush&position=1758 response: body: string: '' @@ -1161,13 +967,13 @@ interactions: Content-Length: - '0' Date: - - Sun, 07 Sep 2025 15:02:20 GMT + - Fri, 22 May 2026 06:05:27 GMT ETag: - - '"0x8DDEE1F8B7D8EEC"' + - '"0x8DEB7C81EEDACF4"' Last-Modified: - - Sun, 07 Sep 2025 15:02:20 GMT + - Fri, 22 May 2026 06:05:27 GMT Server: - - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1187,14 +993,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "ab04aa79-51eb-45b8-8fa6-c96d985f33e7", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "4cd6d74d-347d-445c-898e-2ad658f4ee79", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1203,15 +1010,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '498' + - '2726' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 07 Sep 2025 15:02:20 GMT + - Fri, 22 May 2026 06:05:28 GMT Pragma: - no-cache RequestId: - - 53fe48c9-e28b-451a-8fe0-6cb4ff94f4eb + - 107b9019-2a29-4084-819b-9f2a3c58e3d2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1219,7 +1026,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -1237,15 +1044,18 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4cd6d74d-347d-445c-898e-2ad658f4ee79/items response: body: - string: '{"value": [{"id": "d90a2d5f-1b3d-4645-831a-d8c66446a389", "type": "SparkJobDefinition", - "displayName": "fabcli000001", "workspaceId": - "ab04aa79-51eb-45b8-8fa6-c96d985f33e7"}, {"id": "d788fdbe-3330-488f-aeb2-44daf0964697", - "type": "Lakehouse", "displayName": "fabcli000002", "workspaceId": "ab04aa79-51eb-45b8-8fa6-c96d985f33e7"}]}' + string: '{"value": [{"id": "e2ce29ff-cc06-4bb9-a6b4-82792f0a34ec", "type": "SQLEndpoint", + "displayName": "fabcli000002", "description": "", "workspaceId": "4cd6d74d-347d-445c-898e-2ad658f4ee79"}, + {"id": "6656abf0-4f1b-4f39-870c-20895ab91708", "type": "SparkJobDefinition", + "displayName": "fabcli000001", "description": "Spark job definition", "workspaceId": + "4cd6d74d-347d-445c-898e-2ad658f4ee79"}, {"id": "d9674c35-e758-438c-aab1-058311cbbb81", + "type": "Lakehouse", "displayName": "fabcli000002", "description": "", "workspaceId": + "4cd6d74d-347d-445c-898e-2ad658f4ee79"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1254,15 +1064,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '248' + - '281' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 07 Sep 2025 15:02:20 GMT + - Fri, 22 May 2026 06:05:28 GMT Pragma: - no-cache RequestId: - - 97adfe31-c8cf-4e7c-b2a0-82e92365505f + - 7dc1eb97-9309-47fe-9bc5-d098db6b4a35 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1270,60 +1080,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/sparkJobDefinitions/d90a2d5f-1b3d-4645-831a-d8c66446a389 - response: - body: - string: '{"id": "d90a2d5f-1b3d-4645-831a-d8c66446a389", "type": "SparkJobDefinition", - "displayName": "fabcli000001", "workspaceId": - "ab04aa79-51eb-45b8-8fa6-c96d985f33e7", "properties": {"oneLakeRootPath": - "https://onelake.dfs.fabric.microsoft.com/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/d90a2d5f-1b3d-4645-831a-d8c66446a389"}}' - headers: - Access-Control-Expose-Headers: - - RequestId,ETag - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '237' - Content-Type: - - application/json; charset=utf-8 - Date: - - Sun, 07 Sep 2025 15:02:21 GMT - ETag: - - '""' - Pragma: - - no-cache - RequestId: - - 9e507aee-2693-49b8-9514-55591ce5e3a5 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -1343,14 +1100,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/items/d90a2d5f-1b3d-4645-831a-d8c66446a389/getDefinition?format=SparkJobDefinitionV1 + uri: https://api.fabric.microsoft.com/v1/workspaces/4cd6d74d-347d-445c-898e-2ad658f4ee79/items/6656abf0-4f1b-4f39-870c-20895ab91708/getDefinition?format=SparkJobDefinitionV1 response: body: string: '{"definition": {"parts": [{"path": "SparkJobDefinitionV1.json", "payload": - "ew0KICAiZXhlY3V0YWJsZUZpbGUiOiAiIiwNCiAgImRlZmF1bHRMYWtlaG91c2VBcnRpZmFjdElkIjogImQ3ODhmZGJlLTMzMzAtNDg4Zi1hZWIyLTQ0ZGFmMDk2NDY5NyIsDQogICJtYWluQ2xhc3MiOiAiIiwNCiAgImFkZGl0aW9uYWxMYWtlaG91c2VJZHMiOiBbXSwNCiAgInJldHJ5UG9saWN5IjogbnVsbCwNCiAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogIiIsDQogICJhZGRpdGlvbmFsTGlicmFyeVVyaXMiOiBbXSwNCiAgImxhbmd1YWdlIjogIlB5dGhvbiIsDQogICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsDQp9", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIiwKICAgICJkZXNjcmlwdGlvbiI6ICJJbXBvcnRlZCBmcm9tIGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", + "ew0KICAiZXhlY3V0YWJsZUZpbGUiOiAiIiwNCiAgImRlZmF1bHRMYWtlaG91c2VBcnRpZmFjdElkIjogImQ5Njc0YzM1LWU3NTgtNDM4Yy1hYWIxLTA1ODMxMWNiYmI4MSIsDQogICJtYWluQ2xhc3MiOiAiIiwNCiAgImFkZGl0aW9uYWxMYWtlaG91c2VJZHMiOiBbXSwNCiAgInJldHJ5UG9saWN5IjogbnVsbCwNCiAgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogIiIsDQogICJhZGRpdGlvbmFsTGlicmFyeVVyaXMiOiBbXSwNCiAgImxhbmd1YWdlIjogIlB5dGhvbiIsDQogICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsDQp9", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlNwYXJrSm9iRGVmaW5pdGlvbiIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIiwKICAgICJkZXNjcmlwdGlvbiI6ICJTcGFyayBqb2IgZGVmaW5pdGlvbiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", "payloadType": "InlineBase64"}]}}' headers: Access-Control-Expose-Headers: @@ -1360,165 +1117,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '669' - Content-Type: - - application/json; charset=utf-8 - Date: - - Sun, 07 Sep 2025 15:02:21 GMT - Pragma: - - no-cache - RequestId: - - d4316a76-d2b3-4a09-a430-5e106bbebf0f - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/items/d90a2d5f-1b3d-4645-831a-d8c66446a389/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: - - Sun, 07 Sep 2025 15:02:21 GMT - Pragma: - - no-cache - RequestId: - - 3e75617d-ead3-4728-a6bc-8778cc68a25b - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/items/d90a2d5f-1b3d-4645-831a-d8c66446a389/jobs/sparkjob/schedules - 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: - - Sun, 07 Sep 2025 15:02:21 GMT - Pragma: - - no-cache - RequestId: - - 13560d23-7830-4d3b-95aa-ba244f6bdca5 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: '{"displayName": "fabcli000001"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '71' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 - method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/items/d90a2d5f-1b3d-4645-831a-d8c66446a389 - response: - body: - string: '{"id": "d90a2d5f-1b3d-4645-831a-d8c66446a389", "type": "SparkJobDefinition", - "displayName": "fabcli000001", "workspaceId": - "ab04aa79-51eb-45b8-8fa6-c96d985f33e7"}' - headers: - Access-Control-Expose-Headers: - - RequestId,ETag - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '175' + - '671' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 07 Sep 2025 15:02:22 GMT - ETag: - - '""' + - Fri, 22 May 2026 06:05:29 GMT Pragma: - no-cache RequestId: - - 680767e7-d7ca-4801-be85-c738e7b4b5f7 + - 71c9a489-c268-4c78-88c5-3809fe114d39 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1526,7 +1133,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -1534,8 +1141,8 @@ interactions: message: OK - request: body: '{"definition": {"parts": [{"path": "SparkJobDefinitionV1.json", "payload": - "eyJleGVjdXRhYmxlRmlsZSI6ICJhYmZzczovL2FiMDRhYTc5LTUxZWItNDViOC04ZmE2LWM5NmQ5ODVmMzNlN0BvbmVsYWtlLmRmcy5mYWJyaWMubWljcm9zb2Z0LmNvbS9kOTBhMmQ1Zi0xYjNkLTQ2NDUtODMxYS1kOGM2NjQ0NmEzODkvTWFpbi9zcGFya19qb2Jfc2ltcGxlLnB5IiwgImRlZmF1bHRMYWtlaG91c2VBcnRpZmFjdElkIjogImQ3ODhmZGJlLTMzMzAtNDg4Zi1hZWIyLTQ0ZGFmMDk2NDY5NyIsICJtYWluQ2xhc3MiOiAiIiwgImFkZGl0aW9uYWxMYWtlaG91c2VJZHMiOiBbXSwgInJldHJ5UG9saWN5IjogbnVsbCwgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogIiIsICJhZGRpdGlvbmFsTGlicmFyeVVyaXMiOiBbXSwgImxhbmd1YWdlIjogIlB5dGhvbiIsICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsfQ==", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "eyIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLCAibWV0YWRhdGEiOiB7InR5cGUiOiAiU3BhcmtKb2JEZWZpbml0aW9uIiwgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIsICJkZXNjcmlwdGlvbiI6ICJJbXBvcnRlZCBmcm9tIGZhYiJ9LCAiY29uZmlnIjogeyJ2ZXJzaW9uIjogIjIuMCIsICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIn19", + "eyJleGVjdXRhYmxlRmlsZSI6ICJhYmZzczovLzRjZDZkNzRkLTM0N2QtNDQ1Yy04OThlLTJhZDY1OGY0ZWU3OUBvbmVsYWtlLmRmcy5mYWJyaWMubWljcm9zb2Z0LmNvbS82NjU2YWJmMC00ZjFiLTRmMzktODcwYy0yMDg5NWFiOTE3MDgvTWFpbi9zcGFya19qb2Jfc2ltcGxlLnB5IiwgImRlZmF1bHRMYWtlaG91c2VBcnRpZmFjdElkIjogImQ5Njc0YzM1LWU3NTgtNDM4Yy1hYWIxLTA1ODMxMWNiYmI4MSIsICJtYWluQ2xhc3MiOiAiIiwgImFkZGl0aW9uYWxMYWtlaG91c2VJZHMiOiBbXSwgInJldHJ5UG9saWN5IjogbnVsbCwgImNvbW1hbmRMaW5lQXJndW1lbnRzIjogIiIsICJhZGRpdGlvbmFsTGlicmFyeVVyaXMiOiBbXSwgImxhbmd1YWdlIjogIlB5dGhvbiIsICJlbnZpcm9ubWVudEFydGlmYWN0SWQiOiBudWxsfQ==", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "eyIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLCAibWV0YWRhdGEiOiB7InR5cGUiOiAiU3BhcmtKb2JEZWZpbml0aW9uIiwgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIsICJkZXNjcmlwdGlvbiI6ICJTcGFyayBqb2IgZGVmaW5pdGlvbiJ9LCAiY29uZmlnIjogeyJ2ZXJzaW9uIjogIjIuMCIsICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIn19", "payloadType": "InlineBase64"}]}}' headers: Accept: @@ -1545,13 +1152,13 @@ interactions: Connection: - keep-alive Content-Length: - - '1153' + - '1157' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/items/d90a2d5f-1b3d-4645-831a-d8c66446a389/updateDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/4cd6d74d-347d-445c-898e-2ad658f4ee79/items/6656abf0-4f1b-4f39-870c-20895ab91708/updateDefinition response: body: string: '' @@ -1567,11 +1174,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Sun, 07 Sep 2025 15:02:23 GMT + - Fri, 22 May 2026 06:05:31 GMT Pragma: - no-cache RequestId: - - a0f90565-a9c5-4c9a-99e5-395f50ff302c + - 546008bd-0da3-4d1f-8c68-3e8e6dfac106 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1579,7 +1186,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -1597,14 +1204,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "ab04aa79-51eb-45b8-8fa6-c96d985f33e7", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "4cd6d74d-347d-445c-898e-2ad658f4ee79", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1613,15 +1221,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '498' + - '2726' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 07 Sep 2025 15:02:22 GMT + - Fri, 22 May 2026 06:05:33 GMT Pragma: - no-cache RequestId: - - 6c7737ea-2bf4-4250-933c-40fb1797c6fa + - 2f8a0b8c-cd4f-42c7-865d-40efbcd73e5e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1629,7 +1237,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -1647,15 +1255,18 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4cd6d74d-347d-445c-898e-2ad658f4ee79/items response: body: - string: '{"value": [{"id": "d90a2d5f-1b3d-4645-831a-d8c66446a389", "type": "SparkJobDefinition", - "displayName": "fabcli000001", "workspaceId": - "ab04aa79-51eb-45b8-8fa6-c96d985f33e7"}, {"id": "d788fdbe-3330-488f-aeb2-44daf0964697", - "type": "Lakehouse", "displayName": "fabcli000002", "workspaceId": "ab04aa79-51eb-45b8-8fa6-c96d985f33e7"}]}' + string: '{"value": [{"id": "e2ce29ff-cc06-4bb9-a6b4-82792f0a34ec", "type": "SQLEndpoint", + "displayName": "fabcli000002", "description": "", "workspaceId": "4cd6d74d-347d-445c-898e-2ad658f4ee79"}, + {"id": "6656abf0-4f1b-4f39-870c-20895ab91708", "type": "SparkJobDefinition", + "displayName": "fabcli000001", "description": "Spark job definition", "workspaceId": + "4cd6d74d-347d-445c-898e-2ad658f4ee79"}, {"id": "d9674c35-e758-438c-aab1-058311cbbb81", + "type": "Lakehouse", "displayName": "fabcli000002", "description": "", "workspaceId": + "4cd6d74d-347d-445c-898e-2ad658f4ee79"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1664,15 +1275,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '248' + - '281' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 07 Sep 2025 15:02:22 GMT + - Fri, 22 May 2026 06:05:34 GMT Pragma: - no-cache RequestId: - - d3014242-b38b-462e-a13f-a99b7b169812 + - 1d39327a-ab75-4c76-964c-6a0a7d196750 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1680,7 +1291,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -1700,9 +1311,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/items/d90a2d5f-1b3d-4645-831a-d8c66446a389/jobs/instances?jobType=sparkjob + uri: https://api.fabric.microsoft.com/v1/workspaces/4cd6d74d-347d-445c-898e-2ad658f4ee79/items/6656abf0-4f1b-4f39-870c-20895ab91708/jobs/instances?jobType=sparkjob response: body: string: '' @@ -1718,13 +1329,13 @@ interactions: Content-Type: - application/octet-stream Date: - - Sun, 07 Sep 2025 15:02:22 GMT + - Fri, 22 May 2026 06:05:34 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/items/d90a2d5f-1b3d-4645-831a-d8c66446a389/jobs/instances/2fbaef07-1a33-4683-bb3f-37ab2a5564c1 + - https://api.fabric.microsoft.com/v1/workspaces/4cd6d74d-347d-445c-898e-2ad658f4ee79/items/6656abf0-4f1b-4f39-870c-20895ab91708/jobs/instances/6edeec25-5b2e-4141-944a-7b9621d76676 Pragma: - no-cache RequestId: - - d54c496a-a787-40d6-b934-4565010056b8 + - d10ad1ad-23a5-41d7-8388-c1f83ca577d7 Retry-After: - '60' Strict-Transport-Security: @@ -1734,7 +1345,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -1752,15 +1363,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/items/d90a2d5f-1b3d-4645-831a-d8c66446a389/jobs/instances/2fbaef07-1a33-4683-bb3f-37ab2a5564c1 + uri: https://api.fabric.microsoft.com/v1/workspaces/4cd6d74d-347d-445c-898e-2ad658f4ee79/items/6656abf0-4f1b-4f39-870c-20895ab91708/jobs/instances/6edeec25-5b2e-4141-944a-7b9621d76676 response: body: - string: '{"id": "2fbaef07-1a33-4683-bb3f-37ab2a5564c1", "itemId": "d90a2d5f-1b3d-4645-831a-d8c66446a389", + string: '{"id": "6edeec25-5b2e-4141-944a-7b9621d76676", "itemId": "6656abf0-4f1b-4f39-870c-20895ab91708", "jobType": "sparkjob", "invokeType": "Manual", "status": "InProgress", "failureReason": - null, "rootActivityId": "d54c496a-a787-40d6-b934-4565010056b8", "startTimeUtc": - "2025-09-07T15:02:25.516309", "endTimeUtc": null}' + null, "rootActivityId": "d10ad1ad-23a5-41d7-8388-c1f83ca577d7", "startTimeUtc": + "2026-05-22T06:05:37.7808861", "endTimeUtc": null}' headers: Access-Control-Expose-Headers: - RequestId,Retry-After @@ -1769,17 +1380,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '238' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 07 Sep 2025 15:03:23 GMT + - Fri, 22 May 2026 06:06:36 GMT Pragma: - no-cache RequestId: - - 460e47ea-de46-464e-b040-47bfe2194878 + - 3d58be3c-91f1-41b5-8801-5b9fc47c6b1c Retry-After: - - '36' + - '44' Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1787,7 +1398,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -1805,15 +1416,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/items/d90a2d5f-1b3d-4645-831a-d8c66446a389/jobs/instances/2fbaef07-1a33-4683-bb3f-37ab2a5564c1 + uri: https://api.fabric.microsoft.com/v1/workspaces/4cd6d74d-347d-445c-898e-2ad658f4ee79/items/6656abf0-4f1b-4f39-870c-20895ab91708/jobs/instances/6edeec25-5b2e-4141-944a-7b9621d76676 response: body: - string: '{"id": "2fbaef07-1a33-4683-bb3f-37ab2a5564c1", "itemId": "d90a2d5f-1b3d-4645-831a-d8c66446a389", + string: '{"id": "6edeec25-5b2e-4141-944a-7b9621d76676", "itemId": "6656abf0-4f1b-4f39-870c-20895ab91708", "jobType": "sparkjob", "invokeType": "Manual", "status": "InProgress", "failureReason": - null, "rootActivityId": "d54c496a-a787-40d6-b934-4565010056b8", "startTimeUtc": - "2025-09-07T15:02:25.516309", "endTimeUtc": null}' + null, "rootActivityId": "d10ad1ad-23a5-41d7-8388-c1f83ca577d7", "startTimeUtc": + "2026-05-22T06:05:37.7808861", "endTimeUtc": null}' headers: Access-Control-Expose-Headers: - RequestId,Retry-After @@ -1822,17 +1433,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '238' + - '241' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 07 Sep 2025 15:03:59 GMT + - Fri, 22 May 2026 06:07:20 GMT Pragma: - no-cache RequestId: - - 16fd7d4c-50c9-4ed1-9136-2961aee15397 + - 2a64bcfb-1f24-4a12-93f4-752dad33ff83 Retry-After: - - '31' + - '59' Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1840,7 +1451,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -1858,15 +1469,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/items/d90a2d5f-1b3d-4645-831a-d8c66446a389/jobs/instances/2fbaef07-1a33-4683-bb3f-37ab2a5564c1 + uri: https://api.fabric.microsoft.com/v1/workspaces/4cd6d74d-347d-445c-898e-2ad658f4ee79/items/6656abf0-4f1b-4f39-870c-20895ab91708/jobs/instances/6edeec25-5b2e-4141-944a-7b9621d76676 response: body: - string: '{"id": "2fbaef07-1a33-4683-bb3f-37ab2a5564c1", "itemId": "d90a2d5f-1b3d-4645-831a-d8c66446a389", + string: '{"id": "6edeec25-5b2e-4141-944a-7b9621d76676", "itemId": "6656abf0-4f1b-4f39-870c-20895ab91708", "jobType": "sparkjob", "invokeType": "Manual", "status": "Completed", "failureReason": - null, "rootActivityId": "d54c496a-a787-40d6-b934-4565010056b8", "startTimeUtc": - "2025-09-07T15:02:25.516309", "endTimeUtc": "2025-09-07T15:04:12.0160338"}' + null, "rootActivityId": "d10ad1ad-23a5-41d7-8388-c1f83ca577d7", "startTimeUtc": + "2026-05-22T06:05:37.7808861", "endTimeUtc": "2026-05-22T06:08:17.085549"}' headers: Access-Control-Expose-Headers: - RequestId @@ -1875,15 +1486,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '245' + - '246' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 07 Sep 2025 15:04:30 GMT + - Fri, 22 May 2026 06:08:20 GMT Pragma: - no-cache RequestId: - - 9f8a61f1-b4f0-4d91-8a8b-2c87b3b93507 + - 7e8bc3cf-5e3e-481a-b9e9-56503ca944e3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1891,7 +1502,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -1909,14 +1520,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "ab04aa79-51eb-45b8-8fa6-c96d985f33e7", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "4cd6d74d-347d-445c-898e-2ad658f4ee79", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1925,15 +1537,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '498' + - '2726' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 07 Sep 2025 15:04:31 GMT + - Fri, 22 May 2026 06:08:20 GMT Pragma: - no-cache RequestId: - - 7717e9d0-baf9-4978-a302-084f93dbde07 + - b651ea8e-c505-488f-8bfc-e32550645944 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1941,7 +1553,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -1959,17 +1571,18 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4cd6d74d-347d-445c-898e-2ad658f4ee79/items response: body: - string: '{"value": [{"id": "7516cad0-8441-4fa9-9a10-52a2065aaa63", "type": "SQLEndpoint", - "displayName": "fabcli000002", "description": "", "workspaceId": "ab04aa79-51eb-45b8-8fa6-c96d985f33e7"}, - {"id": "d90a2d5f-1b3d-4645-831a-d8c66446a389", "type": "SparkJobDefinition", - "displayName": "fabcli000001", "workspaceId": - "ab04aa79-51eb-45b8-8fa6-c96d985f33e7"}, {"id": "d788fdbe-3330-488f-aeb2-44daf0964697", - "type": "Lakehouse", "displayName": "fabcli000002", "workspaceId": "ab04aa79-51eb-45b8-8fa6-c96d985f33e7"}]}' + string: '{"value": [{"id": "e2ce29ff-cc06-4bb9-a6b4-82792f0a34ec", "type": "SQLEndpoint", + "displayName": "fabcli000002", "description": "", "workspaceId": "4cd6d74d-347d-445c-898e-2ad658f4ee79"}, + {"id": "6656abf0-4f1b-4f39-870c-20895ab91708", "type": "SparkJobDefinition", + "displayName": "fabcli000001", "description": "Spark job definition", "workspaceId": + "4cd6d74d-347d-445c-898e-2ad658f4ee79"}, {"id": "d9674c35-e758-438c-aab1-058311cbbb81", + "type": "Lakehouse", "displayName": "fabcli000002", "description": "", "workspaceId": + "4cd6d74d-347d-445c-898e-2ad658f4ee79"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1978,15 +1591,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '289' + - '281' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 07 Sep 2025 15:04:31 GMT + - Fri, 22 May 2026 06:08:22 GMT Pragma: - no-cache RequestId: - - bd640a37-ce66-4e53-b513-fdf23e94cc1a + - 90f2eddd-cc94-4e93-b7cf-2da1f97d804f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1994,7 +1607,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -2014,9 +1627,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/items/d788fdbe-3330-488f-aeb2-44daf0964697 + uri: https://api.fabric.microsoft.com/v1/workspaces/4cd6d74d-347d-445c-898e-2ad658f4ee79/items/d9674c35-e758-438c-aab1-058311cbbb81 response: body: string: '' @@ -2032,11 +1645,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Sun, 07 Sep 2025 15:04:31 GMT + - Fri, 22 May 2026 06:08:23 GMT Pragma: - no-cache RequestId: - - 3a3a99f4-4bf3-41d5-b94d-c3aa1428ae18 + - 2693ba9d-3e2b-4367-9ffb-b7ee99ef2490 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2044,7 +1657,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -2062,14 +1675,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "ab04aa79-51eb-45b8-8fa6-c96d985f33e7", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "4cd6d74d-347d-445c-898e-2ad658f4ee79", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2078,15 +1692,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '498' + - '2726' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 07 Sep 2025 15:04:31 GMT + - Fri, 22 May 2026 06:08:23 GMT Pragma: - no-cache RequestId: - - 8b6b3dbb-89eb-4193-bfb1-188da799e2e7 + - f1807f90-bfb5-420b-b186-977ea57be9d1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2094,7 +1708,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -2112,14 +1726,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4cd6d74d-347d-445c-898e-2ad658f4ee79/items response: body: - string: '{"value": [{"id": "d90a2d5f-1b3d-4645-831a-d8c66446a389", "type": "SparkJobDefinition", - "displayName": "fabcli000001", "workspaceId": - "ab04aa79-51eb-45b8-8fa6-c96d985f33e7"}]}' + string: '{"value": [{"id": "6656abf0-4f1b-4f39-870c-20895ab91708", "type": "SparkJobDefinition", + "displayName": "fabcli000001", "description": "Spark job definition", "workspaceId": + "4cd6d74d-347d-445c-898e-2ad658f4ee79"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2128,15 +1742,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '186' + - '183' Content-Type: - application/json; charset=utf-8 Date: - - Sun, 07 Sep 2025 15:04:31 GMT + - Fri, 22 May 2026 06:08:24 GMT Pragma: - no-cache RequestId: - - 052607ed-c7ef-46b7-a6ce-f42c62afa7da + - add074ad-2e3f-4962-8a60-211cbc89bd1f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2144,7 +1758,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -2164,9 +1778,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/ab04aa79-51eb-45b8-8fa6-c96d985f33e7/items/d90a2d5f-1b3d-4645-831a-d8c66446a389 + uri: https://api.fabric.microsoft.com/v1/workspaces/4cd6d74d-347d-445c-898e-2ad658f4ee79/items/6656abf0-4f1b-4f39-870c-20895ab91708 response: body: string: '' @@ -2182,11 +1796,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Sun, 07 Sep 2025 15:04:31 GMT + - Fri, 22 May 2026 06:08:25 GMT Pragma: - no-cache RequestId: - - b6a7fcef-fc19-4321-94b1-ea13747bafa3 + - d6fb5932-6bdb-4a48-b962-24fb5096363e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2194,7 +1808,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: From 4a3bcb36c98f9d0f8afbb0d15e7257bda7687c45 Mon Sep 17 00:00:00 2001 From: Alex Moraru Date: Fri, 22 May 2026 08:30:43 +0000 Subject: [PATCH 13/14] Re-records failing tests --- .../test_ls/test_ls_capacity_success.yaml | 305 +- .../test_commands/test_mkdir/class_setup.yaml | 82 +- .../test_mkdir_capacity_success.yaml | 822 +- ...st_mkdir_capacity_with_params_success.yaml | 490 +- ...ith_params_automatic_approval_success.yaml | 28185 ++-------------- .../test_rm/test_rm_capacity_success.yaml | 558 +- .../test_commands/test_set/class_setup.yaml | 91 +- ...est_set_capacity_success[sku.name-F4].yaml | 274 +- .../test_set_item_invalid_query_failure.yaml | 115 +- 9 files changed, 4862 insertions(+), 26060 deletions(-) diff --git a/tests/test_commands/recordings/test_commands/test_ls/test_ls_capacity_success.yaml b/tests/test_commands/recordings/test_commands/test_ls/test_ls_capacity_success.yaml index 0fc9d6523..03dfc0d59 100644 --- a/tests/test_commands/recordings/test_commands/test_ls/test_ls_capacity_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_ls/test_ls_capacity_success.yaml @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - 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": "West Europe", "state": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -27,15 +27,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '456' + - '424' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 08 Sep 2025 17:18:29 GMT + - Fri, 22 May 2026 08:22:48 GMT Pragma: - no-cache RequestId: - - f6ac47f6-e1b2-46c3-b00b-f04d89912681 + - 2fac17d8-f18f-4ea6-a8ec-a7953f2c49c9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -43,7 +43,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -60,11 +60,11 @@ interactions: Connection: - keep-alive Content-Length: - - '149' + - '165' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -75,21 +75,21 @@ interactions: "westeurope", "sku": {"name": "F2", "tier": "Fabric"}}' headers: Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/581E88D5-027A-49CE-904F-C3B47FBD6F4D?api-version=2022-07-01-preview&t=638929487123919335&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=n1lJYlPWgSeoR6cht8au7c_qx71dnATXDL4p4smFHRjpB-3zrGiwz69l18QfOKLOt1xtYfZ2--1wr0Z6V_WCkc3hdvPZ9nsEh-32T321-BEcdL1zGwr2RZtUf3oZq_ReLSzCbs_RTYbGe94FAlR-1ii0yf4zaUKaWl-H7PcDnpCCz2AfqT3chwqpFP7rgjdOJVJOFBTcb_-teuKMVX1W9G1ojP362x0-liCrbmVAuI4s7MijNmVqEN4W_7f5cMNglx3gHZ5FDgiF0BBTX6DSge10VWaq3ljFDVztKtA_j8UWLBR_9CLYKGzeNy5n9zQHPyrXC26w5mq9PbZM1TJAtQ&h=lfpa7Ul5duVtMWIwOe3_y2UTj1ML7VaFjwRaQcnPuJg + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/B25A6117-D52B-49A2-8B75-1EC882CE331C?api-version=2022-07-01-preview&t=639150349740970873&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=gthjtIsFoEZPxUIbVc7auwUZR2rvSsVfnxU52G7C9MJ0oNMJ6zSrRGPOqLriL1YrnZorymKJGq0CE9g2ldX6clAaT9scFZp_EFnXuzpTtW0sZY5ezBPXOWKE5i_3m4pjcTpVSnhBRqXgXrzZpncCaH9kY7ORf2c-uIZjh3b6vkok7oQXNzijx74ys-sOEC9WIELa6k5tnMp0X6c7V6fzB3yzN0642HBFpbLzWC1PCsPkveC68HuO1nLIw5BrTBlatyM5-OvHgKqyKp0zP6NQGI8VXmOVR2BxStsOOi9fKXNJO3lLJDD2GXA5J2RK6wS3u_06_mAtC6RB7FOjQeFw1Q&h=DRMwemoOOObyMxR2yq6WSq02YczgBucWZv2LUI78y0w Cache-Control: - no-cache Content-Length: - - '406' + - '422' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 08 Sep 2025 17:18:31 GMT + - Fri, 22 May 2026 08:22:53 GMT Expires: - '-1' Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/581E88D5-027A-49CE-904F-C3B47FBD6F4D?api-version=2022-07-01-preview&t=638929487123919335&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=aOZ5YYEfNKPhVOTi3xPZs2qNymdRGNjAfwBC34i2PUsDX72FmfN72RBzkLDfOWrR2KzjVCrS5bGwXEU-WPXDm8Ns0v-_EY8ffpRPCqb5Rb28_wlaFWb1oVIwhUdZP7Ct4de3eM6whfi8JEV8GpPsiE8U3wHXYAkGKycO0WGifHDrjtKy3IoFX_KCmZJ7jXVH6RPP1GSV1NaER9KlSOCJZY9GXKDn-RdRWml5g0gt8sHR5yMht1j4KClU5bEsgInHtH5bulZQ3u6wIh_OJ8WFeww_WuC8vN11pLMZw7WtHvjZ0gOYHbylQODvZ1V4N_DiV0CgyA3Dn5CFubopBYreMw&h=2cy_1UBqLKaeNvZB0e1jNWS7M8Lf_zxPSZU-OLqZksI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/B25A6117-D52B-49A2-8B75-1EC882CE331C?api-version=2022-07-01-preview&t=639150349740970873&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=PJ-sILySld20m4Xzq4q8IvvrxGBbeV3wWJy1cXOz-G_Fu603pLWrPd3W5kA6O-YqmJhFhxdagEsAnMZ6wTK967gUWVuvKGxo4keldycRWTuKkNo7i12Z-Yhgx09AxsyQmCbRpen6JJz7PnCcCF_5CPj3jzw_HkTboQ1qMlh_VzYfY7PZhMLiyLRppQK6qesRoGKbzkqfHyywDzTi6__P0KAI9XQn4qR2iaYXwA2ohOVhrdjZmpMJuyZUYHmPtlWFw_UeEP8yb_-gfKCtU-UBi7jvEKGLjUMKhVIf8sHUS2Ubrzm_3rsz9OefeUCsOuG_gYmyBfamXZtTjEIY6ZC9-g&h=rg0q-W624RMo2fFOWUrQMjAnKDaHOb9Zm1pzji_rPkI Pragma: - no-cache Strict-Transport-Security: @@ -117,14 +117,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/581E88D5-027A-49CE-904F-C3B47FBD6F4D?api-version=2022-07-01-preview&t=638929487123919335&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=n1lJYlPWgSeoR6cht8au7c_qx71dnATXDL4p4smFHRjpB-3zrGiwz69l18QfOKLOt1xtYfZ2--1wr0Z6V_WCkc3hdvPZ9nsEh-32T321-BEcdL1zGwr2RZtUf3oZq_ReLSzCbs_RTYbGe94FAlR-1ii0yf4zaUKaWl-H7PcDnpCCz2AfqT3chwqpFP7rgjdOJVJOFBTcb_-teuKMVX1W9G1ojP362x0-liCrbmVAuI4s7MijNmVqEN4W_7f5cMNglx3gHZ5FDgiF0BBTX6DSge10VWaq3ljFDVztKtA_j8UWLBR_9CLYKGzeNy5n9zQHPyrXC26w5mq9PbZM1TJAtQ&h=lfpa7Ul5duVtMWIwOe3_y2UTj1ML7VaFjwRaQcnPuJg + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/B25A6117-D52B-49A2-8B75-1EC882CE331C?api-version=2022-07-01-preview&t=639150349740970873&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=gthjtIsFoEZPxUIbVc7auwUZR2rvSsVfnxU52G7C9MJ0oNMJ6zSrRGPOqLriL1YrnZorymKJGq0CE9g2ldX6clAaT9scFZp_EFnXuzpTtW0sZY5ezBPXOWKE5i_3m4pjcTpVSnhBRqXgXrzZpncCaH9kY7ORf2c-uIZjh3b6vkok7oQXNzijx74ys-sOEC9WIELa6k5tnMp0X6c7V6fzB3yzN0642HBFpbLzWC1PCsPkveC68HuO1nLIw5BrTBlatyM5-OvHgKqyKp0zP6NQGI8VXmOVR2BxStsOOi9fKXNJO3lLJDD2GXA5J2RK6wS3u_06_mAtC6RB7FOjQeFw1Q&h=DRMwemoOOObyMxR2yq6WSq02YczgBucWZv2LUI78y0w response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/581E88D5-027A-49CE-904F-C3B47FBD6F4D", - "name": "581E88D5-027A-49CE-904F-C3B47FBD6F4D", "status": "Succeeded", "startTime": - "2025-09-08T17:18:31.6500000Z", "endTime": "2025-09-08T17:18:34.1500000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/B25A6117-D52B-49A2-8B75-1EC882CE331C", + "name": "B25A6117-D52B-49A2-8B75-1EC882CE331C", "status": "Succeeded", "startTime": + "2026-05-22T08:22:52.8870000Z", "endTime": "2026-05-22T08:22:56.4130000Z"}' headers: Cache-Control: - no-cache @@ -135,7 +135,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 08 Sep 2025 17:18:42 GMT + - Fri, 22 May 2026 08:23:04 GMT Expires: - '-1' Pragma: @@ -165,15 +165,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - 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": "West Europe", "state": - "Active"}, {"id": "7b990fd4-4aec-4418-b3bc-4f91779d24bb", "displayName": "fabcli000001", - "sku": "F2", "region": "West Europe", "state": "Active"}]}' + string: '{"value": [{"id": "9e7392a9-d8fe-484e-81ce-6bea71bccc98", "displayName": + "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}, + {"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", + "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -182,15 +182,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '491' + - '459' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 08 Sep 2025 17:18:48 GMT + - Fri, 22 May 2026 08:23:09 GMT Pragma: - no-cache RequestId: - - 22b3c93f-a81c-46d8-accc-a6c941358d95 + - bec7bb94-0ca4-4828-8eb7-41e0785c4e7e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -198,7 +198,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -216,15 +216,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - 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": "West Europe", "state": - "Active"}, {"id": "7b990fd4-4aec-4418-b3bc-4f91779d24bb", "displayName": "fabcli000001", - "sku": "F2", "region": "West Europe", "state": "Active"}]}' + string: '{"value": [{"id": "9e7392a9-d8fe-484e-81ce-6bea71bccc98", "displayName": + "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}, + {"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", + "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -233,15 +233,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '491' + - '458' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 08 Sep 2025 17:18:51 GMT + - Fri, 22 May 2026 08:23:14 GMT Pragma: - no-cache RequestId: - - 873534b8-0de4-4c75-8bfe-54c2f64de9c2 + - 5d8a0c8d-b5fa-46b6-b715-ede678fbbf5e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -249,7 +249,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -267,14 +267,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - 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": "West Europe", "state": - "Active"}, {"id": "7b990fd4-4aec-4418-b3bc-4f91779d24bb", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "9e7392a9-d8fe-484e-81ce-6bea71bccc98", "displayName": "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -284,15 +284,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '491' + - '460' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 08 Sep 2025 17:18:55 GMT + - Fri, 22 May 2026 08:23:20 GMT Pragma: - no-cache RequestId: - - af576a19-aca1-46eb-9d7c-69e0e9a045fa + - a554c722-8fe1-4b43-9846-b2392714a373 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -300,7 +300,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -318,14 +318,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - 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": "West Europe", "state": - "Active"}, {"id": "7b990fd4-4aec-4418-b3bc-4f91779d24bb", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "9e7392a9-d8fe-484e-81ce-6bea71bccc98", "displayName": "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -335,15 +335,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '491' + - '460' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 08 Sep 2025 17:19:01 GMT + - Fri, 22 May 2026 08:23:25 GMT Pragma: - no-cache RequestId: - - 62beb811-34ba-4b39-bc51-522ed184b4db + - 264bc4bc-2af6-4203-bba2-a6fe398c3c91 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -351,7 +351,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -369,7 +369,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions?api-version=2022-12-01 response: @@ -380,11 +380,11 @@ interactions: Cache-Control: - no-cache Content-Length: - - '479' + - '469' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 08 Sep 2025 17:19:02 GMT + - Fri, 22 May 2026 08:23:26 GMT Expires: - '-1' Pragma: @@ -410,16 +410,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/capacities?api-version=2023-11-01 response: body: string: '{"value": [{"properties": {"provisioningState": "Succeeded", "state": - "Active", "administration": {"members": ["mocked@admin_test_user"]}}, "id": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/mocked_fabriccli_capacity_name", + "Active", "administration": {"members": ["mocked@admin_test_user", "4fdd0762-85fe-4f8b-90dc-776e8605e0b9"]}}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/mocked_fabriccli_capacity_name", "name": "mocked_fabriccli_capacity_name", "type": "Microsoft.Fabric/capacities", - "location": "West Europe", "sku": {"name": "F16", "tier": "Fabric"}, "tags": + "location": "Central US", "sku": {"name": "F16", "tier": "Fabric"}, "tags": {}}, {"properties": {"provisioningState": "Succeeded", "state": "Active", "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": @@ -428,13 +428,11 @@ interactions: Cache-Control: - no-cache Content-Length: - - '2480' - Content-Security-Policy: - - script-src 'self' + - '2562' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 08 Sep 2025 17:19:01 GMT + - Fri, 22 May 2026 08:23:28 GMT Expires: - '-1' Pragma: @@ -445,10 +443,6 @@ interactions: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block status: code: 200 message: OK @@ -464,14 +458,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - 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": "West Europe", "state": - "Active"}, {"id": "7b990fd4-4aec-4418-b3bc-4f91779d24bb", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "9e7392a9-d8fe-484e-81ce-6bea71bccc98", "displayName": "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -481,15 +475,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '491' + - '461' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 08 Sep 2025 17:19:04 GMT + - Fri, 22 May 2026 08:23:32 GMT Pragma: - no-cache RequestId: - - a3d53d9a-3769-407f-a06f-d3fbbad3f147 + - a27e479d-b662-4a5b-a83c-7b01749b5739 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -497,7 +491,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -515,22 +509,22 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions?api-version=2022-12-01 + uri: https://management.azure.com/subscriptions/placeholder/resourceGroups/placeholder/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: body: - string: '{"value": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000"}], - "count": {"type": "Total", "value": 1}}' + string: '{"error": {"code": "InvalidSubscriptionId", "message": "The provided + subscription identifier ''placeholder'' is malformed or invalid."}}' headers: Cache-Control: - no-cache Content-Length: - - '479' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 08 Sep 2025 17:19:05 GMT + - Fri, 22 May 2026 08:23:33 GMT Expires: - '-1' Pragma: @@ -542,8 +536,8 @@ interactions: X-Content-Type-Options: - nosniff status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: body: null headers: @@ -556,31 +550,22 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/capacities?api-version=2023-11-01 + uri: https://management.azure.com/subscriptions?api-version=2022-12-01 response: body: - string: '{"value": [{"properties": {"provisioningState": "Succeeded", "state": - "Active", "administration": {"members": ["mocked@admin_test_user"]}}, "id": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/mocked_fabriccli_capacity_name", - "name": "mocked_fabriccli_capacity_name", "type": "Microsoft.Fabric/capacities", - "location": "West Europe", "sku": {"name": "F16", "tier": "Fabric"}, "tags": - {}}, {"properties": {"provisioningState": "Succeeded", "state": "Active", - "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", - "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": - "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}]}' + string: '{"value": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000"}], + "count": {"type": "Total", "value": 1}}' headers: Cache-Control: - no-cache Content-Length: - - '2480' - Content-Security-Policy: - - script-src 'self' + - '469' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 08 Sep 2025 17:19:07 GMT + - Fri, 22 May 2026 08:23:34 GMT Expires: - '-1' Pragma: @@ -591,10 +576,6 @@ interactions: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block status: code: 200 message: OK @@ -607,78 +588,32 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '0' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 - response: - body: - string: '' - headers: - Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/F82FAFAE-4EB3-4AB1-ADE4-0923DBE5B52D?api-version=2022-07-01-preview&t=638929487482921551&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=ZAHNX90_yF7NEzmbKFd0v_Nlk2VDf5mPY8hPPUOU4cpK-WHKQjEJjb6Z7yn_uTLB7InFJm3FuFxN7dU9iIZMj0CAwQXmolVnMdQfQUky19FTiBWwrWkbesJUXxUYQUTJ9OHsXvYUdSOmmylB0chojzHtrUa2AD-C8wJBhNTB8TgToxsq6PPkpEsoM2VBQcNRr_zytsEuEIqi8YFA2OfVff5eaqDzaZFuHYF3pUZsaRQxImgpO1WhRbnR4ZyfeCF-vGAmlqQgvehbRl5JboVypiE3-BqEb9Yx9CjbRdNBUrmYZFfz1faq2H75yXjLC6WbVQ83rqU0FfYUdeS9bhLEEA&h=aYVSZdPc8G5V-73-388G2rDI0jPC8MIKTl9bysZ_WlQ - Cache-Control: - - no-cache - Content-Length: - - '0' - Content-Security-Policy: - - script-src 'self' - Date: - - Mon, 08 Sep 2025 17:19:08 GMT - Expires: - - '-1' - Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/F82FAFAE-4EB3-4AB1-ADE4-0923DBE5B52D?api-version=2022-07-01-preview&t=638929487482921551&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=bohfTiQU4_GJ9US77Z_FK3zt_DM4I3TlhnWzOCu-wdKjaBupUWACI4uNn7eDf4NkQlMAHeC_ZbCQXlPh6BAMyD-I5x4Vm9tvIqh1eyciZ3dB7qzH65q7KNYQxfH2u2nq_f8xacVYYxTEajHS32bpZF55SfaiAwZ8RC9ETy3d28Mq_D9NN2WUIzoymb0yIejNnL05SSu6BqNYfeR7IhYfDnR9RTtPJL7nGGZ_3QPuLZ4Nh22XSIgIPFhTHcQ70CK_mRU7nOqKxzpLub0HVT-IGgqZA6-L89Tv_k-1ndHcpT2fZJqta23VvHdw9hu6MeJHBN98qAMiu7Urb1XR0Nt4ig&h=VTJPg_1DdR02voGl3A89Q1jhnu5wJq8L3pDKPunOCcU - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - 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.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/F82FAFAE-4EB3-4AB1-ADE4-0923DBE5B52D?api-version=2022-07-01-preview&t=638929487482921551&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=ZAHNX90_yF7NEzmbKFd0v_Nlk2VDf5mPY8hPPUOU4cpK-WHKQjEJjb6Z7yn_uTLB7InFJm3FuFxN7dU9iIZMj0CAwQXmolVnMdQfQUky19FTiBWwrWkbesJUXxUYQUTJ9OHsXvYUdSOmmylB0chojzHtrUa2AD-C8wJBhNTB8TgToxsq6PPkpEsoM2VBQcNRr_zytsEuEIqi8YFA2OfVff5eaqDzaZFuHYF3pUZsaRQxImgpO1WhRbnR4ZyfeCF-vGAmlqQgvehbRl5JboVypiE3-BqEb9Yx9CjbRdNBUrmYZFfz1faq2H75yXjLC6WbVQ83rqU0FfYUdeS9bhLEEA&h=aYVSZdPc8G5V-73-388G2rDI0jPC8MIKTl9bysZ_WlQ + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/capacities?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/F82FAFAE-4EB3-4AB1-ADE4-0923DBE5B52D", - "name": "F82FAFAE-4EB3-4AB1-ADE4-0923DBE5B52D", "status": "Deleting", "startTime": - "2025-09-08T17:19:07.6970000Z"}' + string: '{"value": [{"properties": {"provisioningState": "Succeeded", "state": + "Active", "administration": {"members": ["mocked@admin_test_user", "4fdd0762-85fe-4f8b-90dc-776e8605e0b9"]}}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/mocked_fabriccli_capacity_name", + "name": "mocked_fabriccli_capacity_name", "type": "Microsoft.Fabric/capacities", + "location": "Central US", "sku": {"name": "F16", "tier": "Fabric"}, "tags": + {}}, {"properties": {"provisioningState": "Succeeded", "state": "Active", + "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", + "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": + "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}]}' headers: Cache-Control: - no-cache Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' + - '2562' Content-Type: - application/json; charset=utf-8 Date: - - Mon, 08 Sep 2025 17:19:18 GMT + - Fri, 22 May 2026 08:23:35 GMT Expires: - '-1' Pragma: @@ -689,10 +624,6 @@ interactions: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block status: code: 200 message: OK @@ -705,30 +636,32 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Length: + - '0' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/F82FAFAE-4EB3-4AB1-ADE4-0923DBE5B52D?api-version=2022-07-01-preview&t=638929487482921551&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=ZAHNX90_yF7NEzmbKFd0v_Nlk2VDf5mPY8hPPUOU4cpK-WHKQjEJjb6Z7yn_uTLB7InFJm3FuFxN7dU9iIZMj0CAwQXmolVnMdQfQUky19FTiBWwrWkbesJUXxUYQUTJ9OHsXvYUdSOmmylB0chojzHtrUa2AD-C8wJBhNTB8TgToxsq6PPkpEsoM2VBQcNRr_zytsEuEIqi8YFA2OfVff5eaqDzaZFuHYF3pUZsaRQxImgpO1WhRbnR4ZyfeCF-vGAmlqQgvehbRl5JboVypiE3-BqEb9Yx9CjbRdNBUrmYZFfz1faq2H75yXjLC6WbVQ83rqU0FfYUdeS9bhLEEA&h=aYVSZdPc8G5V-73-388G2rDI0jPC8MIKTl9bysZ_WlQ + - ms-fabric-cli-test/1.6.1 + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/F82FAFAE-4EB3-4AB1-ADE4-0923DBE5B52D", - "name": "F82FAFAE-4EB3-4AB1-ADE4-0923DBE5B52D", "status": "Deleting", "startTime": - "2025-09-08T17:19:07.6970000Z"}' + string: '' headers: + Azure-AsyncOperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/71AF238A-A883-45C2-BCA4-CD734272E4C2?api-version=2022-07-01-preview&t=639150350176231557&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=gahHYJsnDW-pU0g5x6JRXuDyuz2bGqiSKkAgzQKNseWXlaBfPSdgrZFvgZ9TP9_TRdBuuuDk98icHB4h_6x8tgzbC4pjUIR_RFDEDUMQ4A6vpB5VeuCELwnR0sfp3Jskp8xdZsKREk9bMCA46zE2zSxeDK_vQRdqXuTzJw44N8_gsE_dsgSKhtuPK_eclgaFsxd1SlTLO0pNHndijcCHVKejtFFsWwX8KjRdHvx07gew-mY6t3fACU2J3MJ7GIiwAG8RCK_uQ3eKWNr-nuKaoIUZtj21FiCdgqJ6UNesctszxHo_e31b9jgz2dh_FHb2U8eQCCIyPGd4RNlDHkO7MQ&h=YGJqlKF2bhkn-LNjdU6STF6oN8Q0tcrKib10Hc0z6MA Cache-Control: - no-cache Content-Length: - - '245' + - '0' Content-Security-Policy: - script-src 'self' - Content-Type: - - application/json; charset=utf-8 Date: - - Mon, 08 Sep 2025 17:19:28 GMT + - Fri, 22 May 2026 08:23:36 GMT Expires: - '-1' + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/71AF238A-A883-45C2-BCA4-CD734272E4C2?api-version=2022-07-01-preview&t=639150350176231557&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=uk4pNTCfQLp3Q-XLxMHuW1I-r3v8ii33zvRZvhhxG0RxquRUd9ts_sd0AIib4pmYVgvRZmHxG9QmoVEluoKi1N5dgK3alDb49uuNJifN76MkG5vNPUUzqVZP62P0z6qU07ir8MrsuRDOUhKghUKLD-UbCxAnVi6nRRfiTmWZXOSI8-kV9dlpfiINoxEv6SrEpsS6_OMSX0EbaHgLVreuVUzGIo9OpBTdMeJaVCBd5WWQFQ986-RKjYQ5q_ObCEO_eGGJaYu0n4O6OHZLbuE7YQ3EcyyNc3BVlBADkGgQkmVgOFznNWv8T_M4wRQMMMHqcUDhn1RZs-ooyhQimWD4qA&h=LANLN-v-jP7R04zu9aVkH0UNY_YEKIXH8pbl3NGNOLE Pragma: - no-cache Strict-Transport-Security: @@ -742,8 +675,8 @@ interactions: X-XSS-Protection: - 1; mode=block status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -756,14 +689,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/F82FAFAE-4EB3-4AB1-ADE4-0923DBE5B52D?api-version=2022-07-01-preview&t=638929487482921551&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=ZAHNX90_yF7NEzmbKFd0v_Nlk2VDf5mPY8hPPUOU4cpK-WHKQjEJjb6Z7yn_uTLB7InFJm3FuFxN7dU9iIZMj0CAwQXmolVnMdQfQUky19FTiBWwrWkbesJUXxUYQUTJ9OHsXvYUdSOmmylB0chojzHtrUa2AD-C8wJBhNTB8TgToxsq6PPkpEsoM2VBQcNRr_zytsEuEIqi8YFA2OfVff5eaqDzaZFuHYF3pUZsaRQxImgpO1WhRbnR4ZyfeCF-vGAmlqQgvehbRl5JboVypiE3-BqEb9Yx9CjbRdNBUrmYZFfz1faq2H75yXjLC6WbVQ83rqU0FfYUdeS9bhLEEA&h=aYVSZdPc8G5V-73-388G2rDI0jPC8MIKTl9bysZ_WlQ + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/71AF238A-A883-45C2-BCA4-CD734272E4C2?api-version=2022-07-01-preview&t=639150350176231557&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=gahHYJsnDW-pU0g5x6JRXuDyuz2bGqiSKkAgzQKNseWXlaBfPSdgrZFvgZ9TP9_TRdBuuuDk98icHB4h_6x8tgzbC4pjUIR_RFDEDUMQ4A6vpB5VeuCELwnR0sfp3Jskp8xdZsKREk9bMCA46zE2zSxeDK_vQRdqXuTzJw44N8_gsE_dsgSKhtuPK_eclgaFsxd1SlTLO0pNHndijcCHVKejtFFsWwX8KjRdHvx07gew-mY6t3fACU2J3MJ7GIiwAG8RCK_uQ3eKWNr-nuKaoIUZtj21FiCdgqJ6UNesctszxHo_e31b9jgz2dh_FHb2U8eQCCIyPGd4RNlDHkO7MQ&h=YGJqlKF2bhkn-LNjdU6STF6oN8Q0tcrKib10Hc0z6MA response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/F82FAFAE-4EB3-4AB1-ADE4-0923DBE5B52D", - "name": "F82FAFAE-4EB3-4AB1-ADE4-0923DBE5B52D", "status": "Deleting", "startTime": - "2025-09-08T17:19:07.6970000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/71AF238A-A883-45C2-BCA4-CD734272E4C2", + "name": "71AF238A-A883-45C2-BCA4-CD734272E4C2", "status": "Deleting", "startTime": + "2026-05-22T08:23:37.0470000Z"}' headers: Cache-Control: - no-cache @@ -774,7 +707,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 08 Sep 2025 17:19:38 GMT + - Fri, 22 May 2026 08:23:48 GMT Expires: - '-1' Pragma: @@ -804,14 +737,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.1.0.rc2 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/F82FAFAE-4EB3-4AB1-ADE4-0923DBE5B52D?api-version=2022-07-01-preview&t=638929487482921551&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=ZAHNX90_yF7NEzmbKFd0v_Nlk2VDf5mPY8hPPUOU4cpK-WHKQjEJjb6Z7yn_uTLB7InFJm3FuFxN7dU9iIZMj0CAwQXmolVnMdQfQUky19FTiBWwrWkbesJUXxUYQUTJ9OHsXvYUdSOmmylB0chojzHtrUa2AD-C8wJBhNTB8TgToxsq6PPkpEsoM2VBQcNRr_zytsEuEIqi8YFA2OfVff5eaqDzaZFuHYF3pUZsaRQxImgpO1WhRbnR4ZyfeCF-vGAmlqQgvehbRl5JboVypiE3-BqEb9Yx9CjbRdNBUrmYZFfz1faq2H75yXjLC6WbVQ83rqU0FfYUdeS9bhLEEA&h=aYVSZdPc8G5V-73-388G2rDI0jPC8MIKTl9bysZ_WlQ + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/71AF238A-A883-45C2-BCA4-CD734272E4C2?api-version=2022-07-01-preview&t=639150350176231557&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=gahHYJsnDW-pU0g5x6JRXuDyuz2bGqiSKkAgzQKNseWXlaBfPSdgrZFvgZ9TP9_TRdBuuuDk98icHB4h_6x8tgzbC4pjUIR_RFDEDUMQ4A6vpB5VeuCELwnR0sfp3Jskp8xdZsKREk9bMCA46zE2zSxeDK_vQRdqXuTzJw44N8_gsE_dsgSKhtuPK_eclgaFsxd1SlTLO0pNHndijcCHVKejtFFsWwX8KjRdHvx07gew-mY6t3fACU2J3MJ7GIiwAG8RCK_uQ3eKWNr-nuKaoIUZtj21FiCdgqJ6UNesctszxHo_e31b9jgz2dh_FHb2U8eQCCIyPGd4RNlDHkO7MQ&h=YGJqlKF2bhkn-LNjdU6STF6oN8Q0tcrKib10Hc0z6MA response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/F82FAFAE-4EB3-4AB1-ADE4-0923DBE5B52D", - "name": "F82FAFAE-4EB3-4AB1-ADE4-0923DBE5B52D", "status": "Succeeded", "startTime": - "2025-09-08T17:19:07.6970000Z", "endTime": "2025-09-08T17:19:47.3070000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/71AF238A-A883-45C2-BCA4-CD734272E4C2", + "name": "71AF238A-A883-45C2-BCA4-CD734272E4C2", "status": "Succeeded", "startTime": + "2026-05-22T08:23:37.0470000Z", "endTime": "2026-05-22T08:23:52.6570000Z"}' headers: Cache-Control: - no-cache @@ -822,7 +755,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Mon, 08 Sep 2025 17:19:48 GMT + - Fri, 22 May 2026 08:23:58 GMT Expires: - '-1' Pragma: 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 cb319197e..052a0646e 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.5.0 (None; Linux/6.6.87.2-microsoft-standard-WSL2; Python/3.12.11) + - 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: @@ -26,15 +26,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2278' + - '2726' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 11:46:20 GMT + - Fri, 22 May 2026 08:29:25 GMT Pragma: - no-cache RequestId: - - 26225eea-eb98-4cad-b729-7965dc7fdd23 + - b2409706-1281-4d93-a9c3-e6040d02b2fc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -60,7 +60,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (None; Linux/6.6.87.2-microsoft-standard-WSL2; Python/3.12.11) + - 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: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2278' + - '2726' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 11:46:21 GMT + - Fri, 22 May 2026 08:29:25 GMT Pragma: - no-cache RequestId: - - 55374215-771b-4e94-a564-837f01d4323a + - 0f0822cc-b975-4816-8775-5f94e971ceb5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,7 +109,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (None; Linux/6.6.87.2-microsoft-standard-WSL2; Python/3.12.11) + - 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/capacities response: @@ -125,15 +125,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 11:46:23 GMT + - Fri, 22 May 2026 08:29:30 GMT Pragma: - no-cache RequestId: - - ab47ed35-7824-40fd-a1da-1973fba27129 + - 1888c817-8686-48c3-bfcf-259b8eb60e9c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -162,12 +162,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (None; Linux/6.6.87.2-microsoft-standard-WSL2; Python/3.12.11) + - ms-fabric-cli/1.6.1 (mkdir; Linux/6.12.76-linuxkit; Python/3.12.11) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "6640875f-c375-4a08-a183-18ee3f334402", "displayName": "fabriccli_WorkspacePerTestclass_000001", + string: '{"id": "a71d9595-9e5a-4a56-82d2-02c2f80f245f", "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' + - '175' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 11:46:33 GMT + - Fri, 22 May 2026 08:29:39 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/6640875f-c375-4a08-a183-18ee3f334402 + - https://api.fabric.microsoft.com/v1/workspaces/a71d9595-9e5a-4a56-82d2-02c2f80f245f Pragma: - no-cache RequestId: - - 8d8517a0-ffce-4eda-a178-74403875b2c8 + - 657b3935-c16e-4d48-b0e9-c7ad994734fd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -213,13 +213,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (mkdir; Linux/6.6.87.2-microsoft-standard-WSL2; Python/3.12.11) + - 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": "6640875f-c375-4a08-a183-18ee3f334402", + "My workspace", "description": "", "type": "Personal"}, {"id": "a71d9595-9e5a-4a56-82d2-02c2f80f245f", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: @@ -230,15 +230,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2312' + - '2762' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 11:47:24 GMT + - Fri, 22 May 2026 08:29:49 GMT Pragma: - no-cache RequestId: - - 0aad3457-56eb-4034-a4bf-36fde921e854 + - c00b07e4-54b8-4b25-96f6-55bda58642dc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -264,9 +264,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (mkdir; Linux/6.6.87.2-microsoft-standard-WSL2; Python/3.12.11) + - 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/6640875f-c375-4a08-a183-18ee3f334402/items + uri: https://api.fabric.microsoft.com/v1/workspaces/a71d9595-9e5a-4a56-82d2-02c2f80f245f/items response: body: string: '{"value": []}' @@ -282,11 +282,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 11:47:24 GMT + - Fri, 22 May 2026 08:29:49 GMT Pragma: - no-cache RequestId: - - 8f7f3b70-69d3-49f1-9c85-e27d93c1b1a2 + - 0d500524-ed84-4053-83e0-3bf4614a7189 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -314,31 +314,33 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (mkdir; Linux/6.6.87.2-microsoft-standard-WSL2; Python/3.12.11) + - 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/6640875f-c375-4a08-a183-18ee3f334402 + uri: https://api.fabric.microsoft.com/v1/workspaces/a71d9595-9e5a-4a56-82d2-02c2f80f245f response: body: - string: '' + string: '{"requestId": "53a6bf20-d820-488c-8fe5-4e3b904e5622", "errorCode": + "WorkspaceContainsManagedEndpoints", "message": "The workspace cannot be deleted + because it contains one or more managed endpoints", "isRetriable": false, + "relatedResource": {"resourceId": "a71d9595-9e5a-4a56-82d2-02c2f80f245f", + "resourceType": "Workspace"}}' 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 + - application/json; charset=utf-8 Date: - - Thu, 23 Apr 2026 11:47:24 GMT + - Fri, 22 May 2026 08:29:50 GMT Pragma: - no-cache RequestId: - - 520b135b-476d-474f-b3a7-dec5956e044a + - 53a6bf20-d820-488c-8fe5-4e3b904e5622 Strict-Transport-Security: - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked X-Content-Type-Options: - nosniff X-Frame-Options: @@ -347,7 +349,9 @@ interactions: - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' + x-ms-public-api-error-code: + - WorkspaceContainsManagedEndpoints status: - code: 200 - message: OK + code: 400 + message: Bad Request version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_capacity_success.yaml b/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_capacity_success.yaml index 350618d1e..35403d07f 100644 --- a/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_capacity_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_capacity_success.yaml @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -27,15 +27,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '456' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:39:14 GMT + - Fri, 22 May 2026 08:25:20 GMT Pragma: - no-cache RequestId: - - bbe054c1-e6ee-4089-be43-b86f57d535b7 + - 09d8940d-beb3-46a1-b0e3-bc5b5af0c4c0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -43,7 +43,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -60,11 +60,11 @@ interactions: Connection: - keep-alive Content-Length: - - '149' + - '165' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -75,21 +75,21 @@ interactions: "westeurope", "sku": {"name": "F2", "tier": "Fabric"}}' headers: Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/C0B6FF02-AE82-4A97-B8BF-24318798E4EC?api-version=2022-07-01-preview&t=638924783567903124&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=Br6S2WB6I8TGVJNA31BsIpM0aY3U0mggWPjOZTuxprQKJScAsMNUE1E2VaI_cLBh57N3wmFw473NViTCYDxsiLxIqj-j8olLgDMvKH49fSn5X_HcgVotku7SHbziLe-NjZuomkqBok4jHRSfnyW8cChe6QDmehtrM66oA9ZI_RnnAeybAxKJHGix1xCsKj0hTUsPxEhRM9rOMqO5Lg5J-ZtL7e7wuo7c11-QSd0CPO5z1V5fXdc-7WB8x-VxCMMtQ6EQNsGioouKFaeIOV8NmS6yayADMpSxEbQHulCDpdWm_jNHKz89iwX9gumj0_Y4SB6YcKyNIx0JVFRFvWGK_A&h=uZjrCcW9YANyzQaImRHvGxTSE9yFC_ETT75S0gw917s + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/ACA9DBBF-AF95-4DAA-8A2F-2AE6EC5E2B70?api-version=2022-07-01-preview&t=639150351257814394&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=j7f2kXuWLiu2bxqqVVV65ZAtovA8hBtcYb1YNpVT8sy0ElDET5Kr0vgXqJQYcVCoOFrukSGMMIqp3bjR4XzwXeRD5coiG5lxbUslDGJZ4DexDbqsIm28J0oNhdef8q0mbXKiIqem8vA1zsCcFYG7FGYy1l0IsvYzbDFwoESYBVUMK5jzlButZb7DBkqqUwhm5Hf_UCZ96NNWjincxOPMqnYyBN3VKVSOc9Y9MxELOo-jaNNiqMUi0ZOwMAt2klGdHCtui0lTlLO4q8OQJp5L2RvleFAqiefRre_va9lCGnn-5RLFaRcK7AD9ykrNyGQitcZPbhB0pJUFjbd_dxoJlw&h=lKkcjymYG5dkFJHLjBt8bWFVKp7uWbBMfgYXvRAZDvQ Cache-Control: - no-cache Content-Length: - - '406' + - '422' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:39:16 GMT + - Fri, 22 May 2026 08:25:25 GMT Expires: - '-1' Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/C0B6FF02-AE82-4A97-B8BF-24318798E4EC?api-version=2022-07-01-preview&t=638924783567903124&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=Bvnn02El-Qzyovq11ZTWR68tLObCxMgwS38BBWvtFtCIDLjnliPd_mySeRbZSZ0IUrc0Ro_a6h0ePF3LiEU2GacWkdePj8cYYNSTqVpxzlOyyex9wmgQbveQRw8xAxE6qozM88xjWpxVtxlAgOwSftrEfpbwZiPa96DZr24KQyWz20wZHIiqe5Sq8Yd7RIXCuuBr2RF7YAcATrB8Tv5YB102zMF8P5NlvceYz52DKQXBtzcDzLjpAQDFPjo9Jp4QYM8Hpuu6trdzngwSYHzzdBz8DZRkJI0ojbwIEUF8wJG31_CCriMcqfdx6pLfuRziUllsFQ7stBRmpXUziyX3Cg&h=Ltvyh2wTCFtDbDKX-UgFWTsRkkFk_iHzz7Y3_lyyF5w + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/ACA9DBBF-AF95-4DAA-8A2F-2AE6EC5E2B70?api-version=2022-07-01-preview&t=639150351257814394&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=m1TF-vTYZwOiEb4EKCbP1MJihb-d3JWaZbSyaL8kz05s73rPQPxkHXB2GI5GDO5B9v43bNXf5DFLwBVTsNdXXpl85f2_UoufBhF-6mOPv6Bwai0fgTCBGZJBDZIaV4gUZqCcWPJyp8ZxLYPwjRRzQrlbvJujhbprbjkzqGZKugymIc8NeIO9V2SQuJHW5cUQbd008jbEYCTwm7dPtNKjxqOdT8h26BlK8yypJm5d-vrBUubbJb89LNvP1QxhfjFeTBfZxTHxqx0PCOf-jhQartOlcmShBjWxfQqHu6cEiSr_-8cdP9FLlnga9ddVlLmx6xRfhJ8VqtpcXCUvYb35Xw&h=_Tp3skKxd2HscdnsNRGEfCVmP3gOMakneRg-jQReCHE Pragma: - no-cache Strict-Transport-Security: @@ -117,25 +117,376 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/C0B6FF02-AE82-4A97-B8BF-24318798E4EC?api-version=2022-07-01-preview&t=638924783567903124&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=Br6S2WB6I8TGVJNA31BsIpM0aY3U0mggWPjOZTuxprQKJScAsMNUE1E2VaI_cLBh57N3wmFw473NViTCYDxsiLxIqj-j8olLgDMvKH49fSn5X_HcgVotku7SHbziLe-NjZuomkqBok4jHRSfnyW8cChe6QDmehtrM66oA9ZI_RnnAeybAxKJHGix1xCsKj0hTUsPxEhRM9rOMqO5Lg5J-ZtL7e7wuo7c11-QSd0CPO5z1V5fXdc-7WB8x-VxCMMtQ6EQNsGioouKFaeIOV8NmS6yayADMpSxEbQHulCDpdWm_jNHKz89iwX9gumj0_Y4SB6YcKyNIx0JVFRFvWGK_A&h=uZjrCcW9YANyzQaImRHvGxTSE9yFC_ETT75S0gw917s + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/ACA9DBBF-AF95-4DAA-8A2F-2AE6EC5E2B70?api-version=2022-07-01-preview&t=639150351257814394&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=j7f2kXuWLiu2bxqqVVV65ZAtovA8hBtcYb1YNpVT8sy0ElDET5Kr0vgXqJQYcVCoOFrukSGMMIqp3bjR4XzwXeRD5coiG5lxbUslDGJZ4DexDbqsIm28J0oNhdef8q0mbXKiIqem8vA1zsCcFYG7FGYy1l0IsvYzbDFwoESYBVUMK5jzlButZb7DBkqqUwhm5Hf_UCZ96NNWjincxOPMqnYyBN3VKVSOc9Y9MxELOo-jaNNiqMUi0ZOwMAt2klGdHCtui0lTlLO4q8OQJp5L2RvleFAqiefRre_va9lCGnn-5RLFaRcK7AD9ykrNyGQitcZPbhB0pJUFjbd_dxoJlw&h=lKkcjymYG5dkFJHLjBt8bWFVKp7uWbBMfgYXvRAZDvQ response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/C0B6FF02-AE82-4A97-B8BF-24318798E4EC", - "name": "C0B6FF02-AE82-4A97-B8BF-24318798E4EC", "status": "Provisioning", - "startTime": "2025-09-03T06:39:15.9570000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/ACA9DBBF-AF95-4DAA-8A2F-2AE6EC5E2B70", + "name": "ACA9DBBF-AF95-4DAA-8A2F-2AE6EC5E2B70", "status": "Succeeded", "startTime": + "2026-05-22T08:25:24.3630000Z", "endTime": "2026-05-22T08:25:28.5070000Z"}' headers: Cache-Control: - no-cache Content-Length: - - '249' + - '287' + Content-Security-Policy: + - script-src 'self' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 22 May 2026 08:25:36 GMT + Expires: + - '-1' + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + X-XSS-Protection: + - 1; mode=block + status: + code: 200 + message: 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": "aa7f2b18-78f7-4dc6-88f2-e9d1b6346ca2", "displayName": + "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}, + {"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: + - '458' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 22 May 2026 08:25:39 GMT + Pragma: + - no-cache + RequestId: + - 96612574-d1a7-465c-b501-9de44b47bef4 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: 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"}, {"id": "aa7f2b18-78f7-4dc6-88f2-e9d1b6346ca2", "displayName": "fabcli000001", + "sku": "F2", "region": "West Europe", "state": "Active"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '461' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 22 May 2026 08:25:44 GMT + Pragma: + - no-cache + RequestId: + - 1f8e630f-f914-401c-83d6-8f92f9c40503 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: 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"}, {"id": "aa7f2b18-78f7-4dc6-88f2-e9d1b6346ca2", "displayName": "fabcli000001", + "sku": "F2", "region": "West Europe", "state": "Active"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '459' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 22 May 2026 08:25:50 GMT + Pragma: + - no-cache + RequestId: + - a887651d-5809-4113-b774-e02c40c19b4d + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: 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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 + response: + body: + string: '{"properties": {"provisioningState": "Succeeded", "state": "Active", + "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", + "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": + "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - '424' + Content-Security-Policy: + - script-src 'self' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 22 May 2026 08:25:51 GMT + Expires: + - '-1' + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + X-XSS-Protection: + - 1; mode=block + status: + code: 200 + message: 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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 + response: + body: + string: '{"properties": {"provisioningState": "Succeeded", "state": "Active", + "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", + "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": + "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - '424' + Content-Security-Policy: + - script-src 'self' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 22 May 2026 08:25:52 GMT + Expires: + - '-1' + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + X-XSS-Protection: + - 1; mode=block + status: + code: 200 + message: 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"}, {"id": "aa7f2b18-78f7-4dc6-88f2-e9d1b6346ca2", "displayName": "fabcli000001", + "sku": "F2", "region": "West Europe", "state": "Active"}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Cache-Control: + - no-store, must-revalidate, no-cache + Content-Encoding: + - gzip + Content-Length: + - '459' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 22 May 2026 08:25:54 GMT + Pragma: + - no-cache + RequestId: + - afc5f634-5e20-412e-9af2-d1212e432f97 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: 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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 + response: + body: + string: '{"properties": {"provisioningState": "Succeeded", "state": "Active", + "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", + "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": + "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}' + headers: + Cache-Control: + - no-cache + Content-Length: + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:39:16 GMT + - Fri, 22 May 2026 08:25:56 GMT Expires: - '-1' Pragma: @@ -153,6 +504,56 @@ 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: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 + response: + body: + string: '' + headers: + Azure-AsyncOperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C?api-version=2022-07-01-preview&t=639150351586283579&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=DGpE7eKpBZ7x1F6JE9uR481fdi0Ma6S7IB8LTTZz5jKhc1-guvzrkmWGnFTDAWCTvzL4FJAnxaGWZCo1UqF4tKvDUBYX_rEdsXhGnIJKwChyuPZb6QhNs_M4cIGfbX2LBS8ZOk4rwkCcPf_LJLl3TNSrUO0nrW4VJXksQMCMVg6WfsV7qq8y1kI16jdy9_-NYPgTnz-7s8SGtZ7NY1EDpGbgUtPT-fPknLrjzUpAkMo3xttz9dbdbZ1jo87uyHG87P-Hza12zBzO1lY6SfUrkX7k7MJZ45kYQkkc0nOPOwPiLJMicQldZfDd4LuK_1o8i8OrDO6PcyCMLw0NFKwa4g&h=zXk8lIk8R9bWA4hrxbl2NBGjYz9_fkOOUUpYAVBmT30 + Cache-Control: + - no-cache + Content-Length: + - '0' + Content-Security-Policy: + - script-src 'self' + Date: + - Fri, 22 May 2026 08:25:58 GMT + Expires: + - '-1' + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/3651F77C-80A9-4A3C-9865-510D313E5E3C?api-version=2022-07-01-preview&t=639150351586283579&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=2U2VKP6wz4TmWVcvqWJ6ZgIgzpp261KC_FTzMKRoYPOkHNqXmXjUpqHs42PRAWxidJBVkd-EKfxaDQPqeitOvJ44uWhk9uhNm5CSSBXoHbFnWu3EkA7v_q9g2o7Fwe6617q_CiWLtBZfskBNZZVZewTtaEivm-haai6AXVD5A05QkDdrI8J6frAhaSxoGGKQ0owxNq3hRByRmPkSYe1tgsUXlPM_hzzA3erRoy-kIz9gxmkycXue-vbbsSGz9V2aucUoi40IVAPRZjDfX8u8gPmVEOKqR6Q_Q_s0kzoVad9f_qykRuUWcAFeTx48yjX9bVXeVTuFqyt0XwrfNeuS9w&h=e6JaH6N255HZ0Rn5rOGlTGxgzW72SwfettkhQD-Ea-Q + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + X-XSS-Protection: + - 1; mode=block + status: + code: 202 + message: Accepted - request: body: null headers: @@ -165,25 +566,25 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/C0B6FF02-AE82-4A97-B8BF-24318798E4EC?api-version=2022-07-01-preview&t=638924783567903124&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=Br6S2WB6I8TGVJNA31BsIpM0aY3U0mggWPjOZTuxprQKJScAsMNUE1E2VaI_cLBh57N3wmFw473NViTCYDxsiLxIqj-j8olLgDMvKH49fSn5X_HcgVotku7SHbziLe-NjZuomkqBok4jHRSfnyW8cChe6QDmehtrM66oA9ZI_RnnAeybAxKJHGix1xCsKj0hTUsPxEhRM9rOMqO5Lg5J-ZtL7e7wuo7c11-QSd0CPO5z1V5fXdc-7WB8x-VxCMMtQ6EQNsGioouKFaeIOV8NmS6yayADMpSxEbQHulCDpdWm_jNHKz89iwX9gumj0_Y4SB6YcKyNIx0JVFRFvWGK_A&h=uZjrCcW9YANyzQaImRHvGxTSE9yFC_ETT75S0gw917s + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C?api-version=2022-07-01-preview&t=639150351586283579&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=DGpE7eKpBZ7x1F6JE9uR481fdi0Ma6S7IB8LTTZz5jKhc1-guvzrkmWGnFTDAWCTvzL4FJAnxaGWZCo1UqF4tKvDUBYX_rEdsXhGnIJKwChyuPZb6QhNs_M4cIGfbX2LBS8ZOk4rwkCcPf_LJLl3TNSrUO0nrW4VJXksQMCMVg6WfsV7qq8y1kI16jdy9_-NYPgTnz-7s8SGtZ7NY1EDpGbgUtPT-fPknLrjzUpAkMo3xttz9dbdbZ1jo87uyHG87P-Hza12zBzO1lY6SfUrkX7k7MJZ45kYQkkc0nOPOwPiLJMicQldZfDd4LuK_1o8i8OrDO6PcyCMLw0NFKwa4g&h=zXk8lIk8R9bWA4hrxbl2NBGjYz9_fkOOUUpYAVBmT30 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/C0B6FF02-AE82-4A97-B8BF-24318798E4EC", - "name": "C0B6FF02-AE82-4A97-B8BF-24318798E4EC", "status": "Provisioning", - "startTime": "2025-09-03T06:39:15.9570000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C", + "name": "3651F77C-80A9-4A3C-9865-510D313E5E3C", "status": "Deleting", "startTime": + "2026-05-22T08:25:58.0200000Z"}' headers: Cache-Control: - no-cache Content-Length: - - '249' + - '245' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:39:16 GMT + - Fri, 22 May 2026 08:26:09 GMT Expires: - '-1' Pragma: @@ -213,25 +614,25 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/C0B6FF02-AE82-4A97-B8BF-24318798E4EC?api-version=2022-07-01-preview&t=638924783567903124&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=Br6S2WB6I8TGVJNA31BsIpM0aY3U0mggWPjOZTuxprQKJScAsMNUE1E2VaI_cLBh57N3wmFw473NViTCYDxsiLxIqj-j8olLgDMvKH49fSn5X_HcgVotku7SHbziLe-NjZuomkqBok4jHRSfnyW8cChe6QDmehtrM66oA9ZI_RnnAeybAxKJHGix1xCsKj0hTUsPxEhRM9rOMqO5Lg5J-ZtL7e7wuo7c11-QSd0CPO5z1V5fXdc-7WB8x-VxCMMtQ6EQNsGioouKFaeIOV8NmS6yayADMpSxEbQHulCDpdWm_jNHKz89iwX9gumj0_Y4SB6YcKyNIx0JVFRFvWGK_A&h=uZjrCcW9YANyzQaImRHvGxTSE9yFC_ETT75S0gw917s + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C?api-version=2022-07-01-preview&t=639150351586283579&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=DGpE7eKpBZ7x1F6JE9uR481fdi0Ma6S7IB8LTTZz5jKhc1-guvzrkmWGnFTDAWCTvzL4FJAnxaGWZCo1UqF4tKvDUBYX_rEdsXhGnIJKwChyuPZb6QhNs_M4cIGfbX2LBS8ZOk4rwkCcPf_LJLl3TNSrUO0nrW4VJXksQMCMVg6WfsV7qq8y1kI16jdy9_-NYPgTnz-7s8SGtZ7NY1EDpGbgUtPT-fPknLrjzUpAkMo3xttz9dbdbZ1jo87uyHG87P-Hza12zBzO1lY6SfUrkX7k7MJZ45kYQkkc0nOPOwPiLJMicQldZfDd4LuK_1o8i8OrDO6PcyCMLw0NFKwa4g&h=zXk8lIk8R9bWA4hrxbl2NBGjYz9_fkOOUUpYAVBmT30 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/C0B6FF02-AE82-4A97-B8BF-24318798E4EC", - "name": "C0B6FF02-AE82-4A97-B8BF-24318798E4EC", "status": "Provisioning", - "startTime": "2025-09-03T06:39:15.9570000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C", + "name": "3651F77C-80A9-4A3C-9865-510D313E5E3C", "status": "Deleting", "startTime": + "2026-05-22T08:25:58.0200000Z"}' headers: Cache-Control: - no-cache Content-Length: - - '249' + - '245' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:39:17 GMT + - Fri, 22 May 2026 08:26:19 GMT Expires: - '-1' Pragma: @@ -261,25 +662,25 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/C0B6FF02-AE82-4A97-B8BF-24318798E4EC?api-version=2022-07-01-preview&t=638924783567903124&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=Br6S2WB6I8TGVJNA31BsIpM0aY3U0mggWPjOZTuxprQKJScAsMNUE1E2VaI_cLBh57N3wmFw473NViTCYDxsiLxIqj-j8olLgDMvKH49fSn5X_HcgVotku7SHbziLe-NjZuomkqBok4jHRSfnyW8cChe6QDmehtrM66oA9ZI_RnnAeybAxKJHGix1xCsKj0hTUsPxEhRM9rOMqO5Lg5J-ZtL7e7wuo7c11-QSd0CPO5z1V5fXdc-7WB8x-VxCMMtQ6EQNsGioouKFaeIOV8NmS6yayADMpSxEbQHulCDpdWm_jNHKz89iwX9gumj0_Y4SB6YcKyNIx0JVFRFvWGK_A&h=uZjrCcW9YANyzQaImRHvGxTSE9yFC_ETT75S0gw917s + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C?api-version=2022-07-01-preview&t=639150351586283579&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=DGpE7eKpBZ7x1F6JE9uR481fdi0Ma6S7IB8LTTZz5jKhc1-guvzrkmWGnFTDAWCTvzL4FJAnxaGWZCo1UqF4tKvDUBYX_rEdsXhGnIJKwChyuPZb6QhNs_M4cIGfbX2LBS8ZOk4rwkCcPf_LJLl3TNSrUO0nrW4VJXksQMCMVg6WfsV7qq8y1kI16jdy9_-NYPgTnz-7s8SGtZ7NY1EDpGbgUtPT-fPknLrjzUpAkMo3xttz9dbdbZ1jo87uyHG87P-Hza12zBzO1lY6SfUrkX7k7MJZ45kYQkkc0nOPOwPiLJMicQldZfDd4LuK_1o8i8OrDO6PcyCMLw0NFKwa4g&h=zXk8lIk8R9bWA4hrxbl2NBGjYz9_fkOOUUpYAVBmT30 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/C0B6FF02-AE82-4A97-B8BF-24318798E4EC", - "name": "C0B6FF02-AE82-4A97-B8BF-24318798E4EC", "status": "Succeeded", "startTime": - "2025-09-03T06:39:15.9570000Z", "endTime": "2025-09-03T06:39:18.2600000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C", + "name": "3651F77C-80A9-4A3C-9865-510D313E5E3C", "status": "Deleting", "startTime": + "2026-05-22T08:25:58.0200000Z"}' headers: Cache-Control: - no-cache Content-Length: - - '287' + - '245' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:39:19 GMT + - Fri, 22 May 2026 08:26:30 GMT Expires: - '-1' Pragma: @@ -309,42 +710,39 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/capacities + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C?api-version=2022-07-01-preview&t=639150351586283579&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=DGpE7eKpBZ7x1F6JE9uR481fdi0Ma6S7IB8LTTZz5jKhc1-guvzrkmWGnFTDAWCTvzL4FJAnxaGWZCo1UqF4tKvDUBYX_rEdsXhGnIJKwChyuPZb6QhNs_M4cIGfbX2LBS8ZOk4rwkCcPf_LJLl3TNSrUO0nrW4VJXksQMCMVg6WfsV7qq8y1kI16jdy9_-NYPgTnz-7s8SGtZ7NY1EDpGbgUtPT-fPknLrjzUpAkMo3xttz9dbdbZ1jo87uyHG87P-Hza12zBzO1lY6SfUrkX7k7MJZ45kYQkkc0nOPOwPiLJMicQldZfDd4LuK_1o8i8OrDO6PcyCMLw0NFKwa4g&h=zXk8lIk8R9bWA4hrxbl2NBGjYz9_fkOOUUpYAVBmT30 response: body: - string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F16", "region": "West Europe", "state": - "Active"}, {"id": "188b330f-2e21-4b85-bcec-5ee64a2e2eb7", "displayName": "fabcli000001", - "sku": "F2", "region": "West Europe", "state": "Active"}]}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C", + "name": "3651F77C-80A9-4A3C-9865-510D313E5E3C", "status": "Deleting", "startTime": + "2026-05-22T08:25:58.0200000Z"}' headers: - Access-Control-Expose-Headers: - - RequestId Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip + - no-cache Content-Length: - - '491' + - '245' + Content-Security-Policy: + - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:39:23 GMT + - Fri, 22 May 2026 08:26:41 GMT + Expires: + - '-1' Pragma: - no-cache - RequestId: - - 89a6ec44-e3a1-409f-87ef-7c0454a7a1eb Strict-Transport-Security: - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Frame-Options: - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' + X-XSS-Protection: + - 1; mode=block status: code: 200 message: OK @@ -360,42 +758,39 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/capacities + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C?api-version=2022-07-01-preview&t=639150351586283579&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=DGpE7eKpBZ7x1F6JE9uR481fdi0Ma6S7IB8LTTZz5jKhc1-guvzrkmWGnFTDAWCTvzL4FJAnxaGWZCo1UqF4tKvDUBYX_rEdsXhGnIJKwChyuPZb6QhNs_M4cIGfbX2LBS8ZOk4rwkCcPf_LJLl3TNSrUO0nrW4VJXksQMCMVg6WfsV7qq8y1kI16jdy9_-NYPgTnz-7s8SGtZ7NY1EDpGbgUtPT-fPknLrjzUpAkMo3xttz9dbdbZ1jo87uyHG87P-Hza12zBzO1lY6SfUrkX7k7MJZ45kYQkkc0nOPOwPiLJMicQldZfDd4LuK_1o8i8OrDO6PcyCMLw0NFKwa4g&h=zXk8lIk8R9bWA4hrxbl2NBGjYz9_fkOOUUpYAVBmT30 response: body: - string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F16", "region": "West Europe", "state": - "Active"}, {"id": "188b330f-2e21-4b85-bcec-5ee64a2e2eb7", "displayName": "fabcli000001", - "sku": "F2", "region": "West Europe", "state": "Active"}]}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C", + "name": "3651F77C-80A9-4A3C-9865-510D313E5E3C", "status": "Deleting", "startTime": + "2026-05-22T08:25:58.0200000Z"}' headers: - Access-Control-Expose-Headers: - - RequestId Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip + - no-cache Content-Length: - - '491' + - '245' + Content-Security-Policy: + - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:39:27 GMT + - Fri, 22 May 2026 08:26:52 GMT + Expires: + - '-1' Pragma: - no-cache - RequestId: - - d61b3e24-5e21-4ff0-a326-c4c0852d645d Strict-Transport-Security: - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Frame-Options: - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' + X-XSS-Protection: + - 1; mode=block status: code: 200 message: OK @@ -411,42 +806,39 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/capacities + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C?api-version=2022-07-01-preview&t=639150351586283579&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=DGpE7eKpBZ7x1F6JE9uR481fdi0Ma6S7IB8LTTZz5jKhc1-guvzrkmWGnFTDAWCTvzL4FJAnxaGWZCo1UqF4tKvDUBYX_rEdsXhGnIJKwChyuPZb6QhNs_M4cIGfbX2LBS8ZOk4rwkCcPf_LJLl3TNSrUO0nrW4VJXksQMCMVg6WfsV7qq8y1kI16jdy9_-NYPgTnz-7s8SGtZ7NY1EDpGbgUtPT-fPknLrjzUpAkMo3xttz9dbdbZ1jo87uyHG87P-Hza12zBzO1lY6SfUrkX7k7MJZ45kYQkkc0nOPOwPiLJMicQldZfDd4LuK_1o8i8OrDO6PcyCMLw0NFKwa4g&h=zXk8lIk8R9bWA4hrxbl2NBGjYz9_fkOOUUpYAVBmT30 response: body: - string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F16", "region": "West Europe", "state": - "Active"}, {"id": "188b330f-2e21-4b85-bcec-5ee64a2e2eb7", "displayName": "fabcli000001", - "sku": "F2", "region": "West Europe", "state": "Active"}]}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C", + "name": "3651F77C-80A9-4A3C-9865-510D313E5E3C", "status": "Deleting", "startTime": + "2026-05-22T08:25:58.0200000Z"}' headers: - Access-Control-Expose-Headers: - - RequestId Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip + - no-cache Content-Length: - - '491' + - '245' + Content-Security-Policy: + - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:39:32 GMT + - Fri, 22 May 2026 08:27:02 GMT + Expires: + - '-1' Pragma: - no-cache - RequestId: - - 375c6a29-d67e-4a91-b772-9feaf9d5124c Strict-Transport-Security: - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Frame-Options: - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' + X-XSS-Protection: + - 1; mode=block status: code: 200 message: OK @@ -462,26 +854,25 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C?api-version=2022-07-01-preview&t=639150351586283579&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=DGpE7eKpBZ7x1F6JE9uR481fdi0Ma6S7IB8LTTZz5jKhc1-guvzrkmWGnFTDAWCTvzL4FJAnxaGWZCo1UqF4tKvDUBYX_rEdsXhGnIJKwChyuPZb6QhNs_M4cIGfbX2LBS8ZOk4rwkCcPf_LJLl3TNSrUO0nrW4VJXksQMCMVg6WfsV7qq8y1kI16jdy9_-NYPgTnz-7s8SGtZ7NY1EDpGbgUtPT-fPknLrjzUpAkMo3xttz9dbdbZ1jo87uyHG87P-Hza12zBzO1lY6SfUrkX7k7MJZ45kYQkkc0nOPOwPiLJMicQldZfDd4LuK_1o8i8OrDO6PcyCMLw0NFKwa4g&h=zXk8lIk8R9bWA4hrxbl2NBGjYz9_fkOOUUpYAVBmT30 response: body: - string: '{"properties": {"provisioningState": "Succeeded", "state": "Active", - "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", - "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": - "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C", + "name": "3651F77C-80A9-4A3C-9865-510D313E5E3C", "status": "Deleting", "startTime": + "2026-05-22T08:25:58.0200000Z"}' headers: Cache-Control: - no-cache Content-Length: - - '408' + - '245' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:39:33 GMT + - Fri, 22 May 2026 08:27:13 GMT Expires: - '-1' Pragma: @@ -511,26 +902,25 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C?api-version=2022-07-01-preview&t=639150351586283579&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=DGpE7eKpBZ7x1F6JE9uR481fdi0Ma6S7IB8LTTZz5jKhc1-guvzrkmWGnFTDAWCTvzL4FJAnxaGWZCo1UqF4tKvDUBYX_rEdsXhGnIJKwChyuPZb6QhNs_M4cIGfbX2LBS8ZOk4rwkCcPf_LJLl3TNSrUO0nrW4VJXksQMCMVg6WfsV7qq8y1kI16jdy9_-NYPgTnz-7s8SGtZ7NY1EDpGbgUtPT-fPknLrjzUpAkMo3xttz9dbdbZ1jo87uyHG87P-Hza12zBzO1lY6SfUrkX7k7MJZ45kYQkkc0nOPOwPiLJMicQldZfDd4LuK_1o8i8OrDO6PcyCMLw0NFKwa4g&h=zXk8lIk8R9bWA4hrxbl2NBGjYz9_fkOOUUpYAVBmT30 response: body: - string: '{"properties": {"provisioningState": "Succeeded", "state": "Active", - "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", - "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": - "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C", + "name": "3651F77C-80A9-4A3C-9865-510D313E5E3C", "status": "Deleting", "startTime": + "2026-05-22T08:25:58.0200000Z"}' headers: Cache-Control: - no-cache Content-Length: - - '408' + - '245' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:39:33 GMT + - Fri, 22 May 2026 08:27:24 GMT Expires: - '-1' Pragma: @@ -560,42 +950,39 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/capacities + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C?api-version=2022-07-01-preview&t=639150351586283579&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=DGpE7eKpBZ7x1F6JE9uR481fdi0Ma6S7IB8LTTZz5jKhc1-guvzrkmWGnFTDAWCTvzL4FJAnxaGWZCo1UqF4tKvDUBYX_rEdsXhGnIJKwChyuPZb6QhNs_M4cIGfbX2LBS8ZOk4rwkCcPf_LJLl3TNSrUO0nrW4VJXksQMCMVg6WfsV7qq8y1kI16jdy9_-NYPgTnz-7s8SGtZ7NY1EDpGbgUtPT-fPknLrjzUpAkMo3xttz9dbdbZ1jo87uyHG87P-Hza12zBzO1lY6SfUrkX7k7MJZ45kYQkkc0nOPOwPiLJMicQldZfDd4LuK_1o8i8OrDO6PcyCMLw0NFKwa4g&h=zXk8lIk8R9bWA4hrxbl2NBGjYz9_fkOOUUpYAVBmT30 response: body: - string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F16", "region": "West Europe", "state": - "Active"}, {"id": "188b330f-2e21-4b85-bcec-5ee64a2e2eb7", "displayName": "fabcli000001", - "sku": "F2", "region": "West Europe", "state": "Active"}]}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C", + "name": "3651F77C-80A9-4A3C-9865-510D313E5E3C", "status": "Deleting", "startTime": + "2026-05-22T08:25:58.0200000Z"}' headers: - Access-Control-Expose-Headers: - - RequestId Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip + - no-cache Content-Length: - - '491' + - '245' + Content-Security-Policy: + - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:39:37 GMT + - Fri, 22 May 2026 08:27:35 GMT + Expires: + - '-1' Pragma: - no-cache - RequestId: - - 4a0a89b6-75ec-47ec-ad86-c9656564df90 Strict-Transport-Security: - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE X-Content-Type-Options: - nosniff X-Frame-Options: - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' + X-XSS-Protection: + - 1; mode=block status: code: 200 message: OK @@ -611,26 +998,25 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C?api-version=2022-07-01-preview&t=639150351586283579&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=DGpE7eKpBZ7x1F6JE9uR481fdi0Ma6S7IB8LTTZz5jKhc1-guvzrkmWGnFTDAWCTvzL4FJAnxaGWZCo1UqF4tKvDUBYX_rEdsXhGnIJKwChyuPZb6QhNs_M4cIGfbX2LBS8ZOk4rwkCcPf_LJLl3TNSrUO0nrW4VJXksQMCMVg6WfsV7qq8y1kI16jdy9_-NYPgTnz-7s8SGtZ7NY1EDpGbgUtPT-fPknLrjzUpAkMo3xttz9dbdbZ1jo87uyHG87P-Hza12zBzO1lY6SfUrkX7k7MJZ45kYQkkc0nOPOwPiLJMicQldZfDd4LuK_1o8i8OrDO6PcyCMLw0NFKwa4g&h=zXk8lIk8R9bWA4hrxbl2NBGjYz9_fkOOUUpYAVBmT30 response: body: - string: '{"properties": {"provisioningState": "Succeeded", "state": "Active", - "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", - "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": - "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C", + "name": "3651F77C-80A9-4A3C-9865-510D313E5E3C", "status": "Deleting", "startTime": + "2026-05-22T08:25:58.0200000Z"}' headers: Cache-Control: - no-cache Content-Length: - - '408' + - '245' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:39:38 GMT + - Fri, 22 May 2026 08:27:46 GMT Expires: - '-1' Pragma: @@ -657,32 +1043,78 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C?api-version=2022-07-01-preview&t=639150351586283579&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=DGpE7eKpBZ7x1F6JE9uR481fdi0Ma6S7IB8LTTZz5jKhc1-guvzrkmWGnFTDAWCTvzL4FJAnxaGWZCo1UqF4tKvDUBYX_rEdsXhGnIJKwChyuPZb6QhNs_M4cIGfbX2LBS8ZOk4rwkCcPf_LJLl3TNSrUO0nrW4VJXksQMCMVg6WfsV7qq8y1kI16jdy9_-NYPgTnz-7s8SGtZ7NY1EDpGbgUtPT-fPknLrjzUpAkMo3xttz9dbdbZ1jo87uyHG87P-Hza12zBzO1lY6SfUrkX7k7MJZ45kYQkkc0nOPOwPiLJMicQldZfDd4LuK_1o8i8OrDO6PcyCMLw0NFKwa4g&h=zXk8lIk8R9bWA4hrxbl2NBGjYz9_fkOOUUpYAVBmT30 + response: + body: + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C", + "name": "3651F77C-80A9-4A3C-9865-510D313E5E3C", "status": "Deleting", "startTime": + "2026-05-22T08:25:58.0200000Z"}' + headers: + Cache-Control: + - no-cache Content-Length: - - '0' + - '245' + Content-Security-Policy: + - script-src 'self' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 22 May 2026 08:27:56 GMT + Expires: + - '-1' + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + X-XSS-Protection: + - 1; mode=block + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 + - ms-fabric-cli-test/1.6.1 + method: GET + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C?api-version=2022-07-01-preview&t=639150351586283579&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=DGpE7eKpBZ7x1F6JE9uR481fdi0Ma6S7IB8LTTZz5jKhc1-guvzrkmWGnFTDAWCTvzL4FJAnxaGWZCo1UqF4tKvDUBYX_rEdsXhGnIJKwChyuPZb6QhNs_M4cIGfbX2LBS8ZOk4rwkCcPf_LJLl3TNSrUO0nrW4VJXksQMCMVg6WfsV7qq8y1kI16jdy9_-NYPgTnz-7s8SGtZ7NY1EDpGbgUtPT-fPknLrjzUpAkMo3xttz9dbdbZ1jo87uyHG87P-Hza12zBzO1lY6SfUrkX7k7MJZ45kYQkkc0nOPOwPiLJMicQldZfDd4LuK_1o8i8OrDO6PcyCMLw0NFKwa4g&h=zXk8lIk8R9bWA4hrxbl2NBGjYz9_fkOOUUpYAVBmT30 response: body: - string: '' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C", + "name": "3651F77C-80A9-4A3C-9865-510D313E5E3C", "status": "Deleting", "startTime": + "2026-05-22T08:25:58.0200000Z"}' headers: - Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/060D1473-FE4B-4133-B1DF-F6C0259456EB?api-version=2022-07-01-preview&t=638924783799291399&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=Ty6GcR1sLdZ2Sd6E5jv2ZIVffna8GWaztICPscGSO8xN2SaKN0ZwbAVIt7eBZKdIIiwyD2ocKlEhqj5e3ZnVNjdgbR50kqU-B2Rdo8hb1VUW3Pks2A8YXpoVuJT2WHxNx8ZC0zwokWFZ9E3k2jGMo5QZjvNQfP_YTN0_djMoIkxhSmRqcqarHqT3oTEpqsbDYxV3CtW-UM17TgJqbXoFT7pkJvsXA4dBmBLM_sfIgj75rpgUAza7IefV9RWr-mWoPRiifulo5zF3tR601AGKBp9Yr1P1RnNbBXvKUqeOAfyTCbXtzTl0e4hfbk0uu_Y7dJnmKpQJwiAfJgn3EidZGA&h=VTmuPW2pOwx02G8CXx_VMtP69lVBSkIcmIruE9XPrBg Cache-Control: - no-cache Content-Length: - - '0' + - '245' Content-Security-Policy: - script-src 'self' + Content-Type: + - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:39:39 GMT + - Fri, 22 May 2026 08:28:08 GMT Expires: - '-1' - Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/060D1473-FE4B-4133-B1DF-F6C0259456EB?api-version=2022-07-01-preview&t=638924783799291399&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=v206BlUMietTq_HiRzCHix05hlz8OcdZQlwdGDDnsiM-auCw0njlfInvmlN4OWjHIbVmwWOmBfyLuzxt6gYysPB363lYrkxHhF0oxrhMjmvGBjrFOZgJX5GAHkm-OJDls6I5d4pmZZD2dXBd8ZbmrWJxI7QCkRGTX46ausBlQIjbqlahZch96NgF6FRjbg3y9KzeH8MD2YEHZkM8YNVVwb6UrVhhaiDVGW68adwIQO2La6l0m1_K_1XsZVQmLVVelJnJ6fKsmuFUNjdWLCZIS7rC3suKdudi-qzdvqET_F6h747ntLndjztZ-gG0BwN_27menIzaJG7EqfPQlnmP6A&h=v9MH8z_pKRhE3CvodtChk4p6HE1LaDLH0WfODM75WHA Pragma: - no-cache Strict-Transport-Security: @@ -696,8 +1128,8 @@ interactions: X-XSS-Protection: - 1; mode=block status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -710,14 +1142,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/060D1473-FE4B-4133-B1DF-F6C0259456EB?api-version=2022-07-01-preview&t=638924783799291399&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=Ty6GcR1sLdZ2Sd6E5jv2ZIVffna8GWaztICPscGSO8xN2SaKN0ZwbAVIt7eBZKdIIiwyD2ocKlEhqj5e3ZnVNjdgbR50kqU-B2Rdo8hb1VUW3Pks2A8YXpoVuJT2WHxNx8ZC0zwokWFZ9E3k2jGMo5QZjvNQfP_YTN0_djMoIkxhSmRqcqarHqT3oTEpqsbDYxV3CtW-UM17TgJqbXoFT7pkJvsXA4dBmBLM_sfIgj75rpgUAza7IefV9RWr-mWoPRiifulo5zF3tR601AGKBp9Yr1P1RnNbBXvKUqeOAfyTCbXtzTl0e4hfbk0uu_Y7dJnmKpQJwiAfJgn3EidZGA&h=VTmuPW2pOwx02G8CXx_VMtP69lVBSkIcmIruE9XPrBg + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C?api-version=2022-07-01-preview&t=639150351586283579&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=DGpE7eKpBZ7x1F6JE9uR481fdi0Ma6S7IB8LTTZz5jKhc1-guvzrkmWGnFTDAWCTvzL4FJAnxaGWZCo1UqF4tKvDUBYX_rEdsXhGnIJKwChyuPZb6QhNs_M4cIGfbX2LBS8ZOk4rwkCcPf_LJLl3TNSrUO0nrW4VJXksQMCMVg6WfsV7qq8y1kI16jdy9_-NYPgTnz-7s8SGtZ7NY1EDpGbgUtPT-fPknLrjzUpAkMo3xttz9dbdbZ1jo87uyHG87P-Hza12zBzO1lY6SfUrkX7k7MJZ45kYQkkc0nOPOwPiLJMicQldZfDd4LuK_1o8i8OrDO6PcyCMLw0NFKwa4g&h=zXk8lIk8R9bWA4hrxbl2NBGjYz9_fkOOUUpYAVBmT30 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/060D1473-FE4B-4133-B1DF-F6C0259456EB", - "name": "060D1473-FE4B-4133-B1DF-F6C0259456EB", "status": "Deleting", "startTime": - "2025-09-03T06:39:39.3300000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C", + "name": "3651F77C-80A9-4A3C-9865-510D313E5E3C", "status": "Deleting", "startTime": + "2026-05-22T08:25:58.0200000Z"}' headers: Cache-Control: - no-cache @@ -728,7 +1160,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:39:39 GMT + - Fri, 22 May 2026 08:28:18 GMT Expires: - '-1' Pragma: @@ -758,14 +1190,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/060D1473-FE4B-4133-B1DF-F6C0259456EB?api-version=2022-07-01-preview&t=638924783799291399&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=Ty6GcR1sLdZ2Sd6E5jv2ZIVffna8GWaztICPscGSO8xN2SaKN0ZwbAVIt7eBZKdIIiwyD2ocKlEhqj5e3ZnVNjdgbR50kqU-B2Rdo8hb1VUW3Pks2A8YXpoVuJT2WHxNx8ZC0zwokWFZ9E3k2jGMo5QZjvNQfP_YTN0_djMoIkxhSmRqcqarHqT3oTEpqsbDYxV3CtW-UM17TgJqbXoFT7pkJvsXA4dBmBLM_sfIgj75rpgUAza7IefV9RWr-mWoPRiifulo5zF3tR601AGKBp9Yr1P1RnNbBXvKUqeOAfyTCbXtzTl0e4hfbk0uu_Y7dJnmKpQJwiAfJgn3EidZGA&h=VTmuPW2pOwx02G8CXx_VMtP69lVBSkIcmIruE9XPrBg + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C?api-version=2022-07-01-preview&t=639150351586283579&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=DGpE7eKpBZ7x1F6JE9uR481fdi0Ma6S7IB8LTTZz5jKhc1-guvzrkmWGnFTDAWCTvzL4FJAnxaGWZCo1UqF4tKvDUBYX_rEdsXhGnIJKwChyuPZb6QhNs_M4cIGfbX2LBS8ZOk4rwkCcPf_LJLl3TNSrUO0nrW4VJXksQMCMVg6WfsV7qq8y1kI16jdy9_-NYPgTnz-7s8SGtZ7NY1EDpGbgUtPT-fPknLrjzUpAkMo3xttz9dbdbZ1jo87uyHG87P-Hza12zBzO1lY6SfUrkX7k7MJZ45kYQkkc0nOPOwPiLJMicQldZfDd4LuK_1o8i8OrDO6PcyCMLw0NFKwa4g&h=zXk8lIk8R9bWA4hrxbl2NBGjYz9_fkOOUUpYAVBmT30 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/060D1473-FE4B-4133-B1DF-F6C0259456EB", - "name": "060D1473-FE4B-4133-B1DF-F6C0259456EB", "status": "Deleting", "startTime": - "2025-09-03T06:39:39.3300000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C", + "name": "3651F77C-80A9-4A3C-9865-510D313E5E3C", "status": "Deleting", "startTime": + "2026-05-22T08:25:58.0200000Z"}' headers: Cache-Control: - no-cache @@ -776,7 +1208,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:39:40 GMT + - Fri, 22 May 2026 08:28:28 GMT Expires: - '-1' Pragma: @@ -806,14 +1238,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/060D1473-FE4B-4133-B1DF-F6C0259456EB?api-version=2022-07-01-preview&t=638924783799291399&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=Ty6GcR1sLdZ2Sd6E5jv2ZIVffna8GWaztICPscGSO8xN2SaKN0ZwbAVIt7eBZKdIIiwyD2ocKlEhqj5e3ZnVNjdgbR50kqU-B2Rdo8hb1VUW3Pks2A8YXpoVuJT2WHxNx8ZC0zwokWFZ9E3k2jGMo5QZjvNQfP_YTN0_djMoIkxhSmRqcqarHqT3oTEpqsbDYxV3CtW-UM17TgJqbXoFT7pkJvsXA4dBmBLM_sfIgj75rpgUAza7IefV9RWr-mWoPRiifulo5zF3tR601AGKBp9Yr1P1RnNbBXvKUqeOAfyTCbXtzTl0e4hfbk0uu_Y7dJnmKpQJwiAfJgn3EidZGA&h=VTmuPW2pOwx02G8CXx_VMtP69lVBSkIcmIruE9XPrBg + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C?api-version=2022-07-01-preview&t=639150351586283579&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=DGpE7eKpBZ7x1F6JE9uR481fdi0Ma6S7IB8LTTZz5jKhc1-guvzrkmWGnFTDAWCTvzL4FJAnxaGWZCo1UqF4tKvDUBYX_rEdsXhGnIJKwChyuPZb6QhNs_M4cIGfbX2LBS8ZOk4rwkCcPf_LJLl3TNSrUO0nrW4VJXksQMCMVg6WfsV7qq8y1kI16jdy9_-NYPgTnz-7s8SGtZ7NY1EDpGbgUtPT-fPknLrjzUpAkMo3xttz9dbdbZ1jo87uyHG87P-Hza12zBzO1lY6SfUrkX7k7MJZ45kYQkkc0nOPOwPiLJMicQldZfDd4LuK_1o8i8OrDO6PcyCMLw0NFKwa4g&h=zXk8lIk8R9bWA4hrxbl2NBGjYz9_fkOOUUpYAVBmT30 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/060D1473-FE4B-4133-B1DF-F6C0259456EB", - "name": "060D1473-FE4B-4133-B1DF-F6C0259456EB", "status": "Deleting", "startTime": - "2025-09-03T06:39:39.3300000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C", + "name": "3651F77C-80A9-4A3C-9865-510D313E5E3C", "status": "Deleting", "startTime": + "2026-05-22T08:25:58.0200000Z"}' headers: Cache-Control: - no-cache @@ -824,7 +1256,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:39:40 GMT + - Fri, 22 May 2026 08:28:40 GMT Expires: - '-1' Pragma: @@ -854,14 +1286,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/060D1473-FE4B-4133-B1DF-F6C0259456EB?api-version=2022-07-01-preview&t=638924783799291399&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=Ty6GcR1sLdZ2Sd6E5jv2ZIVffna8GWaztICPscGSO8xN2SaKN0ZwbAVIt7eBZKdIIiwyD2ocKlEhqj5e3ZnVNjdgbR50kqU-B2Rdo8hb1VUW3Pks2A8YXpoVuJT2WHxNx8ZC0zwokWFZ9E3k2jGMo5QZjvNQfP_YTN0_djMoIkxhSmRqcqarHqT3oTEpqsbDYxV3CtW-UM17TgJqbXoFT7pkJvsXA4dBmBLM_sfIgj75rpgUAza7IefV9RWr-mWoPRiifulo5zF3tR601AGKBp9Yr1P1RnNbBXvKUqeOAfyTCbXtzTl0e4hfbk0uu_Y7dJnmKpQJwiAfJgn3EidZGA&h=VTmuPW2pOwx02G8CXx_VMtP69lVBSkIcmIruE9XPrBg + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C?api-version=2022-07-01-preview&t=639150351586283579&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=DGpE7eKpBZ7x1F6JE9uR481fdi0Ma6S7IB8LTTZz5jKhc1-guvzrkmWGnFTDAWCTvzL4FJAnxaGWZCo1UqF4tKvDUBYX_rEdsXhGnIJKwChyuPZb6QhNs_M4cIGfbX2LBS8ZOk4rwkCcPf_LJLl3TNSrUO0nrW4VJXksQMCMVg6WfsV7qq8y1kI16jdy9_-NYPgTnz-7s8SGtZ7NY1EDpGbgUtPT-fPknLrjzUpAkMo3xttz9dbdbZ1jo87uyHG87P-Hza12zBzO1lY6SfUrkX7k7MJZ45kYQkkc0nOPOwPiLJMicQldZfDd4LuK_1o8i8OrDO6PcyCMLw0NFKwa4g&h=zXk8lIk8R9bWA4hrxbl2NBGjYz9_fkOOUUpYAVBmT30 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/060D1473-FE4B-4133-B1DF-F6C0259456EB", - "name": "060D1473-FE4B-4133-B1DF-F6C0259456EB", "status": "Deleting", "startTime": - "2025-09-03T06:39:39.3300000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C", + "name": "3651F77C-80A9-4A3C-9865-510D313E5E3C", "status": "Deleting", "startTime": + "2026-05-22T08:25:58.0200000Z"}' headers: Cache-Control: - no-cache @@ -872,7 +1304,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:39:42 GMT + - Fri, 22 May 2026 08:28:51 GMT Expires: - '-1' Pragma: @@ -902,14 +1334,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/060D1473-FE4B-4133-B1DF-F6C0259456EB?api-version=2022-07-01-preview&t=638924783799291399&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=Ty6GcR1sLdZ2Sd6E5jv2ZIVffna8GWaztICPscGSO8xN2SaKN0ZwbAVIt7eBZKdIIiwyD2ocKlEhqj5e3ZnVNjdgbR50kqU-B2Rdo8hb1VUW3Pks2A8YXpoVuJT2WHxNx8ZC0zwokWFZ9E3k2jGMo5QZjvNQfP_YTN0_djMoIkxhSmRqcqarHqT3oTEpqsbDYxV3CtW-UM17TgJqbXoFT7pkJvsXA4dBmBLM_sfIgj75rpgUAza7IefV9RWr-mWoPRiifulo5zF3tR601AGKBp9Yr1P1RnNbBXvKUqeOAfyTCbXtzTl0e4hfbk0uu_Y7dJnmKpQJwiAfJgn3EidZGA&h=VTmuPW2pOwx02G8CXx_VMtP69lVBSkIcmIruE9XPrBg + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C?api-version=2022-07-01-preview&t=639150351586283579&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=DGpE7eKpBZ7x1F6JE9uR481fdi0Ma6S7IB8LTTZz5jKhc1-guvzrkmWGnFTDAWCTvzL4FJAnxaGWZCo1UqF4tKvDUBYX_rEdsXhGnIJKwChyuPZb6QhNs_M4cIGfbX2LBS8ZOk4rwkCcPf_LJLl3TNSrUO0nrW4VJXksQMCMVg6WfsV7qq8y1kI16jdy9_-NYPgTnz-7s8SGtZ7NY1EDpGbgUtPT-fPknLrjzUpAkMo3xttz9dbdbZ1jo87uyHG87P-Hza12zBzO1lY6SfUrkX7k7MJZ45kYQkkc0nOPOwPiLJMicQldZfDd4LuK_1o8i8OrDO6PcyCMLw0NFKwa4g&h=zXk8lIk8R9bWA4hrxbl2NBGjYz9_fkOOUUpYAVBmT30 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/060D1473-FE4B-4133-B1DF-F6C0259456EB", - "name": "060D1473-FE4B-4133-B1DF-F6C0259456EB", "status": "Deleting", "startTime": - "2025-09-03T06:39:39.3300000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C", + "name": "3651F77C-80A9-4A3C-9865-510D313E5E3C", "status": "Deleting", "startTime": + "2026-05-22T08:25:58.0200000Z"}' headers: Cache-Control: - no-cache @@ -920,7 +1352,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:39:46 GMT + - Fri, 22 May 2026 08:29:02 GMT Expires: - '-1' Pragma: @@ -950,14 +1382,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/060D1473-FE4B-4133-B1DF-F6C0259456EB?api-version=2022-07-01-preview&t=638924783799291399&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=Ty6GcR1sLdZ2Sd6E5jv2ZIVffna8GWaztICPscGSO8xN2SaKN0ZwbAVIt7eBZKdIIiwyD2ocKlEhqj5e3ZnVNjdgbR50kqU-B2Rdo8hb1VUW3Pks2A8YXpoVuJT2WHxNx8ZC0zwokWFZ9E3k2jGMo5QZjvNQfP_YTN0_djMoIkxhSmRqcqarHqT3oTEpqsbDYxV3CtW-UM17TgJqbXoFT7pkJvsXA4dBmBLM_sfIgj75rpgUAza7IefV9RWr-mWoPRiifulo5zF3tR601AGKBp9Yr1P1RnNbBXvKUqeOAfyTCbXtzTl0e4hfbk0uu_Y7dJnmKpQJwiAfJgn3EidZGA&h=VTmuPW2pOwx02G8CXx_VMtP69lVBSkIcmIruE9XPrBg + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C?api-version=2022-07-01-preview&t=639150351586283579&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=DGpE7eKpBZ7x1F6JE9uR481fdi0Ma6S7IB8LTTZz5jKhc1-guvzrkmWGnFTDAWCTvzL4FJAnxaGWZCo1UqF4tKvDUBYX_rEdsXhGnIJKwChyuPZb6QhNs_M4cIGfbX2LBS8ZOk4rwkCcPf_LJLl3TNSrUO0nrW4VJXksQMCMVg6WfsV7qq8y1kI16jdy9_-NYPgTnz-7s8SGtZ7NY1EDpGbgUtPT-fPknLrjzUpAkMo3xttz9dbdbZ1jo87uyHG87P-Hza12zBzO1lY6SfUrkX7k7MJZ45kYQkkc0nOPOwPiLJMicQldZfDd4LuK_1o8i8OrDO6PcyCMLw0NFKwa4g&h=zXk8lIk8R9bWA4hrxbl2NBGjYz9_fkOOUUpYAVBmT30 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/060D1473-FE4B-4133-B1DF-F6C0259456EB", - "name": "060D1473-FE4B-4133-B1DF-F6C0259456EB", "status": "Deleting", "startTime": - "2025-09-03T06:39:39.3300000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C", + "name": "3651F77C-80A9-4A3C-9865-510D313E5E3C", "status": "Deleting", "startTime": + "2026-05-22T08:25:58.0200000Z"}' headers: Cache-Control: - no-cache @@ -968,7 +1400,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:39:54 GMT + - Fri, 22 May 2026 08:29:12 GMT Expires: - '-1' Pragma: @@ -998,14 +1430,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/060D1473-FE4B-4133-B1DF-F6C0259456EB?api-version=2022-07-01-preview&t=638924783799291399&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=Ty6GcR1sLdZ2Sd6E5jv2ZIVffna8GWaztICPscGSO8xN2SaKN0ZwbAVIt7eBZKdIIiwyD2ocKlEhqj5e3ZnVNjdgbR50kqU-B2Rdo8hb1VUW3Pks2A8YXpoVuJT2WHxNx8ZC0zwokWFZ9E3k2jGMo5QZjvNQfP_YTN0_djMoIkxhSmRqcqarHqT3oTEpqsbDYxV3CtW-UM17TgJqbXoFT7pkJvsXA4dBmBLM_sfIgj75rpgUAza7IefV9RWr-mWoPRiifulo5zF3tR601AGKBp9Yr1P1RnNbBXvKUqeOAfyTCbXtzTl0e4hfbk0uu_Y7dJnmKpQJwiAfJgn3EidZGA&h=VTmuPW2pOwx02G8CXx_VMtP69lVBSkIcmIruE9XPrBg + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C?api-version=2022-07-01-preview&t=639150351586283579&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=DGpE7eKpBZ7x1F6JE9uR481fdi0Ma6S7IB8LTTZz5jKhc1-guvzrkmWGnFTDAWCTvzL4FJAnxaGWZCo1UqF4tKvDUBYX_rEdsXhGnIJKwChyuPZb6QhNs_M4cIGfbX2LBS8ZOk4rwkCcPf_LJLl3TNSrUO0nrW4VJXksQMCMVg6WfsV7qq8y1kI16jdy9_-NYPgTnz-7s8SGtZ7NY1EDpGbgUtPT-fPknLrjzUpAkMo3xttz9dbdbZ1jo87uyHG87P-Hza12zBzO1lY6SfUrkX7k7MJZ45kYQkkc0nOPOwPiLJMicQldZfDd4LuK_1o8i8OrDO6PcyCMLw0NFKwa4g&h=zXk8lIk8R9bWA4hrxbl2NBGjYz9_fkOOUUpYAVBmT30 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/060D1473-FE4B-4133-B1DF-F6C0259456EB", - "name": "060D1473-FE4B-4133-B1DF-F6C0259456EB", "status": "Succeeded", "startTime": - "2025-09-03T06:39:39.3300000Z", "endTime": "2025-09-03T06:40:05.1300000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/3651F77C-80A9-4A3C-9865-510D313E5E3C", + "name": "3651F77C-80A9-4A3C-9865-510D313E5E3C", "status": "Succeeded", "startTime": + "2026-05-22T08:25:58.0200000Z", "endTime": "2026-05-22T08:29:14.0530000Z"}' headers: Cache-Control: - no-cache @@ -1016,7 +1448,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:40:10 GMT + - Fri, 22 May 2026 08:29:24 GMT Expires: - '-1' Pragma: diff --git a/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_capacity_with_params_success.yaml b/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_capacity_with_params_success.yaml index b46a64940..0e5ddc3f7 100644 --- a/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_capacity_with_params_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_capacity_with_params_success.yaml @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -27,15 +27,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '456' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:38:09 GMT + - Fri, 22 May 2026 08:24:04 GMT Pragma: - no-cache RequestId: - - bac6ac67-29f4-4c93-8593-fd65da7f50cc + - 7eef0dc5-6931-4177-88c4-f6f7bc88c4f5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -43,7 +43,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -60,11 +60,11 @@ interactions: Connection: - keep-alive Content-Length: - - '149' + - '165' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -75,21 +75,21 @@ interactions: "westeurope", "sku": {"name": "F4", "tier": "Fabric"}}' headers: Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/EA6576FB-97E3-458C-965A-5010B5ADC130?api-version=2022-07-01-preview&t=638924782929091830&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=V6hbRqrTnphXIWM4Y65vZ8XtwDlNC_ADv6HI-tJnJEJmJRN_0eZFCFHGvrl0Xh4OCiirmObDPdjWzJ3n_IMgLEw6ZLCMZSolex6hWpauUWA5nWNFkzsxu7ONVIb_jGpH3VqeC4VT41CwhumbAbSgKBscWooxkcNbySd3RjvmVadOcIUjpZ-9wBb7Q6Q6rY6TqixVt2WGXAn0BdQGVsFf5nA2-aZS-bzLWzBMDGkrTQJtBBXCqElvwg6_gtAY8B0fOoPCSOF4a4LlrrCG4IoQxdb2rvSPBj2_PmJu6wrwJOfxVlV8LF7uE9ll8DK3Owt2USIwAKD1qGu-9pra7WZckw&h=HF0q4oiLUvisLxKU3P9FKOdbb9pm7SR5BvRmRj0Q27M + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/4512D0F3-7AE7-4E57-A042-FB6F0B5FBF4E?api-version=2022-07-01-preview&t=639150350493566604&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=BD0l_kbwoTiZbFhuo5v4J-1SwSwYc2ID3eZx0mHPlPqNsR2Noz8lckIQFuT6fRkGA_TwWMlaep1pbUpH82Gh0IrxlNW-u5T2j6pXnCcenG_8Lk-SlcCDJLFYGDWFb0GEP_zaUxkf9jad21hI8fOx1Q2P0CVHiJ-wg6zBPLQ92_2cqLjs8R6X6ZGnV7trl49A1njgPRn6Gl2NAwyw7iLvmWXNRy_5Z7yaq0SpZIZnoVDtaTuDaueddRxjo17cG4PaISqN4YF4d4K__B1kkgaShdirkjow1t7Iw8HtCiQcufnTpjY3bDoDkUxxOxVzPFEc4-KWxYJstAvWaB19r7BOug&h=_Ys7tdMbfiD487-Nxs7L3ccy4AGTFuCvrwVBw1DjvXo Cache-Control: - no-cache Content-Length: - - '406' + - '422' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:38:12 GMT + - Fri, 22 May 2026 08:24:09 GMT Expires: - '-1' Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/EA6576FB-97E3-458C-965A-5010B5ADC130?api-version=2022-07-01-preview&t=638924782929248042&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=N_uhxHMpAVqJwNaTOtz009bFEi5Xgqbd1pqI6UQNn1az6sCBhXz9EiXWY7En1Zf9_4pGa69NjX0fwKbcZOrRpOHEt91iBDXK_JKEN1UWLx2ywMjRhqAMvZGQO7AIcBA7qRQbAChaiA1ihqemmdbjOmFptOxXC27hRhU4oeDDXWN4G_7uJdxAtb-D_CA0Tzy5UDKfTyAo7iOxnrqkj5LQgQNJvnngSjp6aidLQdqK1fyXxF8rorix_ibMo6QVTMkJP8oeHLr0AzZm8cnGQZsirlskCwxER5NSzPyTGZR9gFPDVGeVpqMuw7_G_VuTc_aT7rQyRTBLr7nYl390ccrWkA&h=SrOqOy7OizFJdRDkobVEVnKio2Y3HNHmybmpY5Q8D7Y + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/4512D0F3-7AE7-4E57-A042-FB6F0B5FBF4E?api-version=2022-07-01-preview&t=639150350493566604&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=e_etKaTUtpza_HHH7KZrmoOI0xZEw1LmjAMxa-xYtW7d64AGZs2X8J4hxxNgDN5UaL1yeTzsDZpb7-XFfzGoiDaU8hoUV5NWoQ_VorTTQA1M1JBR6U7VOFCm71u87pCmDeU00CB4-xpqa-auJCNAHcqa8VwtHVoMRECBp9mMHBiKhZPjvA5RQ3S2I_-1W2zG7AEBX7e2SHWwk2IkDqeNVRMj19LZ7nH-ZFhnCffk4bjPY_6i2QxnC0MDx11C1tScO9zehqA0BjsoTqaDnmjaNOgRM25jx0cf6nch8Os2TA_IM4LVx1OrIMCUbhwcSqhERI9R13cNDzJ56JWJBn_88g&h=NCc3vQIzDnGRDHUvcfggg20QuW-x_OE495TWjDhJMt8 Pragma: - no-cache Strict-Transport-Security: @@ -117,158 +117,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/EA6576FB-97E3-458C-965A-5010B5ADC130?api-version=2022-07-01-preview&t=638924782929091830&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=V6hbRqrTnphXIWM4Y65vZ8XtwDlNC_ADv6HI-tJnJEJmJRN_0eZFCFHGvrl0Xh4OCiirmObDPdjWzJ3n_IMgLEw6ZLCMZSolex6hWpauUWA5nWNFkzsxu7ONVIb_jGpH3VqeC4VT41CwhumbAbSgKBscWooxkcNbySd3RjvmVadOcIUjpZ-9wBb7Q6Q6rY6TqixVt2WGXAn0BdQGVsFf5nA2-aZS-bzLWzBMDGkrTQJtBBXCqElvwg6_gtAY8B0fOoPCSOF4a4LlrrCG4IoQxdb2rvSPBj2_PmJu6wrwJOfxVlV8LF7uE9ll8DK3Owt2USIwAKD1qGu-9pra7WZckw&h=HF0q4oiLUvisLxKU3P9FKOdbb9pm7SR5BvRmRj0Q27M + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/4512D0F3-7AE7-4E57-A042-FB6F0B5FBF4E?api-version=2022-07-01-preview&t=639150350493566604&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=BD0l_kbwoTiZbFhuo5v4J-1SwSwYc2ID3eZx0mHPlPqNsR2Noz8lckIQFuT6fRkGA_TwWMlaep1pbUpH82Gh0IrxlNW-u5T2j6pXnCcenG_8Lk-SlcCDJLFYGDWFb0GEP_zaUxkf9jad21hI8fOx1Q2P0CVHiJ-wg6zBPLQ92_2cqLjs8R6X6ZGnV7trl49A1njgPRn6Gl2NAwyw7iLvmWXNRy_5Z7yaq0SpZIZnoVDtaTuDaueddRxjo17cG4PaISqN4YF4d4K__B1kkgaShdirkjow1t7Iw8HtCiQcufnTpjY3bDoDkUxxOxVzPFEc4-KWxYJstAvWaB19r7BOug&h=_Ys7tdMbfiD487-Nxs7L3ccy4AGTFuCvrwVBw1DjvXo response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/EA6576FB-97E3-458C-965A-5010B5ADC130", - "name": "EA6576FB-97E3-458C-965A-5010B5ADC130", "status": "Provisioning", - "startTime": "2025-09-03T06:38:12.1470000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '249' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:38:13 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/EA6576FB-97E3-458C-965A-5010B5ADC130?api-version=2022-07-01-preview&t=638924782929091830&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=V6hbRqrTnphXIWM4Y65vZ8XtwDlNC_ADv6HI-tJnJEJmJRN_0eZFCFHGvrl0Xh4OCiirmObDPdjWzJ3n_IMgLEw6ZLCMZSolex6hWpauUWA5nWNFkzsxu7ONVIb_jGpH3VqeC4VT41CwhumbAbSgKBscWooxkcNbySd3RjvmVadOcIUjpZ-9wBb7Q6Q6rY6TqixVt2WGXAn0BdQGVsFf5nA2-aZS-bzLWzBMDGkrTQJtBBXCqElvwg6_gtAY8B0fOoPCSOF4a4LlrrCG4IoQxdb2rvSPBj2_PmJu6wrwJOfxVlV8LF7uE9ll8DK3Owt2USIwAKD1qGu-9pra7WZckw&h=HF0q4oiLUvisLxKU3P9FKOdbb9pm7SR5BvRmRj0Q27M - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/EA6576FB-97E3-458C-965A-5010B5ADC130", - "name": "EA6576FB-97E3-458C-965A-5010B5ADC130", "status": "Provisioning", - "startTime": "2025-09-03T06:38:12.1470000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '249' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:38:13 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/EA6576FB-97E3-458C-965A-5010B5ADC130?api-version=2022-07-01-preview&t=638924782929091830&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=V6hbRqrTnphXIWM4Y65vZ8XtwDlNC_ADv6HI-tJnJEJmJRN_0eZFCFHGvrl0Xh4OCiirmObDPdjWzJ3n_IMgLEw6ZLCMZSolex6hWpauUWA5nWNFkzsxu7ONVIb_jGpH3VqeC4VT41CwhumbAbSgKBscWooxkcNbySd3RjvmVadOcIUjpZ-9wBb7Q6Q6rY6TqixVt2WGXAn0BdQGVsFf5nA2-aZS-bzLWzBMDGkrTQJtBBXCqElvwg6_gtAY8B0fOoPCSOF4a4LlrrCG4IoQxdb2rvSPBj2_PmJu6wrwJOfxVlV8LF7uE9ll8DK3Owt2USIwAKD1qGu-9pra7WZckw&h=HF0q4oiLUvisLxKU3P9FKOdbb9pm7SR5BvRmRj0Q27M - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/EA6576FB-97E3-458C-965A-5010B5ADC130", - "name": "EA6576FB-97E3-458C-965A-5010B5ADC130", "status": "Provisioning", - "startTime": "2025-09-03T06:38:12.1470000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '249' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:38:13 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/EA6576FB-97E3-458C-965A-5010B5ADC130?api-version=2022-07-01-preview&t=638924782929091830&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=V6hbRqrTnphXIWM4Y65vZ8XtwDlNC_ADv6HI-tJnJEJmJRN_0eZFCFHGvrl0Xh4OCiirmObDPdjWzJ3n_IMgLEw6ZLCMZSolex6hWpauUWA5nWNFkzsxu7ONVIb_jGpH3VqeC4VT41CwhumbAbSgKBscWooxkcNbySd3RjvmVadOcIUjpZ-9wBb7Q6Q6rY6TqixVt2WGXAn0BdQGVsFf5nA2-aZS-bzLWzBMDGkrTQJtBBXCqElvwg6_gtAY8B0fOoPCSOF4a4LlrrCG4IoQxdb2rvSPBj2_PmJu6wrwJOfxVlV8LF7uE9ll8DK3Owt2USIwAKD1qGu-9pra7WZckw&h=HF0q4oiLUvisLxKU3P9FKOdbb9pm7SR5BvRmRj0Q27M - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/EA6576FB-97E3-458C-965A-5010B5ADC130", - "name": "EA6576FB-97E3-458C-965A-5010B5ADC130", "status": "Succeeded", "startTime": - "2025-09-03T06:38:12.1470000Z", "endTime": "2025-09-03T06:38:15.9970000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/4512D0F3-7AE7-4E57-A042-FB6F0B5FBF4E", + "name": "4512D0F3-7AE7-4E57-A042-FB6F0B5FBF4E", "status": "Succeeded", "startTime": + "2026-05-22T08:24:08.1630000Z", "endTime": "2026-05-22T08:24:11.6970000Z"}' headers: Cache-Control: - no-cache @@ -279,7 +135,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:38:15 GMT + - Fri, 22 May 2026 08:24:19 GMT Expires: - '-1' Pragma: @@ -309,14 +165,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": - "Active"}, {"id": "8ceb74d9-6db1-4a4d-8648-11f63ef76229", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "123e3065-a9e9-491c-ac08-57c23f104a17", "displayName": "fabcli000001", "sku": "F4", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -326,15 +182,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '491' + - '462' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:38:21 GMT + - Fri, 22 May 2026 08:24:23 GMT Pragma: - no-cache RequestId: - - 81589dff-d4f6-455c-9068-e3632dabc7ac + - f96b66ba-e8e7-4080-af34-feef9918333d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -342,7 +198,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -360,14 +216,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": - "Active"}, {"id": "8ceb74d9-6db1-4a4d-8648-11f63ef76229", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "123e3065-a9e9-491c-ac08-57c23f104a17", "displayName": "fabcli000001", "sku": "F4", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -377,15 +233,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '491' + - '464' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:38:27 GMT + - Fri, 22 May 2026 08:24:28 GMT Pragma: - no-cache RequestId: - - f44ebfcc-9df8-42f8-ad6f-9cbfc7d910d1 + - d600819a-e084-4859-8e74-45ca66af4407 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -393,7 +249,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -411,14 +267,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": - "Active"}, {"id": "8ceb74d9-6db1-4a4d-8648-11f63ef76229", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "123e3065-a9e9-491c-ac08-57c23f104a17", "displayName": "fabcli000001", "sku": "F4", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -428,15 +284,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '491' + - '462' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:38:32 GMT + - Fri, 22 May 2026 08:24:34 GMT Pragma: - no-cache RequestId: - - a6d0a606-0364-4258-bf43-10697bd0f774 + - e29b9668-241d-4c4c-a747-aff671495890 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -444,7 +300,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -462,7 +318,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -475,13 +331,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:38:32 GMT + - Fri, 22 May 2026 08:24:35 GMT Expires: - '-1' Pragma: @@ -511,7 +367,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -524,13 +380,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:38:33 GMT + - Fri, 22 May 2026 08:24:35 GMT Expires: - '-1' Pragma: @@ -560,14 +416,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": - "Active"}, {"id": "8ceb74d9-6db1-4a4d-8648-11f63ef76229", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "123e3065-a9e9-491c-ac08-57c23f104a17", "displayName": "fabcli000001", "sku": "F4", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -577,15 +433,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '491' + - '462' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:38:37 GMT + - Fri, 22 May 2026 08:24:39 GMT Pragma: - no-cache RequestId: - - 13ffa7ae-0d61-4cfc-97fd-bbd2b7a82303 + - 31b25d24-944c-4351-8a83-51e070485e49 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -593,7 +449,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -611,7 +467,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -624,13 +480,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:38:36 GMT + - Fri, 22 May 2026 08:24:40 GMT Expires: - '-1' Pragma: @@ -662,7 +518,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -670,7 +526,7 @@ interactions: string: '' headers: Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/EE2DC993-3B77-4B8E-8745-FF149898ECDA?api-version=2022-07-01-preview&t=638924783184642039&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=Z_krZXh1BbGnuNwOWSOCz4pBtHNhrLooDb6EBsAf0pl73GwWNmMvaZIEt26fS3dHRGxhUDvER08KaqkYE71bjYgKa0HkXq_K-c9M-o4FdtlzVkD9mlhUlLep8OB_DyqEv_ziEFYwz_iI5WGxmuF-yYRZ2Fith-DaA2ouDNAvZSHOKoq6lhogqrH_8XvruLH8ztJ8rkOOh43y4i7l2iNB1Ir9PtBfsJLHeAyeqj-SJb2N5LGbs-xGLo-qTCXsFXhgXS1n0vuYAvubY4ZETJVMsd5EXNLCt1iMR9hV0W3koBVT92PCGMrvje_IJkdCdr16qUf9NIm7_tUJbLKTVDejmA&h=8yxIoQ_Za0tL2CMgBTMC4sljX3qn8eiw70j7lCjTUl0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/6BA90152-E5BD-4D88-BD12-89FAB5270F23?api-version=2022-07-01-preview&t=639150350833018817&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=olKwcpJXTfBMLvMNMtp9RR28mQjhX4NfM63biCom0Mz-PT_rIQ4gEMD0A7DTPz2UCnj3zF87Ou7Z0hdd_S5VuC0gu1vm___FwyDICgqsG1yRjgoAWDfM5eHZ00HdrZmTzorRmZJxPfowmVd40BG0BFAgL4bzPkHDE9mo_y0RY92IEt0Gg7tN3l949SGNGB9jHrA15Ul-CaybJZCntst45K-b14uqoeVGNtYoxK83I8omKCd8hPEDHrqRUIYbxM8dZDfDAtQ-I_6RgXJ39f7fjNazrc_rlxOU_YPdC4qdanEgwZiKDWghlE6xEW7EfR5FT9A6UZ4xSrRIDdoEFVpPhw&h=NHGu2f0rTt8oVKX93F9TpVt3tQX1mP_p93pfIa_vUZM Cache-Control: - no-cache Content-Length: @@ -678,11 +534,11 @@ interactions: Content-Security-Policy: - script-src 'self' Date: - - Wed, 03 Sep 2025 06:38:38 GMT + - Fri, 22 May 2026 08:24:42 GMT Expires: - '-1' Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/EE2DC993-3B77-4B8E-8745-FF149898ECDA?api-version=2022-07-01-preview&t=638924783184642039&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=gg_IZbMg9o4eR9U62Oi48mKyOYYWBE2rLPizUQGffpt3eWFO3iINZLLwfK0FrcDjUqIwrDzhe2FjoVCtRwOR-M_IgELUAG77a7S00k4JhFAOceXfWvReqNS9brG9Z4gm_mKQSQ6xhJeFR3ExKbYAo3t9zx4YPMm9GFyVGskym1nGqJ5qPpdiGDne63sSGAXuU8ctok7DRdxnScmPkyNF5ZoaD-hmIDJgSo8Re9PDpi15XMB9d1RlCOSAYIQ17ac-YKnBAom605wi7ehoZdIliqneJBliyqufuqWwjDA0kyuhAgokoW9wZM3oe8dwlh2yMoVVR1pN4KHZ8GDKWBj2OA&h=8bP_osnUAfqZ7uuKzWsC5lWYcjN_j0CJAMq5M7dMi_4 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/6BA90152-E5BD-4D88-BD12-89FAB5270F23?api-version=2022-07-01-preview&t=639150350833018817&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=BLexRZShqsxCrrH4Kw6esTGG17ifpsL7OZ-Ic3K4FJPhWpwra5youxVRbk9Ja-UUGvroNGUo4Abey2Mh_1Sve04eaeYoolvvOtqxEClt6WXdmFr3rEZatl8kxwDozOfTTXT5bTSSVRP4kbNz3-DcHxW9uLk1lSmCLC6cbowca84Lu5GQPrDv7ITMP2oKBw_X1XDwwt5PBbClZk2mmRT_xO4ZR4ej-kSxp-Xr5L8aYAf7UxOu0nseH0KhF6QVNifYDTKUWsosnXOKHWF9kdfeRcS1_2gsAoH0QklaLEUPzSKNFN6DNY6kfHDr4HhX_RjK06bLquG-mqZp-CmPMthzjg&h=D59DQqemA-ZGhk1foVi46vHK13LvhKEWWNdJFsEXqps Pragma: - no-cache Strict-Transport-Security: @@ -710,206 +566,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/EE2DC993-3B77-4B8E-8745-FF149898ECDA?api-version=2022-07-01-preview&t=638924783184642039&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=Z_krZXh1BbGnuNwOWSOCz4pBtHNhrLooDb6EBsAf0pl73GwWNmMvaZIEt26fS3dHRGxhUDvER08KaqkYE71bjYgKa0HkXq_K-c9M-o4FdtlzVkD9mlhUlLep8OB_DyqEv_ziEFYwz_iI5WGxmuF-yYRZ2Fith-DaA2ouDNAvZSHOKoq6lhogqrH_8XvruLH8ztJ8rkOOh43y4i7l2iNB1Ir9PtBfsJLHeAyeqj-SJb2N5LGbs-xGLo-qTCXsFXhgXS1n0vuYAvubY4ZETJVMsd5EXNLCt1iMR9hV0W3koBVT92PCGMrvje_IJkdCdr16qUf9NIm7_tUJbLKTVDejmA&h=8yxIoQ_Za0tL2CMgBTMC4sljX3qn8eiw70j7lCjTUl0 - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/EE2DC993-3B77-4B8E-8745-FF149898ECDA", - "name": "EE2DC993-3B77-4B8E-8745-FF149898ECDA", "status": "Deleting", "startTime": - "2025-09-03T06:38:37.8870000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:38:38 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/EE2DC993-3B77-4B8E-8745-FF149898ECDA?api-version=2022-07-01-preview&t=638924783184642039&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=Z_krZXh1BbGnuNwOWSOCz4pBtHNhrLooDb6EBsAf0pl73GwWNmMvaZIEt26fS3dHRGxhUDvER08KaqkYE71bjYgKa0HkXq_K-c9M-o4FdtlzVkD9mlhUlLep8OB_DyqEv_ziEFYwz_iI5WGxmuF-yYRZ2Fith-DaA2ouDNAvZSHOKoq6lhogqrH_8XvruLH8ztJ8rkOOh43y4i7l2iNB1Ir9PtBfsJLHeAyeqj-SJb2N5LGbs-xGLo-qTCXsFXhgXS1n0vuYAvubY4ZETJVMsd5EXNLCt1iMR9hV0W3koBVT92PCGMrvje_IJkdCdr16qUf9NIm7_tUJbLKTVDejmA&h=8yxIoQ_Za0tL2CMgBTMC4sljX3qn8eiw70j7lCjTUl0 - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/EE2DC993-3B77-4B8E-8745-FF149898ECDA", - "name": "EE2DC993-3B77-4B8E-8745-FF149898ECDA", "status": "Deleting", "startTime": - "2025-09-03T06:38:37.8870000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:38:38 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/EE2DC993-3B77-4B8E-8745-FF149898ECDA?api-version=2022-07-01-preview&t=638924783184642039&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=Z_krZXh1BbGnuNwOWSOCz4pBtHNhrLooDb6EBsAf0pl73GwWNmMvaZIEt26fS3dHRGxhUDvER08KaqkYE71bjYgKa0HkXq_K-c9M-o4FdtlzVkD9mlhUlLep8OB_DyqEv_ziEFYwz_iI5WGxmuF-yYRZ2Fith-DaA2ouDNAvZSHOKoq6lhogqrH_8XvruLH8ztJ8rkOOh43y4i7l2iNB1Ir9PtBfsJLHeAyeqj-SJb2N5LGbs-xGLo-qTCXsFXhgXS1n0vuYAvubY4ZETJVMsd5EXNLCt1iMR9hV0W3koBVT92PCGMrvje_IJkdCdr16qUf9NIm7_tUJbLKTVDejmA&h=8yxIoQ_Za0tL2CMgBTMC4sljX3qn8eiw70j7lCjTUl0 - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/EE2DC993-3B77-4B8E-8745-FF149898ECDA", - "name": "EE2DC993-3B77-4B8E-8745-FF149898ECDA", "status": "Deleting", "startTime": - "2025-09-03T06:38:37.8870000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:38:39 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/EE2DC993-3B77-4B8E-8745-FF149898ECDA?api-version=2022-07-01-preview&t=638924783184642039&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=Z_krZXh1BbGnuNwOWSOCz4pBtHNhrLooDb6EBsAf0pl73GwWNmMvaZIEt26fS3dHRGxhUDvER08KaqkYE71bjYgKa0HkXq_K-c9M-o4FdtlzVkD9mlhUlLep8OB_DyqEv_ziEFYwz_iI5WGxmuF-yYRZ2Fith-DaA2ouDNAvZSHOKoq6lhogqrH_8XvruLH8ztJ8rkOOh43y4i7l2iNB1Ir9PtBfsJLHeAyeqj-SJb2N5LGbs-xGLo-qTCXsFXhgXS1n0vuYAvubY4ZETJVMsd5EXNLCt1iMR9hV0W3koBVT92PCGMrvje_IJkdCdr16qUf9NIm7_tUJbLKTVDejmA&h=8yxIoQ_Za0tL2CMgBTMC4sljX3qn8eiw70j7lCjTUl0 - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/EE2DC993-3B77-4B8E-8745-FF149898ECDA", - "name": "EE2DC993-3B77-4B8E-8745-FF149898ECDA", "status": "Deleting", "startTime": - "2025-09-03T06:38:37.8870000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:38:41 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/EE2DC993-3B77-4B8E-8745-FF149898ECDA?api-version=2022-07-01-preview&t=638924783184642039&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=Z_krZXh1BbGnuNwOWSOCz4pBtHNhrLooDb6EBsAf0pl73GwWNmMvaZIEt26fS3dHRGxhUDvER08KaqkYE71bjYgKa0HkXq_K-c9M-o4FdtlzVkD9mlhUlLep8OB_DyqEv_ziEFYwz_iI5WGxmuF-yYRZ2Fith-DaA2ouDNAvZSHOKoq6lhogqrH_8XvruLH8ztJ8rkOOh43y4i7l2iNB1Ir9PtBfsJLHeAyeqj-SJb2N5LGbs-xGLo-qTCXsFXhgXS1n0vuYAvubY4ZETJVMsd5EXNLCt1iMR9hV0W3koBVT92PCGMrvje_IJkdCdr16qUf9NIm7_tUJbLKTVDejmA&h=8yxIoQ_Za0tL2CMgBTMC4sljX3qn8eiw70j7lCjTUl0 + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/6BA90152-E5BD-4D88-BD12-89FAB5270F23?api-version=2022-07-01-preview&t=639150350833018817&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=olKwcpJXTfBMLvMNMtp9RR28mQjhX4NfM63biCom0Mz-PT_rIQ4gEMD0A7DTPz2UCnj3zF87Ou7Z0hdd_S5VuC0gu1vm___FwyDICgqsG1yRjgoAWDfM5eHZ00HdrZmTzorRmZJxPfowmVd40BG0BFAgL4bzPkHDE9mo_y0RY92IEt0Gg7tN3l949SGNGB9jHrA15Ul-CaybJZCntst45K-b14uqoeVGNtYoxK83I8omKCd8hPEDHrqRUIYbxM8dZDfDAtQ-I_6RgXJ39f7fjNazrc_rlxOU_YPdC4qdanEgwZiKDWghlE6xEW7EfR5FT9A6UZ4xSrRIDdoEFVpPhw&h=NHGu2f0rTt8oVKX93F9TpVt3tQX1mP_p93pfIa_vUZM response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/EE2DC993-3B77-4B8E-8745-FF149898ECDA", - "name": "EE2DC993-3B77-4B8E-8745-FF149898ECDA", "status": "Deleting", "startTime": - "2025-09-03T06:38:37.8870000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/6BA90152-E5BD-4D88-BD12-89FAB5270F23", + "name": "6BA90152-E5BD-4D88-BD12-89FAB5270F23", "status": "Deleting", "startTime": + "2026-05-22T08:24:42.5930000Z"}' headers: Cache-Control: - no-cache @@ -920,7 +584,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:38:44 GMT + - Fri, 22 May 2026 08:24:53 GMT Expires: - '-1' Pragma: @@ -950,14 +614,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/EE2DC993-3B77-4B8E-8745-FF149898ECDA?api-version=2022-07-01-preview&t=638924783184642039&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=Z_krZXh1BbGnuNwOWSOCz4pBtHNhrLooDb6EBsAf0pl73GwWNmMvaZIEt26fS3dHRGxhUDvER08KaqkYE71bjYgKa0HkXq_K-c9M-o4FdtlzVkD9mlhUlLep8OB_DyqEv_ziEFYwz_iI5WGxmuF-yYRZ2Fith-DaA2ouDNAvZSHOKoq6lhogqrH_8XvruLH8ztJ8rkOOh43y4i7l2iNB1Ir9PtBfsJLHeAyeqj-SJb2N5LGbs-xGLo-qTCXsFXhgXS1n0vuYAvubY4ZETJVMsd5EXNLCt1iMR9hV0W3koBVT92PCGMrvje_IJkdCdr16qUf9NIm7_tUJbLKTVDejmA&h=8yxIoQ_Za0tL2CMgBTMC4sljX3qn8eiw70j7lCjTUl0 + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/6BA90152-E5BD-4D88-BD12-89FAB5270F23?api-version=2022-07-01-preview&t=639150350833018817&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=olKwcpJXTfBMLvMNMtp9RR28mQjhX4NfM63biCom0Mz-PT_rIQ4gEMD0A7DTPz2UCnj3zF87Ou7Z0hdd_S5VuC0gu1vm___FwyDICgqsG1yRjgoAWDfM5eHZ00HdrZmTzorRmZJxPfowmVd40BG0BFAgL4bzPkHDE9mo_y0RY92IEt0Gg7tN3l949SGNGB9jHrA15Ul-CaybJZCntst45K-b14uqoeVGNtYoxK83I8omKCd8hPEDHrqRUIYbxM8dZDfDAtQ-I_6RgXJ39f7fjNazrc_rlxOU_YPdC4qdanEgwZiKDWghlE6xEW7EfR5FT9A6UZ4xSrRIDdoEFVpPhw&h=NHGu2f0rTt8oVKX93F9TpVt3tQX1mP_p93pfIa_vUZM response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/EE2DC993-3B77-4B8E-8745-FF149898ECDA", - "name": "EE2DC993-3B77-4B8E-8745-FF149898ECDA", "status": "Deleting", "startTime": - "2025-09-03T06:38:37.8870000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/6BA90152-E5BD-4D88-BD12-89FAB5270F23", + "name": "6BA90152-E5BD-4D88-BD12-89FAB5270F23", "status": "Deleting", "startTime": + "2026-05-22T08:24:42.5930000Z"}' headers: Cache-Control: - no-cache @@ -968,7 +632,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:38:52 GMT + - Fri, 22 May 2026 08:25:04 GMT Expires: - '-1' Pragma: @@ -998,14 +662,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/EE2DC993-3B77-4B8E-8745-FF149898ECDA?api-version=2022-07-01-preview&t=638924783184642039&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=Z_krZXh1BbGnuNwOWSOCz4pBtHNhrLooDb6EBsAf0pl73GwWNmMvaZIEt26fS3dHRGxhUDvER08KaqkYE71bjYgKa0HkXq_K-c9M-o4FdtlzVkD9mlhUlLep8OB_DyqEv_ziEFYwz_iI5WGxmuF-yYRZ2Fith-DaA2ouDNAvZSHOKoq6lhogqrH_8XvruLH8ztJ8rkOOh43y4i7l2iNB1Ir9PtBfsJLHeAyeqj-SJb2N5LGbs-xGLo-qTCXsFXhgXS1n0vuYAvubY4ZETJVMsd5EXNLCt1iMR9hV0W3koBVT92PCGMrvje_IJkdCdr16qUf9NIm7_tUJbLKTVDejmA&h=8yxIoQ_Za0tL2CMgBTMC4sljX3qn8eiw70j7lCjTUl0 + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/6BA90152-E5BD-4D88-BD12-89FAB5270F23?api-version=2022-07-01-preview&t=639150350833018817&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=olKwcpJXTfBMLvMNMtp9RR28mQjhX4NfM63biCom0Mz-PT_rIQ4gEMD0A7DTPz2UCnj3zF87Ou7Z0hdd_S5VuC0gu1vm___FwyDICgqsG1yRjgoAWDfM5eHZ00HdrZmTzorRmZJxPfowmVd40BG0BFAgL4bzPkHDE9mo_y0RY92IEt0Gg7tN3l949SGNGB9jHrA15Ul-CaybJZCntst45K-b14uqoeVGNtYoxK83I8omKCd8hPEDHrqRUIYbxM8dZDfDAtQ-I_6RgXJ39f7fjNazrc_rlxOU_YPdC4qdanEgwZiKDWghlE6xEW7EfR5FT9A6UZ4xSrRIDdoEFVpPhw&h=NHGu2f0rTt8oVKX93F9TpVt3tQX1mP_p93pfIa_vUZM response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/EE2DC993-3B77-4B8E-8745-FF149898ECDA", - "name": "EE2DC993-3B77-4B8E-8745-FF149898ECDA", "status": "Succeeded", "startTime": - "2025-09-03T06:38:37.8870000Z", "endTime": "2025-09-03T06:38:59.1630000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/6BA90152-E5BD-4D88-BD12-89FAB5270F23", + "name": "6BA90152-E5BD-4D88-BD12-89FAB5270F23", "status": "Succeeded", "startTime": + "2026-05-22T08:24:42.5930000Z", "endTime": "2026-05-22T08:25:12.0830000Z"}' headers: Cache-Control: - no-cache @@ -1016,7 +680,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:39:08 GMT + - Fri, 22 May 2026 08:25:15 GMT Expires: - '-1' Pragma: diff --git a/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_managed_private_endpoint_with_params_automatic_approval_success.yaml b/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_managed_private_endpoint_with_params_automatic_approval_success.yaml index de2c01492..cf2001390 100644 --- a/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_managed_private_endpoint_with_params_automatic_approval_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_mkdir/test_mkdir_managed_private_endpoint_with_params_automatic_approval_success.yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e90776ff-42ae-4f92-b45d-25c3d375832b", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": + "My workspace", "description": "", "type": "Personal"}, {"id": "a71d9595-9e5a-4a56-82d2-02c2f80f245f", + "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: - - '359' + - '2762' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:45:33 GMT + - Fri, 22 May 2026 08:29:40 GMT Pragma: - no-cache RequestId: - - 9a7d57fe-28a2-412e-948b-112c06470fac + - a73f5d0e-6523-49eb-99f3-f67d7abc061c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -43,7 +44,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -61,9 +62,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e90776ff-42ae-4f92-b45d-25c3d375832b/managedPrivateEndpoints + uri: https://api.fabric.microsoft.com/v1/workspaces/a71d9595-9e5a-4a56-82d2-02c2f80f245f/managedPrivateEndpoints response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:45:33 GMT + - Fri, 22 May 2026 08:29:41 GMT Pragma: - no-cache RequestId: - - abe727da-b958-4271-81ec-8335897f246b + - 2fd877a8-c303-4504-84e7-ea9995798e04 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -91,7 +92,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -109,9 +110,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e90776ff-42ae-4f92-b45d-25c3d375832b/managedPrivateEndpoints + uri: https://api.fabric.microsoft.com/v1/workspaces/a71d9595-9e5a-4a56-82d2-02c2f80f245f/managedPrivateEndpoints response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:45:33 GMT + - Fri, 22 May 2026 08:29:42 GMT Pragma: - no-cache RequestId: - - e4443e19-d25a-436d-ad79-aaff31b5fe54 + - ce2e8786-95d2-4ca5-a7b7-59b9e0c9892c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -139,7 +140,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -156,16 +157,16 @@ interactions: Connection: - keep-alive Content-Length: - - '262' + - '232' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/e90776ff-42ae-4f92-b45d-25c3d375832b/managedPrivateEndpoints + uri: https://api.fabric.microsoft.com/v1/workspaces/a71d9595-9e5a-4a56-82d2-02c2f80f245f/managedPrivateEndpoints response: body: - string: '{"id": "8921d315-633b-4ff8-a699-6e0cfc0abcff", "provisioningState": + string: '{"id": "ce9fadf5-0754-4504-8a53-181e41dc9023", "provisioningState": "Provisioning", "connectionState": {"status": null, "description": null, "actionsRequired": null}, "name": "fabcli000001", "targetPrivateLinkResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Sql/servers/mocked_sql_server_server", "targetSubresourceType": "sqlServer"}' @@ -177,17 +178,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '269' + - '274' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:45:35 GMT + - Fri, 22 May 2026 08:29:44 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/e90776ff-42ae-4f92-b45d-25c3d375832b/managedPrivateEndpoints/8921d315-633b-4ff8-a699-6e0cfc0abcff + - https://api.fabric.microsoft.com/v1/workspaces/a71d9595-9e5a-4a56-82d2-02c2f80f245f/managedPrivateEndpoints/ce9fadf5-0754-4504-8a53-181e41dc9023 Pragma: - no-cache RequestId: - - 1d4d69bb-47e1-470c-8606-d1000dfb249e + - 281b5e1c-9a0d-4688-ae5e-bd384f4e7a46 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -195,7 +196,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -213,12 +214,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e90776ff-42ae-4f92-b45d-25c3d375832b/managedPrivateEndpoints/8921d315-633b-4ff8-a699-6e0cfc0abcff + uri: https://api.fabric.microsoft.com/v1/workspaces/a71d9595-9e5a-4a56-82d2-02c2f80f245f/managedPrivateEndpoints/ce9fadf5-0754-4504-8a53-181e41dc9023 response: body: - string: '{"id": "8921d315-633b-4ff8-a699-6e0cfc0abcff", "provisioningState": + string: '{"id": "ce9fadf5-0754-4504-8a53-181e41dc9023", "provisioningState": "Provisioning", "connectionState": {"status": null, "description": null, "actionsRequired": null}, "name": "fabcli000001", "targetPrivateLinkResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Sql/servers/mocked_sql_server_server", "targetSubresourceType": "sqlServer"}' @@ -230,15 +231,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '269' + - '274' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:45:34 GMT + - Fri, 22 May 2026 08:29:45 GMT Pragma: - no-cache RequestId: - - da40a88a-5460-45c1-b12c-4d21d057affa + - d2e80a8f-e6d5-4ac5-a49b-bf9ade1b24fa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -246,7 +247,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -264,7 +265,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql?api-version=2021-04-01 response: @@ -280,16 +281,17 @@ interactions: {"applicationId": "9c8b80bc-6887-42d0-b1af-d0c40f9bf1fa"}, {"applicationId": "ceecbdd6-288c-4be9-8445-74f139e5db19", "roleDefinitionId": "fc2bd133-800a-4a15-b4aa-3c8b28179efe"}], "resourceTypes": [{"resourceType": "operations", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", + Central", "Australia East", "Australia Southeast", "Austria East", "Belgium + Central", "Brazil South", "Canada Central", "Canada East", "Central India", + "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East + US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel + Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea + South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central + US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South + Africa North", "South Central US", "South India", "Southeast Asia", "Spain + Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", @@ -298,63 +300,65 @@ interactions: "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2015-05-01", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, {"resourceType": "locations", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", + "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", + "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany + West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan + East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico + Central", "New Zealand North", "North Central US", "North Europe", "Norway + East", "Poland Central", "Qatar Central", "South Africa North", "South Central + US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland + North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", + "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", + "2014-04-01", "2014-01-01"], "capabilities": "None"}, {"resourceType": "locations/capabilities", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", - "2014-01-01"], "capabilities": "None"}, {"resourceType": "locations/capabilities", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01", "2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "locations/databaseAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/databaseOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", + "2015-05-01", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": + "None"}, {"resourceType": "locations/databaseAzureAsyncOperation", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": + "locations/databaseOperationResults", "locations": ["Australia Central", "Australia + East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", + "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", + "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany + West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan + East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico + Central", "New Zealand North", "North Central US", "North Europe", "Norway + East", "Poland Central", "Qatar Central", "South Africa North", "South Central + US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland + North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", + "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", + "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", @@ -362,8 +366,104 @@ interactions: "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": "locations/databaseEncryptionProtectorRevalidateAzureAsyncOperation", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01"], "capabilities": "None"}, {"resourceType": "locations/databaseEncryptionProtectorRevalidateOperationResults", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01"], "capabilities": "None"}, {"resourceType": "locations/databaseEncryptionProtectorRevertAzureAsyncOperation", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/databaseEncryptionProtectorRevertOperationResults", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/serverKeyAzureAsyncOperation", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/serverKeyOperationResults", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": + "None"}, {"resourceType": "servers/keys", "locations": ["Australia Central", + "Australia East", "Australia Southeast", "Austria East", "Belgium Central", + "Brazil South", "Canada Central", "Canada East", "Central India", "Central + US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", @@ -371,28 +471,175 @@ interactions: North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "locations/databaseEncryptionProtectorRevalidateOperationResults", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": + "None"}, {"resourceType": "servers/encryptionProtector", "locations": ["Australia + Central", "Australia East", "Australia Southeast", "Austria East", "Belgium + Central", "Brazil South", "Canada Central", "Canada East", "Central India", + "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East + US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel + Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea + South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central + US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South + Africa North", "South Central US", "South India", "Southeast Asia", "Spain + Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/encryptionProtectorOperationResults", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01"], "capabilities": "None"}, {"resourceType": "locations/databaseEncryptionProtectorRevertAzureAsyncOperation", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], + "capabilities": "None"}, {"resourceType": "locations/encryptionProtectorAzureAsyncOperation", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], + "capabilities": "None"}, {"resourceType": "locations/externalPolicyBasedAuthorizationsAzureAsycOperation", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01"], "capabilities": "None"}, {"resourceType": "locations/externalPolicyBasedAuthorizationsOperationResults", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01"], "capabilities": "None"}, {"resourceType": "locations/refreshExternalGovernanceStatusOperationResults", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview"], "capabilities": "None"}, {"resourceType": "locations/refreshExternalGovernanceStatusAzureAsyncOperation", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview"], "capabilities": "None"}, {"resourceType": "locations/refreshExternalGovernanceStatusMIOperationResults", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/refreshExternalGovernanceStatusMIAzureAsyncOperation", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/managedInstanceKeyAzureAsyncOperation", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview"], "capabilities": "None"}, {"resourceType": + "locations/managedInstanceKeyOperationResults", "locations": ["Australia Central", + "Australia East", "Australia Southeast", "Austria East", "Belgium Central", + "Brazil South", "Canada Central", "Canada East", "Central India", "Central + US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", @@ -400,112 +647,207 @@ interactions: North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/databaseEncryptionProtectorRevertOperationResults", + US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedInstanceEncryptionProtectorOperationResults", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/serverKeyAzureAsyncOperation", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview"], "capabilities": "None"}, {"resourceType": + "locations/managedInstanceEncryptionProtectorAzureAsyncOperation", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview"], "capabilities": "None"}, {"resourceType": "locations/transparentDataEncryptionAzureAsyncOperation", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/serverKeyOperationResults", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview"], + "capabilities": "None"}, {"resourceType": "locations/transparentDataEncryptionOperationResults", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/keys", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview"], + "capabilities": "None"}, {"resourceType": "locations/managedtransparentDataEncryptionAzureAsyncOperation", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/encryptionProtector", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview"], + "capabilities": "None"}, {"resourceType": "locations/managedtransparentDataEncryptionOperationResults", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/encryptionProtectorOperationResults", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview"], + "capabilities": "None"}, {"resourceType": "servers/tdeCertificates", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview"], "capabilities": "None"}, {"resourceType": "locations/tdeCertAzureAsyncOperation", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview"], "capabilities": "None"}, {"resourceType": + "locations/tdeCertOperationResults", "locations": ["Australia Central", "Australia + East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", + "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", + "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany + West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan + East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico + Central", "New Zealand North", "North Central US", "North Europe", "Norway + East", "Poland Central", "Qatar Central", "South Africa North", "South Central + US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland + North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", + "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", + "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/encryptionProtectorAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", + "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/serverAzureAsyncOperation", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/serverOperationResults", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/usages", "locations": ["Australia Central", + "Australia East", "Australia Southeast", "Austria East", "Belgium Central", + "Brazil South", "Canada Central", "Canada East", "Central India", "Central + US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", @@ -513,436 +855,303 @@ interactions: North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", + US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2015-05-01", + "2014-04-01-preview"], "capabilities": "None"}, {"resourceType": "checkNameAvailability", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", + "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, + {"resourceType": "servers", "locations": ["Australia Central", "Australia + East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", + "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", + "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany + West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan + East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico + Central", "New Zealand North", "North Central US", "North Europe", "Norway + East", "Poland Central", "Qatar Central", "South Africa North", "South Central + US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland + North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", + "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", + "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/externalPolicyBasedAuthorizationsAzureAsycOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "locations/externalPolicyBasedAuthorizationsOperationResults", "locations": + "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": + "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, + SupportsTags, SupportsLocation"}, {"resourceType": "servers/databases", "locations": ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01"], "capabilities": "None"}, {"resourceType": "locations/refreshExternalGovernanceStatusOperationResults", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2015-01-01", + "2014-04-01-preview", "2014-04-01", "2014-01-01"], "zoneMappings": [{"location": + "Australia East", "zones": ["2", "3", "1"]}, {"location": "Austria East", + "zones": ["2", "3", "1"]}, {"location": "Belgium Central", "zones": ["2", + "3", "1"]}, {"location": "Brazil South", "zones": ["2", "3", "1"]}, {"location": + "Canada Central", "zones": ["2", "3", "1"]}, {"location": "Central India", + "zones": ["2", "3", "1"]}, {"location": "Central US", "zones": ["2", "3", + "1"]}, {"location": "Chile Central", "zones": ["2", "3", "1"]}, {"location": + "Denmark East", "zones": ["2", "3", "1"]}, {"location": "East Asia", "zones": + ["2", "3", "1"]}, {"location": "East US", "zones": ["2", "3", "1"]}, {"location": + "East US 2", "zones": ["2", "3", "1"]}, {"location": "France Central", "zones": + ["2", "3", "1"]}, {"location": "Germany West Central", "zones": ["2", "3", + "1"]}, {"location": "Indonesia Central", "zones": ["2", "3", "1"]}, {"location": + "Israel Central", "zones": ["2", "3", "1"]}, {"location": "Italy North", "zones": + ["2", "3", "1"]}, {"location": "Japan East", "zones": ["2", "3", "1"]}, {"location": + "Japan West", "zones": ["2", "3", "1"]}, {"location": "Korea Central", "zones": + ["2", "3", "1"]}, {"location": "Malaysia West", "zones": ["2", "3", "1"]}, + {"location": "Mexico Central", "zones": ["2", "3", "1"]}, {"location": "New + Zealand North", "zones": ["2", "3", "1"]}, {"location": "North Europe", "zones": + ["2", "3", "1"]}, {"location": "Norway East", "zones": ["2", "3", "1"]}, {"location": + "Poland Central", "zones": ["2", "3", "1"]}, {"location": "Qatar Central", + "zones": ["2", "3", "1"]}, {"location": "South Africa North", "zones": ["2", + "3", "1"]}, {"location": "South Central US", "zones": ["2", "3", "1"]}, {"location": + "Southeast Asia", "zones": ["2", "3", "1"]}, {"location": "Spain Central", + "zones": ["2", "3", "1"]}, {"location": "Sweden Central", "zones": ["2", "3", + "1"]}, {"location": "Switzerland North", "zones": ["2", "3", "1"]}, {"location": + "UAE North", "zones": ["2", "3", "1"]}, {"location": "UK South", "zones": + ["2", "3", "1"]}, {"location": "West Europe", "zones": ["2", "3", "1"]}, {"location": + "West US 2", "zones": ["2", "3", "1"]}, {"location": "West US 3", "zones": + ["2", "3", "1"]}], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, + SupportsTags, SupportsLocation"}, {"resourceType": "servers/serviceObjectives", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/refreshExternalGovernanceStatusAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview"], "capabilities": "None"}, {"resourceType": "locations/refreshExternalGovernanceStatusMIOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/refreshExternalGovernanceStatusMIAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedInstanceKeyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedInstanceKeyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedInstanceEncryptionProtectorOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedInstanceEncryptionProtectorAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/transparentDataEncryptionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/transparentDataEncryptionOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedtransparentDataEncryptionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedtransparentDataEncryptionOperationResults", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", + "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/communicationLinks", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "servers/tdeCertificates", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", + "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/administrators", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/tdeCertAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/tdeCertOperationResults", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + "2018-06-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": + "None"}, {"resourceType": "servers/administratorOperationResults", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], + "capabilities": "None"}, {"resourceType": "locations/serverAdministratorAzureAsyncOperation", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/serverAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/serverOperationResults", + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/serverAdministratorOperationResults", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/usages", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "servers/restorableDroppedDatabases", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01", "2014-04-01-preview"], "capabilities": - "None"}, {"resourceType": "checkNameAvailability", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, + {"resourceType": "servers/recoverableDatabases", "locations": ["Australia + Central", "Australia East", "Australia Southeast", "Austria East", "Belgium + Central", "Brazil South", "Canada Central", "Canada East", "Central India", + "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East + US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel + Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea + South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central + US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South + Africa North", "South Central US", "South India", "Southeast Asia", "Spain + Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2014-04-01-preview", - "2014-04-01", "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers", + "2014-04-01", "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/databases/geoBackupPolicies", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", + "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, + {"resourceType": "servers/import", "locations": ["Australia Central", "Australia + East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", + "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", + "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany + West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan + East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico + Central", "New Zealand North", "North Central US", "North Europe", "Norway + East", "Poland Central", "Qatar Central", "South Africa North", "South Central + US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland + North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", + "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", + "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"}, {"resourceType": "servers/databases", "locations": + "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, + {"resourceType": "servers/importExportOperationResults", "locations": ["Australia + Central", "Australia East", "Australia Southeast", "Austria East", "Belgium + Central", "Brazil South", "Canada Central", "Canada East", "Central India", + "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East + US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel + Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea + South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central + US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South + Africa North", "South Central US", "South India", "Southeast Asia", "Spain + Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], + "capabilities": "None"}, {"resourceType": "servers/operationResults", "locations": ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], + "capabilities": "None"}, {"resourceType": "servers/databases/backupLongTermRetentionPolicies", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", - "2015-01-01", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "zoneMappings": - [{"location": "Australia East", "zones": ["2", "1", "3"]}, {"location": "Austria - East", "zones": ["2", "1", "3"]}, {"location": "Brazil South", "zones": ["2", - "1", "3"]}, {"location": "Canada Central", "zones": ["2", "1", "3"]}, {"location": - "Central India", "zones": ["2", "1", "3"]}, {"location": "Central US", "zones": - ["2", "1", "3"]}, {"location": "Chile Central", "zones": ["2", "1", "3"]}, - {"location": "East Asia", "zones": ["2", "1", "3"]}, {"location": "East US", - "zones": ["2", "1", "3"]}, {"location": "East US 2", "zones": ["2", "1", "3"]}, - {"location": "France Central", "zones": ["2", "1", "3"]}, {"location": "Germany - West Central", "zones": ["2", "1", "3"]}, {"location": "Indonesia Central", - "zones": ["2", "1", "3"]}, {"location": "Israel Central", "zones": ["2", "1", - "3"]}, {"location": "Italy North", "zones": ["2", "1", "3"]}, {"location": - "Japan East", "zones": ["2", "1", "3"]}, {"location": "Japan West", "zones": - ["2", "1", "3"]}, {"location": "Korea Central", "zones": ["2", "1", "3"]}, - {"location": "Malaysia West", "zones": ["2", "1", "3"]}, {"location": "Mexico - Central", "zones": ["2", "1", "3"]}, {"location": "New Zealand North", "zones": - ["2", "1", "3"]}, {"location": "North Europe", "zones": ["2", "1", "3"]}, - {"location": "Norway East", "zones": ["2", "1", "3"]}, {"location": "Poland - Central", "zones": ["2", "1", "3"]}, {"location": "Qatar Central", "zones": - ["2", "1", "3"]}, {"location": "South Africa North", "zones": ["2", "1", "3"]}, - {"location": "South Central US", "zones": ["2", "1", "3"]}, {"location": "Southeast - Asia", "zones": ["2", "1", "3"]}, {"location": "Spain Central", "zones": ["2", - "1", "3"]}, {"location": "Sweden Central", "zones": ["2", "1", "3"]}, {"location": - "Switzerland North", "zones": ["2", "1", "3"]}, {"location": "UAE North", - "zones": ["2", "1", "3"]}, {"location": "UK South", "zones": ["2", "1", "3"]}, - {"location": "West Europe", "zones": ["2", "1", "3"]}, {"location": "West - US 2", "zones": ["2", "1", "3"]}, {"location": "West US 3", "zones": ["2", - "1", "3"]}], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, - SupportsTags, SupportsLocation"}, {"resourceType": "servers/serviceObjectives", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": + "None"}, {"resourceType": "servers/databases/backupShortTermRetentionPolicies", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/communicationLinks", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/administrators", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", @@ -950,111 +1159,98 @@ interactions: Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2014-04-01-preview", - "2014-04-01", "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/administratorOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "locations/serverAdministratorAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/serverAdministratorOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview"], "capabilities": "None"}, {"resourceType": + "servers/databaseSecurityPolicies", "locations": ["Australia Central", "Australia + East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", + "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", + "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", + "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", + "2014-04-01", "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/automaticTuning", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": + "None"}, {"resourceType": "servers/databases/automaticTuning", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/restorableDroppedDatabases", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "servers/recoverableDatabases", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": + "None"}, {"resourceType": "servers/databases/transparentDataEncryption", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2014-04-01-preview", - "2014-04-01", "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/databases/geoBackupPolicies", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2017-03-01-preview", + "2015-05-01-preview", "2014-04-01-preview", "2014-04-01"], "capabilities": + "None"}, {"resourceType": "servers/databases/ledgerDigestUploads", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/ledgerDigestUploadsAzureAsyncOperation", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "servers/import", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", @@ -1062,27 +1258,15 @@ interactions: Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "servers/importExportOperationResults", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/operationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview"], + "capabilities": "None"}, {"resourceType": "locations/ledgerDigestUploadsOperationResults", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", @@ -1090,56 +1274,64 @@ interactions: Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", - "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/databases/backupLongTermRetentionPolicies", + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview"], + "capabilities": "None"}, {"resourceType": "servers/recommendedElasticPools", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/databases/backupShortTermRetentionPolicies", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", + "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/databases/dataMaskingPolicies", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/databaseSecurityPolicies", "locations": + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", + "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, + {"resourceType": "servers/databases/dataMaskingPolicies/rules", "locations": ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/automaticTuning", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2014-04-01-preview", + "2014-04-01", "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/databases/securityAlertPolicies", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", @@ -1147,95 +1339,271 @@ interactions: Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/automaticTuning", + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": + "None"}, {"resourceType": "servers/securityAlertPolicies", "locations": ["Australia + Central", "Australia East", "Australia Southeast", "Austria East", "Belgium + Central", "Brazil South", "Canada Central", "Canada East", "Central India", + "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East + US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel + Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea + South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central + US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South + Africa North", "South Central US", "South India", "Southeast Asia", "Spain + Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": + "None"}, {"resourceType": "servers/databases/advancedThreatProtectionSettings", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/transparentDataEncryption", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2014-04-01-preview", - "2014-04-01"], "capabilities": "None"}, {"resourceType": "servers/databases/ledgerDigestUploads", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01"], "capabilities": "None"}, {"resourceType": "servers/advancedThreatProtectionSettings", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview"], "capabilities": "None"}, {"resourceType": "locations/ledgerDigestUploadsAzureAsyncOperation", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01"], "capabilities": "None"}, {"resourceType": "managedInstances/databases/advancedThreatProtectionSettings", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview"], "capabilities": "None"}, {"resourceType": "locations/ledgerDigestUploadsOperationResults", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], "capabilities": + "None"}, {"resourceType": "managedInstances/advancedThreatProtectionSettings", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], "capabilities": + "None"}, {"resourceType": "servers/databases/auditingSettings", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": + "None"}, {"resourceType": "servers/auditingSettings", "locations": ["Australia + Central", "Australia East", "Australia Southeast", "Austria East", "Belgium + Central", "Brazil South", "Canada Central", "Canada East", "Central India", + "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East + US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel + Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea + South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central + US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South + Africa North", "South Central US", "South India", "Southeast Asia", "Spain + Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": + "None"}, {"resourceType": "servers/extendedAuditingSettings", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": + "servers/devOpsAuditingSettings", "locations": ["Australia Central", "Australia + East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", + "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", + "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany + West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan + East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico + Central", "New Zealand North", "North Central US", "North Europe", "Norway + East", "Poland Central", "Qatar Central", "South Africa North", "South Central + US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland + North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", + "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", + "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview"], "capabilities": "None"}, {"resourceType": "servers/recommendedElasticPools", + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview"], + "capabilities": "None"}, {"resourceType": "locations/auditingSettingsAzureAsyncOperation", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/auditingSettingsOperationResults", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": + "locations/extendedAuditingSettingsAzureAsyncOperation", "locations": ["Australia + Central", "Australia East", "Australia Southeast", "Austria East", "Belgium + Central", "Brazil South", "Canada Central", "Canada East", "Central India", + "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East + US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel + Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea + South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central + US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South + Africa North", "South Central US", "South India", "Southeast Asia", "Spain + Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": + "locations/extendedAuditingSettingsOperationResults", "locations": ["Australia + Central", "Australia East", "Australia Southeast", "Austria East", "Belgium + Central", "Brazil South", "Canada Central", "Canada East", "Central India", + "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East + US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel + Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea + South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central + US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South + Africa North", "South Central US", "South India", "Southeast Asia", "Spain + Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": + "locations/devOpsAuditingSettingsOperationResults", "locations": ["Australia + Central", "Australia East", "Australia Southeast", "Austria East", "Belgium + Central", "Brazil South", "Canada Central", "Canada East", "Central India", + "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East + US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel + Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea + South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central + US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South + Africa North", "South Central US", "South India", "Southeast Asia", "Spain + Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview"], "capabilities": "None"}, {"resourceType": + "locations/devOpsAuditingSettingsAzureAsyncOperation", "locations": ["Australia + Central", "Australia East", "Australia Southeast", "Austria East", "Belgium + Central", "Brazil South", "Canada Central", "Canada East", "Central India", + "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East + US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel + Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea + South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central + US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South + Africa North", "South Central US", "South India", "Southeast Asia", "Spain + Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview"], "capabilities": "None"}, {"resourceType": + "locations/elasticPoolAzureAsyncOperation", "locations": ["Australia Central", + "Australia East", "Australia Southeast", "Austria East", "Belgium Central", + "Brazil South", "Canada Central", "Canada East", "Central India", "Central + US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", @@ -1243,95 +1611,131 @@ interactions: North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/databases/dataMaskingPolicies", + US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2015-05-01"], + "capabilities": "None"}, {"resourceType": "locations/elasticPoolOperationResults", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "servers/databases/dataMaskingPolicies/rules", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", - "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/databases/securityAlertPolicies", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany + "2015-05-01"], "capabilities": "None"}, {"resourceType": "servers/elasticpools", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-09-01-preview", + "2015-05-01-preview", "2015-05-01", "2014-04-01-preview", "2014-04-01", "2014-01-01"], + "zoneMappings": [{"location": "Australia East", "zones": ["2", "3", "1"]}, + {"location": "Austria East", "zones": ["2", "3", "1"]}, {"location": "Belgium + Central", "zones": ["2", "3", "1"]}, {"location": "Brazil South", "zones": + ["2", "3", "1"]}, {"location": "Canada Central", "zones": ["2", "3", "1"]}, + {"location": "Central India", "zones": ["2", "3", "1"]}, {"location": "Central + US", "zones": ["2", "3", "1"]}, {"location": "Chile Central", "zones": ["2", + "3", "1"]}, {"location": "Denmark East", "zones": ["2", "3", "1"]}, {"location": + "East Asia", "zones": ["2", "3", "1"]}, {"location": "East US", "zones": ["2", + "3", "1"]}, {"location": "East US 2", "zones": ["2", "3", "1"]}, {"location": + "France Central", "zones": ["2", "3", "1"]}, {"location": "Germany West Central", + "zones": ["2", "3", "1"]}, {"location": "Indonesia Central", "zones": ["2", + "3", "1"]}, {"location": "Israel Central", "zones": ["2", "3", "1"]}, {"location": + "Italy North", "zones": ["2", "3", "1"]}, {"location": "Japan East", "zones": + ["2", "3", "1"]}, {"location": "Japan West", "zones": ["2", "3", "1"]}, {"location": + "Korea Central", "zones": ["2", "3", "1"]}, {"location": "Malaysia West", + "zones": ["2", "3", "1"]}, {"location": "Mexico Central", "zones": ["2", "3", + "1"]}, {"location": "New Zealand North", "zones": ["2", "3", "1"]}, {"location": + "North Europe", "zones": ["2", "3", "1"]}, {"location": "Norway East", "zones": + ["2", "3", "1"]}, {"location": "Poland Central", "zones": ["2", "3", "1"]}, + {"location": "Qatar Central", "zones": ["2", "3", "1"]}, {"location": "South + Africa North", "zones": ["2", "3", "1"]}, {"location": "South Central US", + "zones": ["2", "3", "1"]}, {"location": "Southeast Asia", "zones": ["2", "3", + "1"]}, {"location": "Spain Central", "zones": ["2", "3", "1"]}, {"location": + "Sweden Central", "zones": ["2", "3", "1"]}, {"location": "Switzerland North", + "zones": ["2", "3", "1"]}, {"location": "UAE North", "zones": ["2", "3", "1"]}, + {"location": "UK South", "zones": ["2", "3", "1"]}, {"location": "West Europe", + "zones": ["2", "3", "1"]}, {"location": "West US 2", "zones": ["2", "3", "1"]}, + {"location": "West US 3", "zones": ["2", "3", "1"]}], "capabilities": "CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}, {"resourceType": + "servers/jobAccounts", "locations": ["Australia Central", "Australia East", + "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", + "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", + "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", + "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2015-05-01-preview"], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, + SupportsTags, SupportsLocation"}, {"resourceType": "servers/jobAgents", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/securityAlertPolicies", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany + "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "CrossResourceGroupResourceMove, + CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}, {"resourceType": + "locations/jobAgentOperationResults", "locations": ["Australia Central", "Australia + East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", + "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", + "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/databases/advancedThreatProtectionSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", + "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", + "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "servers/advancedThreatProtectionSettings", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East + "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", + "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], + "capabilities": "None"}, {"resourceType": "locations/jobAgentAzureAsyncOperation", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", @@ -1339,226 +1743,122 @@ interactions: Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01"], "capabilities": - "None"}, {"resourceType": "managedInstances/databases/advancedThreatProtectionSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "managedInstances/advancedThreatProtectionSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/databases/auditingSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/auditingSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/extendedAuditingSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/devOpsAuditingSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview"], - "capabilities": "None"}, {"resourceType": "locations/auditingSettingsAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/auditingSettingsOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/extendedAuditingSettingsAzureAsyncOperation", + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": + "None"}, {"resourceType": "servers/jobAgents/privateEndpoints", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/jobAgentPrivateEndpointOperationResults", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/extendedAuditingSettingsOperationResults", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview"], "capabilities": "None"}, {"resourceType": + "locations/jobAgentPrivateEndpointAzureAsyncOperation", "locations": ["Australia + Central", "Australia East", "Australia Southeast", "Austria East", "Belgium + Central", "Brazil South", "Canada Central", "Canada East", "Central India", + "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East + US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel + Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea + South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central + US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South + Africa North", "South Central US", "South India", "Southeast Asia", "Spain + Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/jobAgents/jobs", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": + "None"}, {"resourceType": "servers/jobAgents/jobs/steps", "locations": ["Australia + Central", "Australia East", "Australia Southeast", "Austria East", "Belgium + Central", "Brazil South", "Canada Central", "Canada East", "Central India", + "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East + US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel + Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea + South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central + US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South + Africa North", "South Central US", "South India", "Southeast Asia", "Spain + Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": + "servers/jobAgents/jobs/executions", "locations": ["Australia Central", "Australia + East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", + "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", + "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany + West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan + East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico + Central", "New Zealand North", "North Central US", "North Europe", "Norway + East", "Poland Central", "Qatar Central", "South Africa North", "South Central + US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland + North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", + "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", + "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/devOpsAuditingSettingsOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview"], - "capabilities": "None"}, {"resourceType": "locations/devOpsAuditingSettingsAzureAsyncOperation", + "capabilities": "None"}, {"resourceType": "servers/disasterRecoveryConfiguration", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview"], - "capabilities": "None"}, {"resourceType": "locations/elasticPoolAzureAsyncOperation", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", + "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/dnsAliases", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01"], "capabilities": "None"}, {"resourceType": - "locations/elasticPoolOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", @@ -1566,74 +1866,70 @@ interactions: Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview", "2015-05-01"], "capabilities": - "None"}, {"resourceType": "servers/elasticpools", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/dnsAliasAsyncOperation", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": + "locations/dnsAliasOperationResults", "locations": ["Australia Central", "Australia + East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", + "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", + "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", + "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", + "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", + "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", + "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", + "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", + "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], + "capabilities": "None"}, {"resourceType": "servers/failoverGroups", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-09-01-preview", "2015-05-01-preview", - "2015-05-01", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "zoneMappings": - [{"location": "Australia East", "zones": ["2", "1", "3"]}, {"location": "Austria - East", "zones": ["2", "1", "3"]}, {"location": "Brazil South", "zones": ["2", - "1", "3"]}, {"location": "Canada Central", "zones": ["2", "1", "3"]}, {"location": - "Central India", "zones": ["2", "1", "3"]}, {"location": "Central US", "zones": - ["2", "1", "3"]}, {"location": "Chile Central", "zones": ["2", "1", "3"]}, - {"location": "East Asia", "zones": ["2", "1", "3"]}, {"location": "East US", - "zones": ["2", "1", "3"]}, {"location": "East US 2", "zones": ["2", "1", "3"]}, - {"location": "France Central", "zones": ["2", "1", "3"]}, {"location": "Germany - West Central", "zones": ["2", "1", "3"]}, {"location": "Indonesia Central", - "zones": ["2", "1", "3"]}, {"location": "Israel Central", "zones": ["2", "1", - "3"]}, {"location": "Italy North", "zones": ["2", "1", "3"]}, {"location": - "Japan East", "zones": ["2", "1", "3"]}, {"location": "Japan West", "zones": - ["2", "1", "3"]}, {"location": "Korea Central", "zones": ["2", "1", "3"]}, - {"location": "Malaysia West", "zones": ["2", "1", "3"]}, {"location": "Mexico - Central", "zones": ["2", "1", "3"]}, {"location": "New Zealand North", "zones": - ["2", "1", "3"]}, {"location": "North Europe", "zones": ["2", "1", "3"]}, - {"location": "Norway East", "zones": ["2", "1", "3"]}, {"location": "Poland - Central", "zones": ["2", "1", "3"]}, {"location": "Qatar Central", "zones": - ["2", "1", "3"]}, {"location": "South Africa North", "zones": ["2", "1", "3"]}, - {"location": "South Central US", "zones": ["2", "1", "3"]}, {"location": "Southeast - Asia", "zones": ["2", "1", "3"]}, {"location": "Spain Central", "zones": ["2", - "1", "3"]}, {"location": "Sweden Central", "zones": ["2", "1", "3"]}, {"location": - "Switzerland North", "zones": ["2", "1", "3"]}, {"location": "UAE North", - "zones": ["2", "1", "3"]}, {"location": "UK South", "zones": ["2", "1", "3"]}, - {"location": "West Europe", "zones": ["2", "1", "3"]}, {"location": "West - US 2", "zones": ["2", "1", "3"]}, {"location": "West US 3", "zones": ["2", - "1", "3"]}], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, - SupportsTags, SupportsLocation"}, {"resourceType": "servers/jobAccounts", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2015-05-01-preview"], "capabilities": "CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}, {"resourceType": - "servers/jobAgents", "locations": ["Australia Central", "Australia East", - "Australia Southeast", "Austria East", "Brazil South", "Canada Central", "Canada - East", "Central India", "Central US", "Chile Central", "East Asia", "East + "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/failoverGroupAzureAsyncOperation", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North @@ -1641,237 +1937,245 @@ interactions: "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West - US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview"], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, - SupportsTags, SupportsLocation"}, {"resourceType": "locations/jobAgentOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/jobAgentAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/jobAgents/privateEndpoints", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/jobAgentPrivateEndpointOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/jobAgentPrivateEndpointAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/jobAgents/jobs", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": - "servers/jobAgents/jobs/steps", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/failoverGroupOperationResults", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/firewallRulesOperationResults", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/firewallRulesAzureAsyncOperation", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/ipv6FirewallRulesOperationResults", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01"], + "capabilities": "None"}, {"resourceType": "locations/ipv6FirewallRulesAzureAsyncOperation", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": "servers/jobAgents/jobs/executions", + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01"], "capabilities": "None"}, {"resourceType": "locations/deleteVirtualNetworkOrSubnets", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/disasterRecoveryConfiguration", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", + "2015-05-01"], "capabilities": "None"}, {"resourceType": "servers/virtualNetworkRules", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/dnsAliases", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/dnsAliasAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], + "capabilities": "None"}, {"resourceType": "locations/virtualNetworkRulesOperationResults", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/dnsAliasOperationResults", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", + "2015-05-01"], "capabilities": "None"}, {"resourceType": "locations/virtualNetworkRulesAzureAsyncOperation", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", + "2015-05-01"], "capabilities": "None"}, {"resourceType": "locations/deleteVirtualNetworkOrSubnetsOperationResults", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", + "2015-05-01"], "capabilities": "None"}, {"resourceType": "locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", + "2015-05-01"], "capabilities": "None"}, {"resourceType": "locations/databaseRestoreAzureAsyncOperation", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/failoverGroups", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", + "None"}, {"resourceType": "locations/deletedServers", "locations": ["Australia + Central", "Australia East", "Australia Southeast", "Austria East", "Belgium + Central", "Brazil South", "Canada Central", "Canada East", "Central India", + "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East + US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel + Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea + South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central + US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South + Africa North", "South Central US", "South India", "Southeast Asia", "Spain + Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/failoverGroupAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": + "locations/deletedServerAsyncOperation", "locations": ["Australia Central", + "Australia East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/failoverGroupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", + US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", @@ -1879,16 +2183,17 @@ interactions: North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/firewallRulesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", + US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": + "locations/deletedServerOperationResults", "locations": ["Australia Central", + "Australia East", "Australia Southeast", "Austria East", "Belgium Central", + "Brazil South", "Canada Central", "Canada East", "Central India", "Central + US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", @@ -1896,166 +2201,71 @@ interactions: North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/firewallRulesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/ipv6FirewallRulesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "locations/ipv6FirewallRulesAzureAsyncOperation", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", + US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01"], - "capabilities": "None"}, {"resourceType": "locations/deleteVirtualNetworkOrSubnets", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": + "servers/usages", "locations": ["Australia Central", "Australia East", "Australia + Southeast", "Austria East", "Belgium Central", "Brazil South", "Canada Central", + "Canada East", "Central India", "Central US", "Chile Central", "Denmark East", + "East Asia", "East US", "East US 2", "France Central", "Germany West Central", + "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan + West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", + "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland + Central", "Qatar Central", "South Africa North", "South Central US", "South + India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland + North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", + "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", + "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01"], "capabilities": "None"}, {"resourceType": - "servers/virtualNetworkRules", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": + "None"}, {"resourceType": "servers/databases/metricDefinitions", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], + "capabilities": "None"}, {"resourceType": "servers/databases/metrics", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], + "capabilities": "None"}, {"resourceType": "servers/aggregatedDatabaseMetrics", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/virtualNetworkRulesOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2015-05-01"], - "capabilities": "None"}, {"resourceType": "locations/virtualNetworkRulesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01"], "capabilities": "None"}, {"resourceType": - "locations/deleteVirtualNetworkOrSubnetsOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2015-05-01"], - "capabilities": "None"}, {"resourceType": "locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation", + US", "West US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", + "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/elasticpools/metrics", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01"], "capabilities": "None"}, {"resourceType": - "locations/databaseRestoreAzureAsyncOperation", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", @@ -2063,45 +2273,11 @@ interactions: Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": "servers/usages", + US", "West US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", + "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/elasticpools/metricdefinitions", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "servers/databases/metricDefinitions", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/databases/metrics", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", @@ -2110,78 +2286,43 @@ interactions: Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", - "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/aggregatedDatabaseMetrics", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/elasticpools/metrics", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/elasticpools/metricdefinitions", + "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/databases/topQueries", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/databases/topQueries", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", + "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/databases/topQueries/queryText", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/databases/topQueries/queryText", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", + "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/advisors", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/advisors", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", @@ -2189,16 +2330,17 @@ interactions: "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/elasticPools/advisors", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", + Central", "Australia East", "Australia Southeast", "Austria East", "Belgium + Central", "Brazil South", "Canada Central", "Canada East", "Central India", + "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East + US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel + Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea + South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central + US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South + Africa North", "South Central US", "South India", "Southeast Asia", "Spain + Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", @@ -2206,16 +2348,17 @@ interactions: "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/advisors", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", + Central", "Australia East", "Australia Southeast", "Austria East", "Belgium + Central", "Brazil South", "Canada Central", "Canada East", "Central India", + "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East + US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel + Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea + South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central + US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South + Africa North", "South Central US", "South India", "Southeast Asia", "Spain + Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", @@ -2224,137 +2367,20 @@ interactions: "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/databases/extensions", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/elasticPoolEstimates", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/auditRecords", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", + "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/elasticPoolEstimates", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/VulnerabilityAssessmentScans", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/workloadGroups", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/vulnerabilityAssessments", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/vulnerabilityAssessments", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "managedInstances/databases/vulnerabilityAssessments", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": - "managedInstances/vulnerabilityAssessments", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", @@ -2362,224 +2388,17 @@ interactions: Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/databases/VulnerabilityAssessmentSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/VulnerabilityAssessment", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": "locations/vulnerabilityAssessmentScanAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/vulnerabilityAssessmentScanOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/databases/sqlvulnerabilityassessments", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/sqlvulnerabilityassessments", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/sqlVulnerabilityAssessmentAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/sqlVulnerabilityAssessmentOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/databases/recommendedSensitivityLabels", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/databases/syncGroups", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/syncGroups/syncMembers", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/syncAgents", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "instancePools", + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], + "capabilities": "None"}, {"resourceType": "servers/databases/auditRecords", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}, {"resourceType": - "locations/importExportOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", @@ -2587,15 +2406,17 @@ interactions: Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-08-01", "2020-02-02-preview"], "capabilities": "None"}, {"resourceType": - "locations/importExportAzureAsyncOperation", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], + "capabilities": "None"}, {"resourceType": "servers/databases/VulnerabilityAssessmentScans", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", @@ -2603,15 +2424,17 @@ interactions: Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-08-01", "2020-02-02-preview"], "capabilities": "None"}, {"resourceType": - "locations/instancePoolOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], + "capabilities": "None"}, {"resourceType": "servers/databases/workloadGroups", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", @@ -2619,84 +2442,287 @@ interactions: Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/instancePoolAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "managedInstances", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview"], + "capabilities": "None"}, {"resourceType": "servers/databases/vulnerabilityAssessments", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"}, {"resourceType": "managedInstances/administrators", "locations": + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": + "None"}, {"resourceType": "servers/vulnerabilityAssessments", "locations": ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], + "capabilities": "None"}, {"resourceType": "managedInstances/databases/vulnerabilityAssessments", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": - "None"}, {"resourceType": "managedInstances/databases", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany + "None"}, {"resourceType": "managedInstances/vulnerabilityAssessments", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], + "capabilities": "None"}, {"resourceType": "servers/databases/VulnerabilityAssessmentSettings", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], + "capabilities": "None"}, {"resourceType": "servers/databases/VulnerabilityAssessment", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2017-03-01-preview"], + "capabilities": "None"}, {"resourceType": "locations/vulnerabilityAssessmentScanAzureAsyncOperation", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview"], "capabilities": "None"}, {"resourceType": + "locations/vulnerabilityAssessmentScanOperationResults", "locations": ["Australia + Central", "Australia East", "Australia Southeast", "Austria East", "Belgium + Central", "Brazil South", "Canada Central", "Canada East", "Central India", + "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East + US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel + Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea + South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central + US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South + Africa North", "South Central US", "South India", "Southeast Asia", "Spain + Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/sqlvulnerabilityassessments", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], "capabilities": + "None"}, {"resourceType": "servers/sqlvulnerabilityassessments", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview"], "capabilities": "None"}, {"resourceType": + "locations/sqlVulnerabilityAssessmentAzureAsyncOperation", "locations": ["Australia + Central", "Australia East", "Australia Southeast", "Austria East", "Belgium + Central", "Brazil South", "Canada Central", "Canada East", "Central India", + "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East + US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel + Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea + South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central + US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South + Africa North", "South Central US", "South India", "Southeast Asia", "Spain + Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview"], "capabilities": "None"}, {"resourceType": + "locations/sqlVulnerabilityAssessmentOperationResults", "locations": ["Australia + Central", "Australia East", "Australia Southeast", "Austria East", "Belgium + Central", "Brazil South", "Canada Central", "Canada East", "Central India", + "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East + US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel + Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea + South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central + US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South + Africa North", "South Central US", "South India", "Southeast Asia", "Spain + Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview"], "capabilities": "None"}, {"resourceType": + "servers/databases/recommendedSensitivityLabels", "locations": ["Australia + Central", "Australia East", "Australia Southeast", "Austria East", "Belgium + Central", "Brazil South", "Canada Central", "Canada East", "Central India", + "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East + US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel + Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea + South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central + US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South + Africa North", "South Central US", "South India", "Southeast Asia", "Spain + Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": + "servers/databases/syncGroups", "locations": ["Australia Central", "Australia + East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", + "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", + "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", + "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", + "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", + "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", + "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", + "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", + "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", + "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", + "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/syncGroups/syncMembers", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], + "capabilities": "None"}, {"resourceType": "servers/syncAgents", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "SupportsTags, - SupportsLocation"}, {"resourceType": "managedInstances/recoverableDatabases", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", + "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": + "None"}, {"resourceType": "instancePools", "locations": ["Australia Central", + "Australia East", "Australia Southeast", "Austria East", "Belgium Central", + "Brazil South", "Canada Central", "Canada East", "Central India", "Central + US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", @@ -2704,328 +2730,227 @@ interactions: North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "managedInstances/metrics", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", + US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": - "managedInstances/metricDefinitions", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, + SupportsTags, SupportsLocation"}, {"resourceType": "locations/importExportOperationResults", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": "managedInstances/databases/backupLongTermRetentionPolicies", + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-08-01", "2020-02-02-preview"], + "capabilities": "None"}, {"resourceType": "locations/importExportAzureAsyncOperation", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "managedInstances/sqlAgent", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2018-06-01"], - "capabilities": "None"}, {"resourceType": "managedInstances/startStopSchedules", + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-08-01", "2020-02-02-preview"], + "capabilities": "None"}, {"resourceType": "locations/instancePoolOperationResults", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedInstancePrivateEndpointConnectionProxyOperationResults", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/instancePoolAzureAsyncOperation", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedInstancePrivateEndpointConnectionProxyAzureAsyncOperation", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "managedInstances", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-08-01-preview", "2025-02-01-preview", + "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedInstancePrivateEndpointConnectionOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedInstancePrivateEndpointConnectionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", + "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", + "2015-05-01-preview"], "capabilities": "SystemAssignedResourceIdentity, SupportsTags, + SupportsLocation"}, {"resourceType": "managedInstances/administrators", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": + "managedInstances/databases", "locations": ["Australia Central", "Australia + East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", + "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", + "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany + West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan + East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico + Central", "New Zealand North", "North Central US", "North Europe", "Norway + East", "Poland Central", "Qatar Central", "South Africa North", "South Central + US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland + North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", + "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", + "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/longTermRetentionManagedInstances", + "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], + "capabilities": "SupportsTags, SupportsLocation"}, {"resourceType": "managedInstances/recoverableDatabases", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/longTermRetentionManagedInstanceBackups", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview"], "capabilities": "None"}, {"resourceType": + "managedInstances/metrics", "locations": ["Australia Central", "Australia + East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", + "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", + "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedInstanceLongTermRetentionPolicyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", + "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", + "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/managedInstanceLongTermRetentionPolicyAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], + "capabilities": "None"}, {"resourceType": "managedInstances/metricDefinitions", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/longTermRetentionManagedInstanceBackupOperationResults", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": + "None"}, {"resourceType": "managedInstances/databases/backupLongTermRetentionPolicies", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/longTermRetentionManagedInstanceBackupAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedDatabaseAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedDatabaseOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedDatabaseRestoreAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedDatabaseRestoreOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedDatabaseCompleteRestoreAzureAsyncOperation", + "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "managedInstances/sqlAgent", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2018-06-01"], "capabilities": "None"}, {"resourceType": + "managedInstances/startStopSchedules", "locations": ["Australia Central", + "Australia East", "Australia Southeast", "Austria East", "Belgium Central", + "Brazil South", "Canada Central", "Canada East", "Central India", "Central + US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", @@ -3033,296 +2958,83 @@ interactions: North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/managedDatabaseCompleteRestoreOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", + US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedServerSecurityAlertPoliciesAzureAsyncOperation", + "2021-08-01-preview", "2021-05-01-preview"], "capabilities": "None"}, {"resourceType": + "locations/managedInstancePrivateEndpointConnectionProxyOperationResults", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/stopManagedInstanceAzureAsyncOperation", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview"], + "capabilities": "None"}, {"resourceType": "locations/managedInstancePrivateEndpointConnectionProxyAzureAsyncOperation", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/stopManagedInstanceOperationResults", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview"], + "capabilities": "None"}, {"resourceType": "locations/managedInstancePrivateEndpointConnectionOperationResults", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/startManagedInstanceAzureAsyncOperation", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview"], + "capabilities": "None"}, {"resourceType": "locations/managedInstancePrivateEndpointConnectionAzureAsyncOperation", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/startManagedInstanceOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "managedInstances/tdeCertificates", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedInstanceTdeCertAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedInstanceTdeCertOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedServerSecurityAlertPoliciesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/securityAlertPoliciesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/securityAlertPoliciesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/advancedThreatProtectionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "locations/advancedThreatProtectionOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01"], - "capabilities": "None"}, {"resourceType": "locations/managedInstanceAdvancedThreatProtectionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedInstanceAdvancedThreatProtectionOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "managedInstances/dnsAliases", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01"], "capabilities": "None"}, {"resourceType": "locations/managedDnsAliasAsyncOperation", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview"], + "capabilities": "None"}, {"resourceType": "locations/longTermRetentionManagedInstances", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "locations/managedDnsAliasOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", @@ -3330,13 +3042,16 @@ interactions: Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01"], "capabilities": - "None"}, {"resourceType": "virtualClusters", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/longTermRetentionManagedInstanceBackups", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", @@ -3344,17 +3059,16 @@ interactions: Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}, {"resourceType": - "locations/virtualClusterAzureAsyncOperation", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedInstanceLongTermRetentionPolicyOperationResults", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", @@ -3362,16 +3076,16 @@ interactions: Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/virtualClusterOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedInstanceLongTermRetentionPolicyAzureAsyncOperation", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", @@ -3379,44 +3093,33 @@ interactions: Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/updateManagedInstanceDnsServersAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/updateManagedInstanceDnsServersOperationResults", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/longTermRetentionManagedInstanceBackupOperationResults", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/managedInstanceAzureAsyncOperation", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/longTermRetentionManagedInstanceBackupAzureAsyncOperation", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", @@ -3424,16 +3127,16 @@ interactions: Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/managedInstanceOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedDatabaseAzureAsyncOperation", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", @@ -3441,264 +3144,600 @@ interactions: Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/distributedAvailabilityGroupsOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/managedDatabaseOperationResults", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/distributedAvailabilityGroupsAzureAsyncOperation", "locations": + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": + "locations/managedDatabaseRestoreAzureAsyncOperation", "locations": ["Australia + Central", "Australia East", "Australia Southeast", "Austria East", "Belgium + Central", "Brazil South", "Canada Central", "Canada East", "Central India", + "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East + US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel + Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea + South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central + US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South + Africa North", "South Central US", "South India", "Southeast Asia", "Spain + Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": + "locations/managedDatabaseRestoreOperationResults", "locations": ["Australia + Central", "Australia East", "Australia Southeast", "Austria East", "Belgium + Central", "Brazil South", "Canada Central", "Canada East", "Central India", + "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East + US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel + Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea + South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central + US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South + Africa North", "South Central US", "South India", "Southeast Asia", "Spain + Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": + "locations/managedDatabaseCompleteRestoreAzureAsyncOperation", "locations": ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], + "capabilities": "None"}, {"resourceType": "locations/managedDatabaseCompleteRestoreOperationResults", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/serverTrustCertificatesOperationResults", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedServerSecurityAlertPoliciesAzureAsyncOperation", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/serverTrustCertificatesAzureAsyncOperation", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/stopManagedInstanceAzureAsyncOperation", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/administratorAzureAsyncOperation", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/stopManagedInstanceOperationResults", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/administratorOperationResults", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/startManagedInstanceAzureAsyncOperation", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/syncGroupOperationResults", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/startManagedInstanceOperationResults", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/syncGroupAzureAsyncOperation", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], "capabilities": + "None"}, {"resourceType": "managedInstances/tdeCertificates", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedInstanceTdeCertAzureAsyncOperation", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/syncMemberOperationResults", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview"], "capabilities": "None"}, {"resourceType": + "locations/managedInstanceTdeCertOperationResults", "locations": ["Australia + Central", "Australia East", "Australia Southeast", "Austria East", "Belgium + Central", "Brazil South", "Canada Central", "Canada East", "Central India", + "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East + US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel + Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea + South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central + US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South + Africa North", "South Central US", "South India", "Southeast Asia", "Spain + Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedServerSecurityAlertPoliciesOperationResults", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/syncAgentOperationResults", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/securityAlertPoliciesAzureAsyncOperation", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/syncDatabaseIds", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/securityAlertPoliciesOperationResults", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/longTermRetentionServers", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/advancedThreatProtectionAzureAsyncOperation", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/longTermRetentionBackups", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01"], "capabilities": "None"}, {"resourceType": "locations/advancedThreatProtectionOperationResults", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/longTermRetentionPolicyOperationResults", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01"], "capabilities": "None"}, {"resourceType": "locations/managedInstanceAdvancedThreatProtectionAzureAsyncOperation", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/managedInstanceAdvancedThreatProtectionOperationResults", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], "capabilities": + "None"}, {"resourceType": "managedInstances/dnsAliases", "locations": ["Australia + Central", "Australia East", "Australia Southeast", "Austria East", "Belgium + Central", "Brazil South", "Canada Central", "Canada East", "Central India", + "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East + US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel + Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea + South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central + US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South + Africa North", "South Central US", "South India", "Southeast Asia", "Spain + Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01"], + "capabilities": "None"}, {"resourceType": "locations/managedDnsAliasAsyncOperation", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01"], "capabilities": "None"}, {"resourceType": "locations/managedDnsAliasOperationResults", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01"], "capabilities": "None"}, {"resourceType": "virtualClusters", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], + "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, + SupportsTags, SupportsLocation"}, {"resourceType": "locations/virtualClusterAzureAsyncOperation", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], + "capabilities": "None"}, {"resourceType": "locations/virtualClusterOperationResults", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], + "capabilities": "None"}, {"resourceType": "locations/updateManagedInstanceDnsServersAzureAsyncOperation", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview"], "capabilities": "None"}, {"resourceType": + "locations/updateManagedInstanceDnsServersOperationResults", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedInstanceAzureAsyncOperation", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], + "capabilities": "None"}, {"resourceType": "locations/managedInstanceOperationResults", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], + "capabilities": "None"}, {"resourceType": "locations/distributedAvailabilityGroupsOperationResults", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-08-01-preview", "2025-02-01-preview", + "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/longTermRetentionPolicyAzureAsyncOperation", + "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], + "capabilities": "None"}, {"resourceType": "locations/distributedAvailabilityGroupsAzureAsyncOperation", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-08-01-preview", "2025-02-01-preview", + "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/longTermRetentionBackupOperationResults", + "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], + "capabilities": "None"}, {"resourceType": "locations/serverTrustCertificatesOperationResults", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/serverTrustCertificatesAzureAsyncOperation", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/administratorAzureAsyncOperation", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": + "locations/administratorOperationResults", "locations": ["Australia Central", + "Australia East", "Australia Southeast", "Austria East", "Belgium Central", + "Brazil South", "Canada Central", "Canada East", "Central India", "Central + US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", @@ -3706,16 +3745,17 @@ interactions: North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/longTermRetentionBackupAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", + US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": + "locations/syncGroupOperationResults", "locations": ["Australia Central", + "Australia East", "Australia Southeast", "Austria East", "Belgium Central", + "Brazil South", "Canada Central", "Canada East", "Central India", "Central + US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", @@ -3723,257 +3763,124 @@ interactions: North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/changeLongTermRetentionBackupAccessTierOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/changeLongTermRetentionBackupAccessTierAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/shortTermRetentionPolicyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/shortTermRetentionPolicyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedShortTermRetentionPolicyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedShortTermRetentionPolicyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/instanceFailoverGroups", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/instanceFailoverGroupAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/instanceFailoverGroupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/privateEndpointConnectionProxyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/privateEndpointConnectionProxyAzureAsyncOperation", "locations": + US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/syncGroupAzureAsyncOperation", "locations": ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/privateEndpointConnectionOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/outboundFirewallRulesAzureAsyncOperation", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/syncMemberOperationResults", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/syncAgentOperationResults", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/syncDatabaseIds", "locations": ["Australia + Central", "Australia East", "Australia Southeast", "Austria East", "Belgium + Central", "Brazil South", "Canada Central", "Canada East", "Central India", + "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East + US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel + Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea + South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central + US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South + Africa North", "South Central US", "South India", "Southeast Asia", "Spain + Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/longTermRetentionServers", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": + "locations/longTermRetentionBackups", "locations": ["Australia Central", "Australia + East", "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", + "Canada Central", "Canada East", "Central India", "Central US", "Chile Central", + "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/outboundFirewallRulesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview"], "capabilities": "None"}, {"resourceType": "locations/privateEndpointConnectionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", + "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", + "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/notifyAzureAsyncOperation", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East + "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], + "capabilities": "None"}, {"resourceType": "locations/longTermRetentionPolicyOperationResults", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", @@ -3981,21082 +3888,629 @@ interactions: Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/serverTrustGroups", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/longTermRetentionPolicyAzureAsyncOperation", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview"], "capabilities": "None"}, {"resourceType": "locations/serverTrustGroupOperationResults", + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/longTermRetentionBackupOperationResults", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview"], - "capabilities": "None"}, {"resourceType": "locations/serverTrustGroupAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedDatabaseMoveOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview"], "capabilities": "None"}, {"resourceType": "servers/connectionPolicies", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/longTermRetentionBackupAzureAsyncOperation", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "locations/connectionPoliciesAzureAsyncOperation", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/changeLongTermRetentionBackupAccessTierOperationResults", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/connectionPoliciesOperationResults", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview"], "capabilities": "None"}, {"resourceType": + "locations/changeLongTermRetentionBackupAccessTierAzureAsyncOperation", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/shortTermRetentionPolicyOperationResults", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/notifyNetworkSecurityPerimeterUpdatesAvailable", - "locations": ["Australia Central", "Australia Central 2", "Australia East", - "Australia Southeast", "Austria East", "Brazil South", "Brazil Southeast", - "Canada Central", "Canada East", "Central India", "Central US", "Central US - EUAP", "Chile Central", "East Asia", "East US", "East US 2", "East US 2 EUAP", - "France Central", "France South", "Germany North", "Germany West Central", - "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan - West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", - "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway - West", "Poland Central", "Qatar Central", "South Africa North", "South Africa - West", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", - "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West - India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview"], "capabilities": "None"}, {"resourceType": + "locations/shortTermRetentionPolicyAzureAsyncOperation", "locations": ["Australia + Central", "Australia East", "Australia Southeast", "Austria East", "Belgium + Central", "Brazil South", "Canada Central", "Canada East", "Central India", + "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East + US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel + Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea + South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central + US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South + Africa North", "South Central US", "South India", "Southeast Asia", "Spain + Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/replicationLinksAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/replicationLinksOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedInstanceDtcAzureAsyncOperation", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedShortTermRetentionPolicyOperationResults", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "managedInstances/databases/ledgerDigestUploads", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/managedShortTermRetentionPolicyAzureAsyncOperation", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/managedLedgerDigestUploadsOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/instanceFailoverGroups", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedLedgerDigestUploadsAzureAsyncOperation", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview"], "capabilities": "None"}, {"resourceType": "locations/instanceFailoverGroupAzureAsyncOperation", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/serverConfigurationOptionAzureAsyncOperation", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview"], "capabilities": "None"}, {"resourceType": + "locations/instanceFailoverGroupOperationResults", "locations": ["Australia + Central", "Australia East", "Australia Southeast", "Austria East", "Belgium + Central", "Brazil South", "Canada Central", "Canada East", "Central India", + "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East + US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel + Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea + South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central + US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South + Africa North", "South Central US", "South India", "Southeast Asia", "Spain + Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/failoverGroups/tryPlannedBeforeForcedFailover", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview"], "capabilities": "None"}, {"resourceType": "locations/privateEndpointConnectionProxyOperationResults", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/replicationLinks", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/privateEndpointConnectionProxyAzureAsyncOperation", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/privateEndpointConnectionOperationResults", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/outboundFirewallRulesAzureAsyncOperation", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview"], + "capabilities": "None"}, {"resourceType": "locations/outboundFirewallRulesOperationResults", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview"], + "capabilities": "None"}, {"resourceType": "locations/privateEndpointConnectionAzureAsyncOperation", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/notifyAzureAsyncOperation", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], + "capabilities": "None"}, {"resourceType": "locations/serverTrustGroups", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview"], "capabilities": "None"}, {"resourceType": + "locations/serverTrustGroupOperationResults", "locations": ["Australia Central", + "Australia East", "Australia Southeast", "Austria East", "Belgium Central", + "Brazil South", "Canada Central", "Canada East", "Central India", "Central + US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", + "France Central", "Germany West Central", "Indonesia Central", "Israel Central", + "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}], "registrationState": "Registered", "registrationPolicy": "RegistrationRequired"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '303711' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:45:36 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Sql/servers/mocked_sql_server_server/privateEndpointConnections?api-version=2024-11-01-preview - response: - body: - string: '{"value": []}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '12' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:45:37 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e90776ff-42ae-4f92-b45d-25c3d375832b/managedPrivateEndpoints/8921d315-633b-4ff8-a699-6e0cfc0abcff - response: - body: - string: '{"id": "8921d315-633b-4ff8-a699-6e0cfc0abcff", "provisioningState": - "Provisioning", "connectionState": {"status": null, "description": null, "actionsRequired": - null}, "name": "fabcli000001", "targetPrivateLinkResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Sql/servers/mocked_sql_server_server", - "targetSubresourceType": "sqlServer"}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '269' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:45:38 GMT - Pragma: - - no-cache - RequestId: - - 90918b32-5057-446f-8f45-719e18295ca8 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql?api-version=2021-04-01 - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql", - "namespace": "Microsoft.Sql", "authorizations": [{"applicationId": "e4ab13ed-33cb-41b4-9140-6e264582cf85", - "roleDefinitionId": "ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec"}, {"applicationId": - "0130cc9f-7ac5-4026-bd5f-80a08a54e6d9", "roleDefinitionId": "45e8abf8-0ec4-44f3-9c37-cff4f7779302"}, - {"applicationId": "76cd24bf-a9fc-4344-b1dc-908275de6d6d", "roleDefinitionId": - "c13b7b9c-2ed1-4901-b8a8-16f35468da29"}, {"applicationId": "76c7f279-7959-468f-8943-3954880e0d8c", - "roleDefinitionId": "7f7513a8-73f9-4c5f-97a2-c41f0ea783ef", "managedByRoleDefinitionId": - "f2f79976-90be-4501-89c6-7caf12474683"}, {"applicationId": "022907d3-0f1b-48f7-badc-1ba6abab6d66"}, - {"applicationId": "9c8b80bc-6887-42d0-b1af-d0c40f9bf1fa"}, {"applicationId": - "ceecbdd6-288c-4be9-8445-74f139e5db19", "roleDefinitionId": "fc2bd133-800a-4a15-b4aa-3c8b28179efe"}], - "resourceTypes": [{"resourceType": "operations", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", + US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview"], "capabilities": "None"}, {"resourceType": + "locations/serverTrustGroupAzureAsyncOperation", "locations": ["Australia + Central", "Australia East", "Australia Southeast", "Austria East", "Belgium + Central", "Brazil South", "Canada Central", "Canada East", "Central India", + "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East + US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel + Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea + South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central + US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South + Africa North", "South Central US", "South India", "Southeast Asia", "Spain + Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview"], "capabilities": "None"}, {"resourceType": + "locations/managedDatabaseMoveOperationResults", "locations": ["Australia + Central", "Australia East", "Australia Southeast", "Austria East", "Belgium + Central", "Brazil South", "Canada Central", "Canada East", "Central India", + "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East + US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel + Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea + South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central + US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South + Africa North", "South Central US", "South India", "Southeast Asia", "Spain + Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview"], "capabilities": + "None"}, {"resourceType": "servers/connectionPolicies", "locations": ["Australia + Central", "Australia East", "Australia Southeast", "Austria East", "Belgium + Central", "Brazil South", "Canada Central", "Canada East", "Central India", + "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East + US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel + Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea + South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central + US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South + Africa North", "South Central US", "South India", "Southeast Asia", "Spain + Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2015-05-01", - "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "locations", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2014-04-01-preview", + "2014-04-01", "2014-01-01"], "capabilities": "None"}, {"resourceType": "locations/connectionPoliciesAzureAsyncOperation", + "locations": ["Australia Central", "Australia East", "Australia Southeast", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", - "2014-01-01"], "capabilities": "None"}, {"resourceType": "locations/capabilities", + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], + "capabilities": "None"}, {"resourceType": "locations/connectionPoliciesOperationResults", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01", "2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "locations/databaseAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/databaseOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/databaseEncryptionProtectorRevalidateAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "locations/databaseEncryptionProtectorRevalidateOperationResults", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01"], "capabilities": "None"}, {"resourceType": "locations/databaseEncryptionProtectorRevertAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/databaseEncryptionProtectorRevertOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/serverKeyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/serverKeyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/keys", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/encryptionProtector", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], + "capabilities": "None"}, {"resourceType": "locations/notifyNetworkSecurityPerimeterUpdatesAvailable", + "locations": ["Australia Central", "Australia Central 2", "Australia East", + "Australia Southeast", "Austria East", "Belgium Central", "Brazil South", + "Brazil Southeast", "Canada Central", "Canada East", "Central India", "Central + US", "Central US EUAP", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "East US 2 EUAP", "France Central", "France South", "Germany + North", "Germany West Central", "Indonesia Central", "Israel Central", "Italy + North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia + West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", + "Norway East", "Norway West", "Poland Central", "Qatar Central", "South Africa + North", "South Africa West", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "Switzerland + West", "UAE Central", "UAE North", "UK South", "UK West", "West Central US", + "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": + ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", "2024-08-01-preview", + "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", + "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", + "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", + "2021-05-01-preview", "2021-02-01-preview"], "capabilities": "None"}, {"resourceType": + "locations/replicationLinksAzureAsyncOperation", "locations": ["Australia + Central", "Australia East", "Australia Southeast", "Austria East", "Belgium + Central", "Brazil South", "Canada Central", "Canada East", "Central India", + "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East + US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel + Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea + South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central + US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South + Africa North", "South Central US", "South India", "Southeast Asia", "Spain + Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/replicationLinksOperationResults", "locations": + ["Australia Central", "Australia East", "Australia Southeast", "Austria East", + "Belgium Central", "Brazil South", "Canada Central", "Canada East", "Central + India", "Central US", "Chile Central", "Denmark East", "East Asia", "East + US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", + "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", + "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North + Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", + "South Africa North", "South Central US", "South India", "Southeast Asia", + "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", + "UK West", "West Central US", "West Europe", "West India", "West US", "West + US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", "2024-11-01-preview", + "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", + "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", + "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", + "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", + "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", + "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": + "None"}, {"resourceType": "locations/managedInstanceDtcAzureAsyncOperation", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/encryptionProtectorOperationResults", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], "capabilities": + "None"}, {"resourceType": "managedInstances/databases/ledgerDigestUploads", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/encryptionProtectorAzureAsyncOperation", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedLedgerDigestUploadsOperationResults", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/externalPolicyBasedAuthorizationsAzureAsycOperation", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedLedgerDigestUploadsAzureAsyncOperation", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "locations/externalPolicyBasedAuthorizationsOperationResults", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01"], "capabilities": "None"}, {"resourceType": "locations/refreshExternalGovernanceStatusOperationResults", + "2022-08-01-preview"], "capabilities": "None"}, {"resourceType": "locations/serverConfigurationOptionAzureAsyncOperation", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/refreshExternalGovernanceStatusAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview"], "capabilities": "None"}, {"resourceType": "locations/refreshExternalGovernanceStatusMIOperationResults", + "2022-08-01-preview"], "capabilities": "None"}, {"resourceType": "servers/failoverGroups/tryPlannedBeforeForcedFailover", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/refreshExternalGovernanceStatusMIAzureAsyncOperation", + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East + Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia + Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea + Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", + "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar + Central", "South Africa North", "South Central US", "South India", "Southeast + Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview"], + "capabilities": "None"}, {"resourceType": "servers/databases/replicationLinks", "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedInstanceKeyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedInstanceKeyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedInstanceEncryptionProtectorOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedInstanceEncryptionProtectorAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/transparentDataEncryptionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/transparentDataEncryptionOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedtransparentDataEncryptionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedtransparentDataEncryptionOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "servers/tdeCertificates", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/tdeCertAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/tdeCertOperationResults", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/serverAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/serverOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/usages", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01", "2014-04-01-preview"], "capabilities": - "None"}, {"resourceType": "checkNameAvailability", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2014-04-01-preview", - "2014-04-01", "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"}, {"resourceType": "servers/databases", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", - "2015-01-01", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "zoneMappings": - [{"location": "Australia East", "zones": ["2", "1", "3"]}, {"location": "Austria - East", "zones": ["2", "1", "3"]}, {"location": "Brazil South", "zones": ["2", - "1", "3"]}, {"location": "Canada Central", "zones": ["2", "1", "3"]}, {"location": - "Central India", "zones": ["2", "1", "3"]}, {"location": "Central US", "zones": - ["2", "1", "3"]}, {"location": "Chile Central", "zones": ["2", "1", "3"]}, - {"location": "East Asia", "zones": ["2", "1", "3"]}, {"location": "East US", - "zones": ["2", "1", "3"]}, {"location": "East US 2", "zones": ["2", "1", "3"]}, - {"location": "France Central", "zones": ["2", "1", "3"]}, {"location": "Germany - West Central", "zones": ["2", "1", "3"]}, {"location": "Indonesia Central", - "zones": ["2", "1", "3"]}, {"location": "Israel Central", "zones": ["2", "1", - "3"]}, {"location": "Italy North", "zones": ["2", "1", "3"]}, {"location": - "Japan East", "zones": ["2", "1", "3"]}, {"location": "Japan West", "zones": - ["2", "1", "3"]}, {"location": "Korea Central", "zones": ["2", "1", "3"]}, - {"location": "Malaysia West", "zones": ["2", "1", "3"]}, {"location": "Mexico - Central", "zones": ["2", "1", "3"]}, {"location": "New Zealand North", "zones": - ["2", "1", "3"]}, {"location": "North Europe", "zones": ["2", "1", "3"]}, - {"location": "Norway East", "zones": ["2", "1", "3"]}, {"location": "Poland - Central", "zones": ["2", "1", "3"]}, {"location": "Qatar Central", "zones": - ["2", "1", "3"]}, {"location": "South Africa North", "zones": ["2", "1", "3"]}, - {"location": "South Central US", "zones": ["2", "1", "3"]}, {"location": "Southeast - Asia", "zones": ["2", "1", "3"]}, {"location": "Spain Central", "zones": ["2", - "1", "3"]}, {"location": "Sweden Central", "zones": ["2", "1", "3"]}, {"location": - "Switzerland North", "zones": ["2", "1", "3"]}, {"location": "UAE North", - "zones": ["2", "1", "3"]}, {"location": "UK South", "zones": ["2", "1", "3"]}, - {"location": "West Europe", "zones": ["2", "1", "3"]}, {"location": "West - US 2", "zones": ["2", "1", "3"]}, {"location": "West US 3", "zones": ["2", - "1", "3"]}], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, - SupportsTags, SupportsLocation"}, {"resourceType": "servers/serviceObjectives", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/communicationLinks", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/administrators", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East + "Austria East", "Belgium Central", "Brazil South", "Canada Central", "Canada + East", "Central India", "Central US", "Chile Central", "Denmark East", "East Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2014-04-01-preview", - "2014-04-01", "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/administratorOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "locations/serverAdministratorAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/serverAdministratorOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/restorableDroppedDatabases", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "servers/recoverableDatabases", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2014-04-01-preview", - "2014-04-01", "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/databases/geoBackupPolicies", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "servers/import", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "servers/importExportOperationResults", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/operationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", - "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/databases/backupLongTermRetentionPolicies", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/databases/backupShortTermRetentionPolicies", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/databaseSecurityPolicies", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/automaticTuning", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/automaticTuning", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/transparentDataEncryption", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2014-04-01-preview", - "2014-04-01"], "capabilities": "None"}, {"resourceType": "servers/databases/ledgerDigestUploads", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview"], "capabilities": "None"}, {"resourceType": "locations/ledgerDigestUploadsAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview"], "capabilities": "None"}, {"resourceType": "locations/ledgerDigestUploadsOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview"], "capabilities": "None"}, {"resourceType": "servers/recommendedElasticPools", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/databases/dataMaskingPolicies", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "servers/databases/dataMaskingPolicies/rules", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", - "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/databases/securityAlertPolicies", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/securityAlertPolicies", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/databases/advancedThreatProtectionSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "servers/advancedThreatProtectionSettings", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01"], "capabilities": - "None"}, {"resourceType": "managedInstances/databases/advancedThreatProtectionSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "managedInstances/advancedThreatProtectionSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/databases/auditingSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/auditingSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/extendedAuditingSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/devOpsAuditingSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview"], - "capabilities": "None"}, {"resourceType": "locations/auditingSettingsAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/auditingSettingsOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/extendedAuditingSettingsAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/extendedAuditingSettingsOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/devOpsAuditingSettingsOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview"], - "capabilities": "None"}, {"resourceType": "locations/devOpsAuditingSettingsAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview"], - "capabilities": "None"}, {"resourceType": "locations/elasticPoolAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01"], "capabilities": "None"}, {"resourceType": - "locations/elasticPoolOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview", "2015-05-01"], "capabilities": - "None"}, {"resourceType": "servers/elasticpools", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-09-01-preview", "2015-05-01-preview", - "2015-05-01", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "zoneMappings": - [{"location": "Australia East", "zones": ["2", "1", "3"]}, {"location": "Austria - East", "zones": ["2", "1", "3"]}, {"location": "Brazil South", "zones": ["2", - "1", "3"]}, {"location": "Canada Central", "zones": ["2", "1", "3"]}, {"location": - "Central India", "zones": ["2", "1", "3"]}, {"location": "Central US", "zones": - ["2", "1", "3"]}, {"location": "Chile Central", "zones": ["2", "1", "3"]}, - {"location": "East Asia", "zones": ["2", "1", "3"]}, {"location": "East US", - "zones": ["2", "1", "3"]}, {"location": "East US 2", "zones": ["2", "1", "3"]}, - {"location": "France Central", "zones": ["2", "1", "3"]}, {"location": "Germany - West Central", "zones": ["2", "1", "3"]}, {"location": "Indonesia Central", - "zones": ["2", "1", "3"]}, {"location": "Israel Central", "zones": ["2", "1", - "3"]}, {"location": "Italy North", "zones": ["2", "1", "3"]}, {"location": - "Japan East", "zones": ["2", "1", "3"]}, {"location": "Japan West", "zones": - ["2", "1", "3"]}, {"location": "Korea Central", "zones": ["2", "1", "3"]}, - {"location": "Malaysia West", "zones": ["2", "1", "3"]}, {"location": "Mexico - Central", "zones": ["2", "1", "3"]}, {"location": "New Zealand North", "zones": - ["2", "1", "3"]}, {"location": "North Europe", "zones": ["2", "1", "3"]}, - {"location": "Norway East", "zones": ["2", "1", "3"]}, {"location": "Poland - Central", "zones": ["2", "1", "3"]}, {"location": "Qatar Central", "zones": - ["2", "1", "3"]}, {"location": "South Africa North", "zones": ["2", "1", "3"]}, - {"location": "South Central US", "zones": ["2", "1", "3"]}, {"location": "Southeast - Asia", "zones": ["2", "1", "3"]}, {"location": "Spain Central", "zones": ["2", - "1", "3"]}, {"location": "Sweden Central", "zones": ["2", "1", "3"]}, {"location": - "Switzerland North", "zones": ["2", "1", "3"]}, {"location": "UAE North", - "zones": ["2", "1", "3"]}, {"location": "UK South", "zones": ["2", "1", "3"]}, - {"location": "West Europe", "zones": ["2", "1", "3"]}, {"location": "West - US 2", "zones": ["2", "1", "3"]}, {"location": "West US 3", "zones": ["2", - "1", "3"]}], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, - SupportsTags, SupportsLocation"}, {"resourceType": "servers/jobAccounts", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2015-05-01-preview"], "capabilities": "CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}, {"resourceType": - "servers/jobAgents", "locations": ["Australia Central", "Australia East", - "Australia Southeast", "Austria East", "Brazil South", "Canada Central", "Canada - East", "Central India", "Central US", "Chile Central", "East Asia", "East - US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", - "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", - "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North - Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", - "South Africa North", "South Central US", "South India", "Southeast Asia", - "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", - "UK West", "West Central US", "West Europe", "West India", "West US", "West - US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview"], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, - SupportsTags, SupportsLocation"}, {"resourceType": "locations/jobAgentOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/jobAgentAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/jobAgents/privateEndpoints", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/jobAgentPrivateEndpointOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/jobAgentPrivateEndpointAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/jobAgents/jobs", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": - "servers/jobAgents/jobs/steps", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": "servers/jobAgents/jobs/executions", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/disasterRecoveryConfiguration", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/dnsAliases", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/dnsAliasAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/dnsAliasOperationResults", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/failoverGroups", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/failoverGroupAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/failoverGroupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/firewallRulesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/firewallRulesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/ipv6FirewallRulesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "locations/ipv6FirewallRulesAzureAsyncOperation", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01"], - "capabilities": "None"}, {"resourceType": "locations/deleteVirtualNetworkOrSubnets", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01"], "capabilities": "None"}, {"resourceType": - "servers/virtualNetworkRules", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/virtualNetworkRulesOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2015-05-01"], - "capabilities": "None"}, {"resourceType": "locations/virtualNetworkRulesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01"], "capabilities": "None"}, {"resourceType": - "locations/deleteVirtualNetworkOrSubnetsOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2015-05-01"], - "capabilities": "None"}, {"resourceType": "locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01"], "capabilities": "None"}, {"resourceType": - "locations/databaseRestoreAzureAsyncOperation", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": "servers/usages", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "servers/databases/metricDefinitions", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/databases/metrics", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", - "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/aggregatedDatabaseMetrics", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/elasticpools/metrics", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/elasticpools/metricdefinitions", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/databases/topQueries", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/databases/topQueries/queryText", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/advisors", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", - "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/elasticPools/advisors", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/databases/advisors", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2014-04-01-preview", - "2014-04-01", "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/databases/extensions", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/elasticPoolEstimates", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/auditRecords", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/VulnerabilityAssessmentScans", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/workloadGroups", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/vulnerabilityAssessments", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/vulnerabilityAssessments", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "managedInstances/databases/vulnerabilityAssessments", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": - "managedInstances/vulnerabilityAssessments", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/databases/VulnerabilityAssessmentSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/VulnerabilityAssessment", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": "locations/vulnerabilityAssessmentScanAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/vulnerabilityAssessmentScanOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/databases/sqlvulnerabilityassessments", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/sqlvulnerabilityassessments", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/sqlVulnerabilityAssessmentAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/sqlVulnerabilityAssessmentOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/databases/recommendedSensitivityLabels", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/databases/syncGroups", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/syncGroups/syncMembers", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/syncAgents", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "instancePools", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}, {"resourceType": - "locations/importExportOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-08-01", "2020-02-02-preview"], "capabilities": "None"}, {"resourceType": - "locations/importExportAzureAsyncOperation", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-08-01", "2020-02-02-preview"], "capabilities": "None"}, {"resourceType": - "locations/instancePoolOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/instancePoolAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "managedInstances", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"}, {"resourceType": "managedInstances/administrators", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": - "None"}, {"resourceType": "managedInstances/databases", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "SupportsTags, - SupportsLocation"}, {"resourceType": "managedInstances/recoverableDatabases", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "managedInstances/metrics", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": - "managedInstances/metricDefinitions", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": "managedInstances/databases/backupLongTermRetentionPolicies", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "managedInstances/sqlAgent", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2018-06-01"], - "capabilities": "None"}, {"resourceType": "managedInstances/startStopSchedules", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedInstancePrivateEndpointConnectionProxyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedInstancePrivateEndpointConnectionProxyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedInstancePrivateEndpointConnectionOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedInstancePrivateEndpointConnectionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/longTermRetentionManagedInstances", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/longTermRetentionManagedInstanceBackups", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedInstanceLongTermRetentionPolicyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/managedInstanceLongTermRetentionPolicyAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/longTermRetentionManagedInstanceBackupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/longTermRetentionManagedInstanceBackupAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedDatabaseAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedDatabaseOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedDatabaseRestoreAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedDatabaseRestoreOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedDatabaseCompleteRestoreAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/managedDatabaseCompleteRestoreOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedServerSecurityAlertPoliciesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/stopManagedInstanceAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/stopManagedInstanceOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/startManagedInstanceAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/startManagedInstanceOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "managedInstances/tdeCertificates", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedInstanceTdeCertAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedInstanceTdeCertOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedServerSecurityAlertPoliciesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/securityAlertPoliciesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/securityAlertPoliciesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/advancedThreatProtectionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "locations/advancedThreatProtectionOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01"], - "capabilities": "None"}, {"resourceType": "locations/managedInstanceAdvancedThreatProtectionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedInstanceAdvancedThreatProtectionOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "managedInstances/dnsAliases", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01"], "capabilities": "None"}, {"resourceType": "locations/managedDnsAliasAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "locations/managedDnsAliasOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01"], "capabilities": - "None"}, {"resourceType": "virtualClusters", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}, {"resourceType": - "locations/virtualClusterAzureAsyncOperation", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/virtualClusterOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/updateManagedInstanceDnsServersAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/updateManagedInstanceDnsServersOperationResults", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/managedInstanceAzureAsyncOperation", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/managedInstanceOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/distributedAvailabilityGroupsOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/distributedAvailabilityGroupsAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/serverTrustCertificatesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/serverTrustCertificatesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/administratorAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/administratorOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/syncGroupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/syncGroupAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/syncMemberOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/syncAgentOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/syncDatabaseIds", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/longTermRetentionServers", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/longTermRetentionBackups", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/longTermRetentionPolicyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/longTermRetentionPolicyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/longTermRetentionBackupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/longTermRetentionBackupAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/changeLongTermRetentionBackupAccessTierOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/changeLongTermRetentionBackupAccessTierAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/shortTermRetentionPolicyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/shortTermRetentionPolicyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedShortTermRetentionPolicyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedShortTermRetentionPolicyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/instanceFailoverGroups", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/instanceFailoverGroupAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/instanceFailoverGroupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/privateEndpointConnectionProxyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/privateEndpointConnectionProxyAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/privateEndpointConnectionOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/outboundFirewallRulesAzureAsyncOperation", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/outboundFirewallRulesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview"], "capabilities": "None"}, {"resourceType": "locations/privateEndpointConnectionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/notifyAzureAsyncOperation", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/serverTrustGroups", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview"], "capabilities": "None"}, {"resourceType": "locations/serverTrustGroupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview"], - "capabilities": "None"}, {"resourceType": "locations/serverTrustGroupAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedDatabaseMoveOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview"], "capabilities": "None"}, {"resourceType": "servers/connectionPolicies", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "locations/connectionPoliciesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/connectionPoliciesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/notifyNetworkSecurityPerimeterUpdatesAvailable", - "locations": ["Australia Central", "Australia Central 2", "Australia East", - "Australia Southeast", "Austria East", "Brazil South", "Brazil Southeast", - "Canada Central", "Canada East", "Central India", "Central US", "Central US - EUAP", "Chile Central", "East Asia", "East US", "East US 2", "East US 2 EUAP", - "France Central", "France South", "Germany North", "Germany West Central", - "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan - West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", - "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway - West", "Poland Central", "Qatar Central", "South Africa North", "South Africa - West", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", - "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West - India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/replicationLinksAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/replicationLinksOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedInstanceDtcAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "managedInstances/databases/ledgerDigestUploads", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/managedLedgerDigestUploadsOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedLedgerDigestUploadsAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/serverConfigurationOptionAzureAsyncOperation", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/failoverGroups/tryPlannedBeforeForcedFailover", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/replicationLinks", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}], "registrationState": "Registered", "registrationPolicy": "RegistrationRequired"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '303711' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:45:39 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Sql/servers/mocked_sql_server_server/privateEndpointConnections?api-version=2024-11-01-preview - response: - body: - string: '{"value": []}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '12' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:45:40 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e90776ff-42ae-4f92-b45d-25c3d375832b/managedPrivateEndpoints/8921d315-633b-4ff8-a699-6e0cfc0abcff - response: - body: - string: '{"id": "8921d315-633b-4ff8-a699-6e0cfc0abcff", "provisioningState": - "Provisioning", "connectionState": {"status": null, "description": null, "actionsRequired": - null}, "name": "fabcli000001", "targetPrivateLinkResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Sql/servers/mocked_sql_server_server", - "targetSubresourceType": "sqlServer"}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '269' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:45:42 GMT - Pragma: - - no-cache - RequestId: - - 3aab6b85-effb-4827-9a75-c44972d6ee9a - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql?api-version=2021-04-01 - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql", - "namespace": "Microsoft.Sql", "authorizations": [{"applicationId": "e4ab13ed-33cb-41b4-9140-6e264582cf85", - "roleDefinitionId": "ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec"}, {"applicationId": - "0130cc9f-7ac5-4026-bd5f-80a08a54e6d9", "roleDefinitionId": "45e8abf8-0ec4-44f3-9c37-cff4f7779302"}, - {"applicationId": "76cd24bf-a9fc-4344-b1dc-908275de6d6d", "roleDefinitionId": - "c13b7b9c-2ed1-4901-b8a8-16f35468da29"}, {"applicationId": "76c7f279-7959-468f-8943-3954880e0d8c", - "roleDefinitionId": "7f7513a8-73f9-4c5f-97a2-c41f0ea783ef", "managedByRoleDefinitionId": - "f2f79976-90be-4501-89c6-7caf12474683"}, {"applicationId": "022907d3-0f1b-48f7-badc-1ba6abab6d66"}, - {"applicationId": "9c8b80bc-6887-42d0-b1af-d0c40f9bf1fa"}, {"applicationId": - "ceecbdd6-288c-4be9-8445-74f139e5db19", "roleDefinitionId": "fc2bd133-800a-4a15-b4aa-3c8b28179efe"}], - "resourceTypes": [{"resourceType": "operations", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2015-05-01", - "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "locations", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", - "2014-01-01"], "capabilities": "None"}, {"resourceType": "locations/capabilities", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01", "2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "locations/databaseAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/databaseOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/databaseEncryptionProtectorRevalidateAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "locations/databaseEncryptionProtectorRevalidateOperationResults", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01"], "capabilities": "None"}, {"resourceType": "locations/databaseEncryptionProtectorRevertAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/databaseEncryptionProtectorRevertOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/serverKeyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/serverKeyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/keys", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/encryptionProtector", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/encryptionProtectorOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/encryptionProtectorAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/externalPolicyBasedAuthorizationsAzureAsycOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "locations/externalPolicyBasedAuthorizationsOperationResults", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01"], "capabilities": "None"}, {"resourceType": "locations/refreshExternalGovernanceStatusOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/refreshExternalGovernanceStatusAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview"], "capabilities": "None"}, {"resourceType": "locations/refreshExternalGovernanceStatusMIOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/refreshExternalGovernanceStatusMIAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedInstanceKeyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedInstanceKeyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedInstanceEncryptionProtectorOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedInstanceEncryptionProtectorAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/transparentDataEncryptionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/transparentDataEncryptionOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedtransparentDataEncryptionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedtransparentDataEncryptionOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "servers/tdeCertificates", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/tdeCertAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/tdeCertOperationResults", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/serverAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/serverOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/usages", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01", "2014-04-01-preview"], "capabilities": - "None"}, {"resourceType": "checkNameAvailability", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2014-04-01-preview", - "2014-04-01", "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"}, {"resourceType": "servers/databases", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", - "2015-01-01", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "zoneMappings": - [{"location": "Australia East", "zones": ["2", "1", "3"]}, {"location": "Austria - East", "zones": ["2", "1", "3"]}, {"location": "Brazil South", "zones": ["2", - "1", "3"]}, {"location": "Canada Central", "zones": ["2", "1", "3"]}, {"location": - "Central India", "zones": ["2", "1", "3"]}, {"location": "Central US", "zones": - ["2", "1", "3"]}, {"location": "Chile Central", "zones": ["2", "1", "3"]}, - {"location": "East Asia", "zones": ["2", "1", "3"]}, {"location": "East US", - "zones": ["2", "1", "3"]}, {"location": "East US 2", "zones": ["2", "1", "3"]}, - {"location": "France Central", "zones": ["2", "1", "3"]}, {"location": "Germany - West Central", "zones": ["2", "1", "3"]}, {"location": "Indonesia Central", - "zones": ["2", "1", "3"]}, {"location": "Israel Central", "zones": ["2", "1", - "3"]}, {"location": "Italy North", "zones": ["2", "1", "3"]}, {"location": - "Japan East", "zones": ["2", "1", "3"]}, {"location": "Japan West", "zones": - ["2", "1", "3"]}, {"location": "Korea Central", "zones": ["2", "1", "3"]}, - {"location": "Malaysia West", "zones": ["2", "1", "3"]}, {"location": "Mexico - Central", "zones": ["2", "1", "3"]}, {"location": "New Zealand North", "zones": - ["2", "1", "3"]}, {"location": "North Europe", "zones": ["2", "1", "3"]}, - {"location": "Norway East", "zones": ["2", "1", "3"]}, {"location": "Poland - Central", "zones": ["2", "1", "3"]}, {"location": "Qatar Central", "zones": - ["2", "1", "3"]}, {"location": "South Africa North", "zones": ["2", "1", "3"]}, - {"location": "South Central US", "zones": ["2", "1", "3"]}, {"location": "Southeast - Asia", "zones": ["2", "1", "3"]}, {"location": "Spain Central", "zones": ["2", - "1", "3"]}, {"location": "Sweden Central", "zones": ["2", "1", "3"]}, {"location": - "Switzerland North", "zones": ["2", "1", "3"]}, {"location": "UAE North", - "zones": ["2", "1", "3"]}, {"location": "UK South", "zones": ["2", "1", "3"]}, - {"location": "West Europe", "zones": ["2", "1", "3"]}, {"location": "West - US 2", "zones": ["2", "1", "3"]}, {"location": "West US 3", "zones": ["2", - "1", "3"]}], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, - SupportsTags, SupportsLocation"}, {"resourceType": "servers/serviceObjectives", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/communicationLinks", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/administrators", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2014-04-01-preview", - "2014-04-01", "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/administratorOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "locations/serverAdministratorAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/serverAdministratorOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/restorableDroppedDatabases", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "servers/recoverableDatabases", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2014-04-01-preview", - "2014-04-01", "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/databases/geoBackupPolicies", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "servers/import", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "servers/importExportOperationResults", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/operationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", - "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/databases/backupLongTermRetentionPolicies", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/databases/backupShortTermRetentionPolicies", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/databaseSecurityPolicies", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/automaticTuning", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/automaticTuning", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/transparentDataEncryption", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2014-04-01-preview", - "2014-04-01"], "capabilities": "None"}, {"resourceType": "servers/databases/ledgerDigestUploads", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview"], "capabilities": "None"}, {"resourceType": "locations/ledgerDigestUploadsAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview"], "capabilities": "None"}, {"resourceType": "locations/ledgerDigestUploadsOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview"], "capabilities": "None"}, {"resourceType": "servers/recommendedElasticPools", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/databases/dataMaskingPolicies", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "servers/databases/dataMaskingPolicies/rules", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", - "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/databases/securityAlertPolicies", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/securityAlertPolicies", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/databases/advancedThreatProtectionSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "servers/advancedThreatProtectionSettings", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01"], "capabilities": - "None"}, {"resourceType": "managedInstances/databases/advancedThreatProtectionSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "managedInstances/advancedThreatProtectionSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/databases/auditingSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/auditingSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/extendedAuditingSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/devOpsAuditingSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview"], - "capabilities": "None"}, {"resourceType": "locations/auditingSettingsAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/auditingSettingsOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/extendedAuditingSettingsAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/extendedAuditingSettingsOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/devOpsAuditingSettingsOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview"], - "capabilities": "None"}, {"resourceType": "locations/devOpsAuditingSettingsAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview"], - "capabilities": "None"}, {"resourceType": "locations/elasticPoolAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01"], "capabilities": "None"}, {"resourceType": - "locations/elasticPoolOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview", "2015-05-01"], "capabilities": - "None"}, {"resourceType": "servers/elasticpools", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-09-01-preview", "2015-05-01-preview", - "2015-05-01", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "zoneMappings": - [{"location": "Australia East", "zones": ["2", "1", "3"]}, {"location": "Austria - East", "zones": ["2", "1", "3"]}, {"location": "Brazil South", "zones": ["2", - "1", "3"]}, {"location": "Canada Central", "zones": ["2", "1", "3"]}, {"location": - "Central India", "zones": ["2", "1", "3"]}, {"location": "Central US", "zones": - ["2", "1", "3"]}, {"location": "Chile Central", "zones": ["2", "1", "3"]}, - {"location": "East Asia", "zones": ["2", "1", "3"]}, {"location": "East US", - "zones": ["2", "1", "3"]}, {"location": "East US 2", "zones": ["2", "1", "3"]}, - {"location": "France Central", "zones": ["2", "1", "3"]}, {"location": "Germany - West Central", "zones": ["2", "1", "3"]}, {"location": "Indonesia Central", - "zones": ["2", "1", "3"]}, {"location": "Israel Central", "zones": ["2", "1", - "3"]}, {"location": "Italy North", "zones": ["2", "1", "3"]}, {"location": - "Japan East", "zones": ["2", "1", "3"]}, {"location": "Japan West", "zones": - ["2", "1", "3"]}, {"location": "Korea Central", "zones": ["2", "1", "3"]}, - {"location": "Malaysia West", "zones": ["2", "1", "3"]}, {"location": "Mexico - Central", "zones": ["2", "1", "3"]}, {"location": "New Zealand North", "zones": - ["2", "1", "3"]}, {"location": "North Europe", "zones": ["2", "1", "3"]}, - {"location": "Norway East", "zones": ["2", "1", "3"]}, {"location": "Poland - Central", "zones": ["2", "1", "3"]}, {"location": "Qatar Central", "zones": - ["2", "1", "3"]}, {"location": "South Africa North", "zones": ["2", "1", "3"]}, - {"location": "South Central US", "zones": ["2", "1", "3"]}, {"location": "Southeast - Asia", "zones": ["2", "1", "3"]}, {"location": "Spain Central", "zones": ["2", - "1", "3"]}, {"location": "Sweden Central", "zones": ["2", "1", "3"]}, {"location": - "Switzerland North", "zones": ["2", "1", "3"]}, {"location": "UAE North", - "zones": ["2", "1", "3"]}, {"location": "UK South", "zones": ["2", "1", "3"]}, - {"location": "West Europe", "zones": ["2", "1", "3"]}, {"location": "West - US 2", "zones": ["2", "1", "3"]}, {"location": "West US 3", "zones": ["2", - "1", "3"]}], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, - SupportsTags, SupportsLocation"}, {"resourceType": "servers/jobAccounts", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2015-05-01-preview"], "capabilities": "CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}, {"resourceType": - "servers/jobAgents", "locations": ["Australia Central", "Australia East", - "Australia Southeast", "Austria East", "Brazil South", "Canada Central", "Canada - East", "Central India", "Central US", "Chile Central", "East Asia", "East - US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", - "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", - "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North - Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", - "South Africa North", "South Central US", "South India", "Southeast Asia", - "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", - "UK West", "West Central US", "West Europe", "West India", "West US", "West - US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview"], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, - SupportsTags, SupportsLocation"}, {"resourceType": "locations/jobAgentOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/jobAgentAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/jobAgents/privateEndpoints", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/jobAgentPrivateEndpointOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/jobAgentPrivateEndpointAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/jobAgents/jobs", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": - "servers/jobAgents/jobs/steps", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": "servers/jobAgents/jobs/executions", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/disasterRecoveryConfiguration", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/dnsAliases", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/dnsAliasAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/dnsAliasOperationResults", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/failoverGroups", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/failoverGroupAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/failoverGroupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/firewallRulesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/firewallRulesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/ipv6FirewallRulesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "locations/ipv6FirewallRulesAzureAsyncOperation", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01"], - "capabilities": "None"}, {"resourceType": "locations/deleteVirtualNetworkOrSubnets", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01"], "capabilities": "None"}, {"resourceType": - "servers/virtualNetworkRules", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/virtualNetworkRulesOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2015-05-01"], - "capabilities": "None"}, {"resourceType": "locations/virtualNetworkRulesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01"], "capabilities": "None"}, {"resourceType": - "locations/deleteVirtualNetworkOrSubnetsOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2015-05-01"], - "capabilities": "None"}, {"resourceType": "locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01"], "capabilities": "None"}, {"resourceType": - "locations/databaseRestoreAzureAsyncOperation", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": "servers/usages", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "servers/databases/metricDefinitions", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/databases/metrics", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", - "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/aggregatedDatabaseMetrics", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/elasticpools/metrics", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/elasticpools/metricdefinitions", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/databases/topQueries", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/databases/topQueries/queryText", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/advisors", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", - "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/elasticPools/advisors", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/databases/advisors", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2014-04-01-preview", - "2014-04-01", "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/databases/extensions", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/elasticPoolEstimates", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/auditRecords", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/VulnerabilityAssessmentScans", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/workloadGroups", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/vulnerabilityAssessments", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/vulnerabilityAssessments", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "managedInstances/databases/vulnerabilityAssessments", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": - "managedInstances/vulnerabilityAssessments", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/databases/VulnerabilityAssessmentSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/VulnerabilityAssessment", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": "locations/vulnerabilityAssessmentScanAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/vulnerabilityAssessmentScanOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/databases/sqlvulnerabilityassessments", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/sqlvulnerabilityassessments", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/sqlVulnerabilityAssessmentAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/sqlVulnerabilityAssessmentOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/databases/recommendedSensitivityLabels", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/databases/syncGroups", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/syncGroups/syncMembers", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/syncAgents", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "instancePools", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}, {"resourceType": - "locations/importExportOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-08-01", "2020-02-02-preview"], "capabilities": "None"}, {"resourceType": - "locations/importExportAzureAsyncOperation", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-08-01", "2020-02-02-preview"], "capabilities": "None"}, {"resourceType": - "locations/instancePoolOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/instancePoolAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "managedInstances", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"}, {"resourceType": "managedInstances/administrators", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": - "None"}, {"resourceType": "managedInstances/databases", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "SupportsTags, - SupportsLocation"}, {"resourceType": "managedInstances/recoverableDatabases", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "managedInstances/metrics", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": - "managedInstances/metricDefinitions", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": "managedInstances/databases/backupLongTermRetentionPolicies", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "managedInstances/sqlAgent", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2018-06-01"], - "capabilities": "None"}, {"resourceType": "managedInstances/startStopSchedules", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedInstancePrivateEndpointConnectionProxyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedInstancePrivateEndpointConnectionProxyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedInstancePrivateEndpointConnectionOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedInstancePrivateEndpointConnectionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/longTermRetentionManagedInstances", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/longTermRetentionManagedInstanceBackups", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedInstanceLongTermRetentionPolicyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/managedInstanceLongTermRetentionPolicyAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/longTermRetentionManagedInstanceBackupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/longTermRetentionManagedInstanceBackupAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedDatabaseAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedDatabaseOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedDatabaseRestoreAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedDatabaseRestoreOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedDatabaseCompleteRestoreAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/managedDatabaseCompleteRestoreOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedServerSecurityAlertPoliciesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/stopManagedInstanceAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/stopManagedInstanceOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/startManagedInstanceAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/startManagedInstanceOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "managedInstances/tdeCertificates", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedInstanceTdeCertAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedInstanceTdeCertOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedServerSecurityAlertPoliciesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/securityAlertPoliciesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/securityAlertPoliciesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/advancedThreatProtectionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "locations/advancedThreatProtectionOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01"], - "capabilities": "None"}, {"resourceType": "locations/managedInstanceAdvancedThreatProtectionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedInstanceAdvancedThreatProtectionOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "managedInstances/dnsAliases", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01"], "capabilities": "None"}, {"resourceType": "locations/managedDnsAliasAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "locations/managedDnsAliasOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01"], "capabilities": - "None"}, {"resourceType": "virtualClusters", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}, {"resourceType": - "locations/virtualClusterAzureAsyncOperation", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/virtualClusterOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/updateManagedInstanceDnsServersAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/updateManagedInstanceDnsServersOperationResults", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/managedInstanceAzureAsyncOperation", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/managedInstanceOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/distributedAvailabilityGroupsOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/distributedAvailabilityGroupsAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/serverTrustCertificatesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/serverTrustCertificatesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/administratorAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/administratorOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/syncGroupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/syncGroupAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/syncMemberOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/syncAgentOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/syncDatabaseIds", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/longTermRetentionServers", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/longTermRetentionBackups", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/longTermRetentionPolicyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/longTermRetentionPolicyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/longTermRetentionBackupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/longTermRetentionBackupAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/changeLongTermRetentionBackupAccessTierOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/changeLongTermRetentionBackupAccessTierAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/shortTermRetentionPolicyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/shortTermRetentionPolicyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedShortTermRetentionPolicyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedShortTermRetentionPolicyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/instanceFailoverGroups", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/instanceFailoverGroupAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/instanceFailoverGroupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/privateEndpointConnectionProxyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/privateEndpointConnectionProxyAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/privateEndpointConnectionOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/outboundFirewallRulesAzureAsyncOperation", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/outboundFirewallRulesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview"], "capabilities": "None"}, {"resourceType": "locations/privateEndpointConnectionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/notifyAzureAsyncOperation", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/serverTrustGroups", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview"], "capabilities": "None"}, {"resourceType": "locations/serverTrustGroupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview"], - "capabilities": "None"}, {"resourceType": "locations/serverTrustGroupAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedDatabaseMoveOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview"], "capabilities": "None"}, {"resourceType": "servers/connectionPolicies", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "locations/connectionPoliciesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/connectionPoliciesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/notifyNetworkSecurityPerimeterUpdatesAvailable", - "locations": ["Australia Central", "Australia Central 2", "Australia East", - "Australia Southeast", "Austria East", "Brazil South", "Brazil Southeast", - "Canada Central", "Canada East", "Central India", "Central US", "Central US - EUAP", "Chile Central", "East Asia", "East US", "East US 2", "East US 2 EUAP", - "France Central", "France South", "Germany North", "Germany West Central", - "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan - West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", - "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway - West", "Poland Central", "Qatar Central", "South Africa North", "South Africa - West", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", - "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West - India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/replicationLinksAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/replicationLinksOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedInstanceDtcAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "managedInstances/databases/ledgerDigestUploads", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/managedLedgerDigestUploadsOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedLedgerDigestUploadsAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/serverConfigurationOptionAzureAsyncOperation", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/failoverGroups/tryPlannedBeforeForcedFailover", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/replicationLinks", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}], "registrationState": "Registered", "registrationPolicy": "RegistrationRequired"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '303711' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:45:43 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Sql/servers/mocked_sql_server_server/privateEndpointConnections?api-version=2024-11-01-preview - response: - body: - string: '{"value": []}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '12' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:45:44 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e90776ff-42ae-4f92-b45d-25c3d375832b/managedPrivateEndpoints/8921d315-633b-4ff8-a699-6e0cfc0abcff - response: - body: - string: '{"id": "8921d315-633b-4ff8-a699-6e0cfc0abcff", "provisioningState": - "Provisioning", "connectionState": {"status": null, "description": null, "actionsRequired": - null}, "name": "fabcli000001", "targetPrivateLinkResourceId": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Sql/servers/mocked_sql_server_server", - "targetSubresourceType": "sqlServer"}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '269' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:45:48 GMT - Pragma: - - no-cache - RequestId: - - 203be51d-7af8-40e0-a93b-6c2ef19ea69d - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql?api-version=2021-04-01 - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql", - "namespace": "Microsoft.Sql", "authorizations": [{"applicationId": "e4ab13ed-33cb-41b4-9140-6e264582cf85", - "roleDefinitionId": "ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec"}, {"applicationId": - "0130cc9f-7ac5-4026-bd5f-80a08a54e6d9", "roleDefinitionId": "45e8abf8-0ec4-44f3-9c37-cff4f7779302"}, - {"applicationId": "76cd24bf-a9fc-4344-b1dc-908275de6d6d", "roleDefinitionId": - "c13b7b9c-2ed1-4901-b8a8-16f35468da29"}, {"applicationId": "76c7f279-7959-468f-8943-3954880e0d8c", - "roleDefinitionId": "7f7513a8-73f9-4c5f-97a2-c41f0ea783ef", "managedByRoleDefinitionId": - "f2f79976-90be-4501-89c6-7caf12474683"}, {"applicationId": "022907d3-0f1b-48f7-badc-1ba6abab6d66"}, - {"applicationId": "9c8b80bc-6887-42d0-b1af-d0c40f9bf1fa"}, {"applicationId": - "ceecbdd6-288c-4be9-8445-74f139e5db19", "roleDefinitionId": "fc2bd133-800a-4a15-b4aa-3c8b28179efe"}], - "resourceTypes": [{"resourceType": "operations", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2015-05-01", - "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "locations", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", - "2014-01-01"], "capabilities": "None"}, {"resourceType": "locations/capabilities", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01", "2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "locations/databaseAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/databaseOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/databaseEncryptionProtectorRevalidateAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "locations/databaseEncryptionProtectorRevalidateOperationResults", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01"], "capabilities": "None"}, {"resourceType": "locations/databaseEncryptionProtectorRevertAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/databaseEncryptionProtectorRevertOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/serverKeyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/serverKeyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/keys", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/encryptionProtector", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/encryptionProtectorOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/encryptionProtectorAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/externalPolicyBasedAuthorizationsAzureAsycOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "locations/externalPolicyBasedAuthorizationsOperationResults", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01"], "capabilities": "None"}, {"resourceType": "locations/refreshExternalGovernanceStatusOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/refreshExternalGovernanceStatusAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview"], "capabilities": "None"}, {"resourceType": "locations/refreshExternalGovernanceStatusMIOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/refreshExternalGovernanceStatusMIAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedInstanceKeyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedInstanceKeyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedInstanceEncryptionProtectorOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedInstanceEncryptionProtectorAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/transparentDataEncryptionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/transparentDataEncryptionOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedtransparentDataEncryptionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedtransparentDataEncryptionOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "servers/tdeCertificates", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/tdeCertAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/tdeCertOperationResults", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/serverAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/serverOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/usages", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01", "2014-04-01-preview"], "capabilities": - "None"}, {"resourceType": "checkNameAvailability", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2014-04-01-preview", - "2014-04-01", "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"}, {"resourceType": "servers/databases", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", - "2015-01-01", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "zoneMappings": - [{"location": "Australia East", "zones": ["2", "1", "3"]}, {"location": "Austria - East", "zones": ["2", "1", "3"]}, {"location": "Brazil South", "zones": ["2", - "1", "3"]}, {"location": "Canada Central", "zones": ["2", "1", "3"]}, {"location": - "Central India", "zones": ["2", "1", "3"]}, {"location": "Central US", "zones": - ["2", "1", "3"]}, {"location": "Chile Central", "zones": ["2", "1", "3"]}, - {"location": "East Asia", "zones": ["2", "1", "3"]}, {"location": "East US", - "zones": ["2", "1", "3"]}, {"location": "East US 2", "zones": ["2", "1", "3"]}, - {"location": "France Central", "zones": ["2", "1", "3"]}, {"location": "Germany - West Central", "zones": ["2", "1", "3"]}, {"location": "Indonesia Central", - "zones": ["2", "1", "3"]}, {"location": "Israel Central", "zones": ["2", "1", - "3"]}, {"location": "Italy North", "zones": ["2", "1", "3"]}, {"location": - "Japan East", "zones": ["2", "1", "3"]}, {"location": "Japan West", "zones": - ["2", "1", "3"]}, {"location": "Korea Central", "zones": ["2", "1", "3"]}, - {"location": "Malaysia West", "zones": ["2", "1", "3"]}, {"location": "Mexico - Central", "zones": ["2", "1", "3"]}, {"location": "New Zealand North", "zones": - ["2", "1", "3"]}, {"location": "North Europe", "zones": ["2", "1", "3"]}, - {"location": "Norway East", "zones": ["2", "1", "3"]}, {"location": "Poland - Central", "zones": ["2", "1", "3"]}, {"location": "Qatar Central", "zones": - ["2", "1", "3"]}, {"location": "South Africa North", "zones": ["2", "1", "3"]}, - {"location": "South Central US", "zones": ["2", "1", "3"]}, {"location": "Southeast - Asia", "zones": ["2", "1", "3"]}, {"location": "Spain Central", "zones": ["2", - "1", "3"]}, {"location": "Sweden Central", "zones": ["2", "1", "3"]}, {"location": - "Switzerland North", "zones": ["2", "1", "3"]}, {"location": "UAE North", - "zones": ["2", "1", "3"]}, {"location": "UK South", "zones": ["2", "1", "3"]}, - {"location": "West Europe", "zones": ["2", "1", "3"]}, {"location": "West - US 2", "zones": ["2", "1", "3"]}, {"location": "West US 3", "zones": ["2", - "1", "3"]}], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, - SupportsTags, SupportsLocation"}, {"resourceType": "servers/serviceObjectives", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/communicationLinks", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/administrators", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2014-04-01-preview", - "2014-04-01", "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/administratorOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "locations/serverAdministratorAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/serverAdministratorOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/restorableDroppedDatabases", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "servers/recoverableDatabases", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2014-04-01-preview", - "2014-04-01", "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/databases/geoBackupPolicies", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "servers/import", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "servers/importExportOperationResults", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/operationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", - "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/databases/backupLongTermRetentionPolicies", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/databases/backupShortTermRetentionPolicies", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/databaseSecurityPolicies", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/automaticTuning", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/automaticTuning", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/transparentDataEncryption", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2014-04-01-preview", - "2014-04-01"], "capabilities": "None"}, {"resourceType": "servers/databases/ledgerDigestUploads", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview"], "capabilities": "None"}, {"resourceType": "locations/ledgerDigestUploadsAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview"], "capabilities": "None"}, {"resourceType": "locations/ledgerDigestUploadsOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview"], "capabilities": "None"}, {"resourceType": "servers/recommendedElasticPools", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/databases/dataMaskingPolicies", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "servers/databases/dataMaskingPolicies/rules", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", - "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/databases/securityAlertPolicies", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/securityAlertPolicies", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/databases/advancedThreatProtectionSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "servers/advancedThreatProtectionSettings", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01"], "capabilities": - "None"}, {"resourceType": "managedInstances/databases/advancedThreatProtectionSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "managedInstances/advancedThreatProtectionSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/databases/auditingSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/auditingSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/extendedAuditingSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/devOpsAuditingSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview"], - "capabilities": "None"}, {"resourceType": "locations/auditingSettingsAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/auditingSettingsOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/extendedAuditingSettingsAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/extendedAuditingSettingsOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/devOpsAuditingSettingsOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview"], - "capabilities": "None"}, {"resourceType": "locations/devOpsAuditingSettingsAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview"], - "capabilities": "None"}, {"resourceType": "locations/elasticPoolAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01"], "capabilities": "None"}, {"resourceType": - "locations/elasticPoolOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview", "2015-05-01"], "capabilities": - "None"}, {"resourceType": "servers/elasticpools", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-09-01-preview", "2015-05-01-preview", - "2015-05-01", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "zoneMappings": - [{"location": "Australia East", "zones": ["2", "1", "3"]}, {"location": "Austria - East", "zones": ["2", "1", "3"]}, {"location": "Brazil South", "zones": ["2", - "1", "3"]}, {"location": "Canada Central", "zones": ["2", "1", "3"]}, {"location": - "Central India", "zones": ["2", "1", "3"]}, {"location": "Central US", "zones": - ["2", "1", "3"]}, {"location": "Chile Central", "zones": ["2", "1", "3"]}, - {"location": "East Asia", "zones": ["2", "1", "3"]}, {"location": "East US", - "zones": ["2", "1", "3"]}, {"location": "East US 2", "zones": ["2", "1", "3"]}, - {"location": "France Central", "zones": ["2", "1", "3"]}, {"location": "Germany - West Central", "zones": ["2", "1", "3"]}, {"location": "Indonesia Central", - "zones": ["2", "1", "3"]}, {"location": "Israel Central", "zones": ["2", "1", - "3"]}, {"location": "Italy North", "zones": ["2", "1", "3"]}, {"location": - "Japan East", "zones": ["2", "1", "3"]}, {"location": "Japan West", "zones": - ["2", "1", "3"]}, {"location": "Korea Central", "zones": ["2", "1", "3"]}, - {"location": "Malaysia West", "zones": ["2", "1", "3"]}, {"location": "Mexico - Central", "zones": ["2", "1", "3"]}, {"location": "New Zealand North", "zones": - ["2", "1", "3"]}, {"location": "North Europe", "zones": ["2", "1", "3"]}, - {"location": "Norway East", "zones": ["2", "1", "3"]}, {"location": "Poland - Central", "zones": ["2", "1", "3"]}, {"location": "Qatar Central", "zones": - ["2", "1", "3"]}, {"location": "South Africa North", "zones": ["2", "1", "3"]}, - {"location": "South Central US", "zones": ["2", "1", "3"]}, {"location": "Southeast - Asia", "zones": ["2", "1", "3"]}, {"location": "Spain Central", "zones": ["2", - "1", "3"]}, {"location": "Sweden Central", "zones": ["2", "1", "3"]}, {"location": - "Switzerland North", "zones": ["2", "1", "3"]}, {"location": "UAE North", - "zones": ["2", "1", "3"]}, {"location": "UK South", "zones": ["2", "1", "3"]}, - {"location": "West Europe", "zones": ["2", "1", "3"]}, {"location": "West - US 2", "zones": ["2", "1", "3"]}, {"location": "West US 3", "zones": ["2", - "1", "3"]}], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, - SupportsTags, SupportsLocation"}, {"resourceType": "servers/jobAccounts", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2015-05-01-preview"], "capabilities": "CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}, {"resourceType": - "servers/jobAgents", "locations": ["Australia Central", "Australia East", - "Australia Southeast", "Austria East", "Brazil South", "Canada Central", "Canada - East", "Central India", "Central US", "Chile Central", "East Asia", "East - US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", - "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", - "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North - Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", - "South Africa North", "South Central US", "South India", "Southeast Asia", - "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", - "UK West", "West Central US", "West Europe", "West India", "West US", "West - US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview"], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, - SupportsTags, SupportsLocation"}, {"resourceType": "locations/jobAgentOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/jobAgentAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/jobAgents/privateEndpoints", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/jobAgentPrivateEndpointOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/jobAgentPrivateEndpointAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/jobAgents/jobs", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": - "servers/jobAgents/jobs/steps", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": "servers/jobAgents/jobs/executions", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/disasterRecoveryConfiguration", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/dnsAliases", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/dnsAliasAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/dnsAliasOperationResults", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/failoverGroups", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/failoverGroupAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/failoverGroupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/firewallRulesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/firewallRulesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/ipv6FirewallRulesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "locations/ipv6FirewallRulesAzureAsyncOperation", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01"], - "capabilities": "None"}, {"resourceType": "locations/deleteVirtualNetworkOrSubnets", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01"], "capabilities": "None"}, {"resourceType": - "servers/virtualNetworkRules", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/virtualNetworkRulesOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2015-05-01"], - "capabilities": "None"}, {"resourceType": "locations/virtualNetworkRulesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01"], "capabilities": "None"}, {"resourceType": - "locations/deleteVirtualNetworkOrSubnetsOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2015-05-01"], - "capabilities": "None"}, {"resourceType": "locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01"], "capabilities": "None"}, {"resourceType": - "locations/databaseRestoreAzureAsyncOperation", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": "servers/usages", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "servers/databases/metricDefinitions", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/databases/metrics", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", - "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/aggregatedDatabaseMetrics", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/elasticpools/metrics", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/elasticpools/metricdefinitions", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/databases/topQueries", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/databases/topQueries/queryText", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/advisors", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", - "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/elasticPools/advisors", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/databases/advisors", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2014-04-01-preview", - "2014-04-01", "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/databases/extensions", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/elasticPoolEstimates", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/auditRecords", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/VulnerabilityAssessmentScans", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/workloadGroups", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/vulnerabilityAssessments", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/vulnerabilityAssessments", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "managedInstances/databases/vulnerabilityAssessments", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": - "managedInstances/vulnerabilityAssessments", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/databases/VulnerabilityAssessmentSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/VulnerabilityAssessment", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": "locations/vulnerabilityAssessmentScanAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/vulnerabilityAssessmentScanOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/databases/sqlvulnerabilityassessments", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/sqlvulnerabilityassessments", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/sqlVulnerabilityAssessmentAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/sqlVulnerabilityAssessmentOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/databases/recommendedSensitivityLabels", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/databases/syncGroups", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/syncGroups/syncMembers", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/syncAgents", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "instancePools", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}, {"resourceType": - "locations/importExportOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-08-01", "2020-02-02-preview"], "capabilities": "None"}, {"resourceType": - "locations/importExportAzureAsyncOperation", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-08-01", "2020-02-02-preview"], "capabilities": "None"}, {"resourceType": - "locations/instancePoolOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/instancePoolAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "managedInstances", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"}, {"resourceType": "managedInstances/administrators", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": - "None"}, {"resourceType": "managedInstances/databases", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "SupportsTags, - SupportsLocation"}, {"resourceType": "managedInstances/recoverableDatabases", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "managedInstances/metrics", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": - "managedInstances/metricDefinitions", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": "managedInstances/databases/backupLongTermRetentionPolicies", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "managedInstances/sqlAgent", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2018-06-01"], - "capabilities": "None"}, {"resourceType": "managedInstances/startStopSchedules", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedInstancePrivateEndpointConnectionProxyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedInstancePrivateEndpointConnectionProxyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedInstancePrivateEndpointConnectionOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedInstancePrivateEndpointConnectionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/longTermRetentionManagedInstances", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/longTermRetentionManagedInstanceBackups", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedInstanceLongTermRetentionPolicyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/managedInstanceLongTermRetentionPolicyAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/longTermRetentionManagedInstanceBackupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/longTermRetentionManagedInstanceBackupAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedDatabaseAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedDatabaseOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedDatabaseRestoreAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedDatabaseRestoreOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedDatabaseCompleteRestoreAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/managedDatabaseCompleteRestoreOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedServerSecurityAlertPoliciesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/stopManagedInstanceAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/stopManagedInstanceOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/startManagedInstanceAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/startManagedInstanceOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "managedInstances/tdeCertificates", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedInstanceTdeCertAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedInstanceTdeCertOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedServerSecurityAlertPoliciesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/securityAlertPoliciesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/securityAlertPoliciesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/advancedThreatProtectionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "locations/advancedThreatProtectionOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01"], - "capabilities": "None"}, {"resourceType": "locations/managedInstanceAdvancedThreatProtectionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedInstanceAdvancedThreatProtectionOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "managedInstances/dnsAliases", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01"], "capabilities": "None"}, {"resourceType": "locations/managedDnsAliasAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "locations/managedDnsAliasOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01"], "capabilities": - "None"}, {"resourceType": "virtualClusters", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}, {"resourceType": - "locations/virtualClusterAzureAsyncOperation", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/virtualClusterOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/updateManagedInstanceDnsServersAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/updateManagedInstanceDnsServersOperationResults", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/managedInstanceAzureAsyncOperation", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/managedInstanceOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/distributedAvailabilityGroupsOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/distributedAvailabilityGroupsAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/serverTrustCertificatesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/serverTrustCertificatesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/administratorAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/administratorOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/syncGroupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/syncGroupAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/syncMemberOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/syncAgentOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/syncDatabaseIds", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/longTermRetentionServers", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/longTermRetentionBackups", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/longTermRetentionPolicyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/longTermRetentionPolicyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/longTermRetentionBackupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/longTermRetentionBackupAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/changeLongTermRetentionBackupAccessTierOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/changeLongTermRetentionBackupAccessTierAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/shortTermRetentionPolicyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/shortTermRetentionPolicyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedShortTermRetentionPolicyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedShortTermRetentionPolicyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/instanceFailoverGroups", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/instanceFailoverGroupAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/instanceFailoverGroupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/privateEndpointConnectionProxyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/privateEndpointConnectionProxyAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/privateEndpointConnectionOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/outboundFirewallRulesAzureAsyncOperation", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/outboundFirewallRulesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview"], "capabilities": "None"}, {"resourceType": "locations/privateEndpointConnectionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/notifyAzureAsyncOperation", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/serverTrustGroups", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview"], "capabilities": "None"}, {"resourceType": "locations/serverTrustGroupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview"], - "capabilities": "None"}, {"resourceType": "locations/serverTrustGroupAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedDatabaseMoveOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview"], "capabilities": "None"}, {"resourceType": "servers/connectionPolicies", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "locations/connectionPoliciesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/connectionPoliciesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/notifyNetworkSecurityPerimeterUpdatesAvailable", - "locations": ["Australia Central", "Australia Central 2", "Australia East", - "Australia Southeast", "Austria East", "Brazil South", "Brazil Southeast", - "Canada Central", "Canada East", "Central India", "Central US", "Central US - EUAP", "Chile Central", "East Asia", "East US", "East US 2", "East US 2 EUAP", - "France Central", "France South", "Germany North", "Germany West Central", - "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan - West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", - "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway - West", "Poland Central", "Qatar Central", "South Africa North", "South Africa - West", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", - "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West - India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/replicationLinksAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/replicationLinksOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedInstanceDtcAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "managedInstances/databases/ledgerDigestUploads", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/managedLedgerDigestUploadsOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedLedgerDigestUploadsAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/serverConfigurationOptionAzureAsyncOperation", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/failoverGroups/tryPlannedBeforeForcedFailover", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/replicationLinks", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}], "registrationState": "Registered", "registrationPolicy": "RegistrationRequired"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '303711' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:45:49 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Sql/servers/mocked_sql_server_server/privateEndpointConnections?api-version=2024-11-01-preview - response: - body: - string: '{"value": [{"properties": {"privateEndpoint": {"id": "/subscriptions/34a32baf-4ec6-4a96-9d13-d2289530fb9f/resourceGroups/vnet-34a32baf-WestEurope-128-rg/providers/Microsoft.Network/privateEndpoints/e90776ff-42ae-4f92-b45d-25c3d375832b.fabcli000001"}, - "groupIds": ["sqlServer"], "privateLinkServiceConnectionState": {"status": - "Pending", "actionsRequired": "None"}, "provisioningState": - "Ready"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Sql/servers/mocked_sql_server_server/privateEndpointConnections/e90776ff-42ae-4f92-b45d-25c3d375832b.fabcli000001-2ad0cc8b-766d-42b9-b46f-8b80b06022f3", - "name": "e90776ff-42ae-4f92-b45d-25c3d375832b.fabcli000001-2ad0cc8b-766d-42b9-b46f-8b80b06022f3", - "type": "Microsoft.Sql/servers/privateEndpointConnections"}]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '828' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:45:50 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql?api-version=2021-04-01 - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql", - "namespace": "Microsoft.Sql", "authorizations": [{"applicationId": "e4ab13ed-33cb-41b4-9140-6e264582cf85", - "roleDefinitionId": "ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec"}, {"applicationId": - "0130cc9f-7ac5-4026-bd5f-80a08a54e6d9", "roleDefinitionId": "45e8abf8-0ec4-44f3-9c37-cff4f7779302"}, - {"applicationId": "76cd24bf-a9fc-4344-b1dc-908275de6d6d", "roleDefinitionId": - "c13b7b9c-2ed1-4901-b8a8-16f35468da29"}, {"applicationId": "76c7f279-7959-468f-8943-3954880e0d8c", - "roleDefinitionId": "7f7513a8-73f9-4c5f-97a2-c41f0ea783ef", "managedByRoleDefinitionId": - "f2f79976-90be-4501-89c6-7caf12474683"}, {"applicationId": "022907d3-0f1b-48f7-badc-1ba6abab6d66"}, - {"applicationId": "9c8b80bc-6887-42d0-b1af-d0c40f9bf1fa"}, {"applicationId": - "ceecbdd6-288c-4be9-8445-74f139e5db19", "roleDefinitionId": "fc2bd133-800a-4a15-b4aa-3c8b28179efe"}], - "resourceTypes": [{"resourceType": "operations", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2015-05-01", - "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "locations", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", - "2014-01-01"], "capabilities": "None"}, {"resourceType": "locations/capabilities", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01", "2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "locations/databaseAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/databaseOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/databaseEncryptionProtectorRevalidateAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "locations/databaseEncryptionProtectorRevalidateOperationResults", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01"], "capabilities": "None"}, {"resourceType": "locations/databaseEncryptionProtectorRevertAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/databaseEncryptionProtectorRevertOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/serverKeyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/serverKeyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/keys", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/encryptionProtector", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/encryptionProtectorOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/encryptionProtectorAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/externalPolicyBasedAuthorizationsAzureAsycOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "locations/externalPolicyBasedAuthorizationsOperationResults", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01"], "capabilities": "None"}, {"resourceType": "locations/refreshExternalGovernanceStatusOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/refreshExternalGovernanceStatusAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview"], "capabilities": "None"}, {"resourceType": "locations/refreshExternalGovernanceStatusMIOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/refreshExternalGovernanceStatusMIAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedInstanceKeyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedInstanceKeyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedInstanceEncryptionProtectorOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedInstanceEncryptionProtectorAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/transparentDataEncryptionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/transparentDataEncryptionOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedtransparentDataEncryptionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedtransparentDataEncryptionOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "servers/tdeCertificates", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/tdeCertAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/tdeCertOperationResults", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/serverAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/serverOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/usages", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01", "2014-04-01-preview"], "capabilities": - "None"}, {"resourceType": "checkNameAvailability", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2014-04-01-preview", - "2014-04-01", "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"}, {"resourceType": "servers/databases", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", - "2015-01-01", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "zoneMappings": - [{"location": "Australia East", "zones": ["2", "1", "3"]}, {"location": "Austria - East", "zones": ["2", "1", "3"]}, {"location": "Brazil South", "zones": ["2", - "1", "3"]}, {"location": "Canada Central", "zones": ["2", "1", "3"]}, {"location": - "Central India", "zones": ["2", "1", "3"]}, {"location": "Central US", "zones": - ["2", "1", "3"]}, {"location": "Chile Central", "zones": ["2", "1", "3"]}, - {"location": "East Asia", "zones": ["2", "1", "3"]}, {"location": "East US", - "zones": ["2", "1", "3"]}, {"location": "East US 2", "zones": ["2", "1", "3"]}, - {"location": "France Central", "zones": ["2", "1", "3"]}, {"location": "Germany - West Central", "zones": ["2", "1", "3"]}, {"location": "Indonesia Central", - "zones": ["2", "1", "3"]}, {"location": "Israel Central", "zones": ["2", "1", - "3"]}, {"location": "Italy North", "zones": ["2", "1", "3"]}, {"location": - "Japan East", "zones": ["2", "1", "3"]}, {"location": "Japan West", "zones": - ["2", "1", "3"]}, {"location": "Korea Central", "zones": ["2", "1", "3"]}, - {"location": "Malaysia West", "zones": ["2", "1", "3"]}, {"location": "Mexico - Central", "zones": ["2", "1", "3"]}, {"location": "New Zealand North", "zones": - ["2", "1", "3"]}, {"location": "North Europe", "zones": ["2", "1", "3"]}, - {"location": "Norway East", "zones": ["2", "1", "3"]}, {"location": "Poland - Central", "zones": ["2", "1", "3"]}, {"location": "Qatar Central", "zones": - ["2", "1", "3"]}, {"location": "South Africa North", "zones": ["2", "1", "3"]}, - {"location": "South Central US", "zones": ["2", "1", "3"]}, {"location": "Southeast - Asia", "zones": ["2", "1", "3"]}, {"location": "Spain Central", "zones": ["2", - "1", "3"]}, {"location": "Sweden Central", "zones": ["2", "1", "3"]}, {"location": - "Switzerland North", "zones": ["2", "1", "3"]}, {"location": "UAE North", - "zones": ["2", "1", "3"]}, {"location": "UK South", "zones": ["2", "1", "3"]}, - {"location": "West Europe", "zones": ["2", "1", "3"]}, {"location": "West - US 2", "zones": ["2", "1", "3"]}, {"location": "West US 3", "zones": ["2", - "1", "3"]}], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, - SupportsTags, SupportsLocation"}, {"resourceType": "servers/serviceObjectives", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/communicationLinks", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/administrators", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2014-04-01-preview", - "2014-04-01", "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/administratorOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "locations/serverAdministratorAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/serverAdministratorOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/restorableDroppedDatabases", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "servers/recoverableDatabases", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2014-04-01-preview", - "2014-04-01", "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/databases/geoBackupPolicies", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "servers/import", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "servers/importExportOperationResults", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/operationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", - "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/databases/backupLongTermRetentionPolicies", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/databases/backupShortTermRetentionPolicies", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/databaseSecurityPolicies", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/automaticTuning", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/automaticTuning", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/transparentDataEncryption", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2014-04-01-preview", - "2014-04-01"], "capabilities": "None"}, {"resourceType": "servers/databases/ledgerDigestUploads", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview"], "capabilities": "None"}, {"resourceType": "locations/ledgerDigestUploadsAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview"], "capabilities": "None"}, {"resourceType": "locations/ledgerDigestUploadsOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview"], "capabilities": "None"}, {"resourceType": "servers/recommendedElasticPools", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/databases/dataMaskingPolicies", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "servers/databases/dataMaskingPolicies/rules", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", - "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/databases/securityAlertPolicies", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/securityAlertPolicies", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/databases/advancedThreatProtectionSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "servers/advancedThreatProtectionSettings", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01"], "capabilities": - "None"}, {"resourceType": "managedInstances/databases/advancedThreatProtectionSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "managedInstances/advancedThreatProtectionSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/databases/auditingSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/auditingSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/extendedAuditingSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/devOpsAuditingSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview"], - "capabilities": "None"}, {"resourceType": "locations/auditingSettingsAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/auditingSettingsOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/extendedAuditingSettingsAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/extendedAuditingSettingsOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/devOpsAuditingSettingsOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview"], - "capabilities": "None"}, {"resourceType": "locations/devOpsAuditingSettingsAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview"], - "capabilities": "None"}, {"resourceType": "locations/elasticPoolAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01"], "capabilities": "None"}, {"resourceType": - "locations/elasticPoolOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview", "2015-05-01"], "capabilities": - "None"}, {"resourceType": "servers/elasticpools", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-09-01-preview", "2015-05-01-preview", - "2015-05-01", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "zoneMappings": - [{"location": "Australia East", "zones": ["2", "1", "3"]}, {"location": "Austria - East", "zones": ["2", "1", "3"]}, {"location": "Brazil South", "zones": ["2", - "1", "3"]}, {"location": "Canada Central", "zones": ["2", "1", "3"]}, {"location": - "Central India", "zones": ["2", "1", "3"]}, {"location": "Central US", "zones": - ["2", "1", "3"]}, {"location": "Chile Central", "zones": ["2", "1", "3"]}, - {"location": "East Asia", "zones": ["2", "1", "3"]}, {"location": "East US", - "zones": ["2", "1", "3"]}, {"location": "East US 2", "zones": ["2", "1", "3"]}, - {"location": "France Central", "zones": ["2", "1", "3"]}, {"location": "Germany - West Central", "zones": ["2", "1", "3"]}, {"location": "Indonesia Central", - "zones": ["2", "1", "3"]}, {"location": "Israel Central", "zones": ["2", "1", - "3"]}, {"location": "Italy North", "zones": ["2", "1", "3"]}, {"location": - "Japan East", "zones": ["2", "1", "3"]}, {"location": "Japan West", "zones": - ["2", "1", "3"]}, {"location": "Korea Central", "zones": ["2", "1", "3"]}, - {"location": "Malaysia West", "zones": ["2", "1", "3"]}, {"location": "Mexico - Central", "zones": ["2", "1", "3"]}, {"location": "New Zealand North", "zones": - ["2", "1", "3"]}, {"location": "North Europe", "zones": ["2", "1", "3"]}, - {"location": "Norway East", "zones": ["2", "1", "3"]}, {"location": "Poland - Central", "zones": ["2", "1", "3"]}, {"location": "Qatar Central", "zones": - ["2", "1", "3"]}, {"location": "South Africa North", "zones": ["2", "1", "3"]}, - {"location": "South Central US", "zones": ["2", "1", "3"]}, {"location": "Southeast - Asia", "zones": ["2", "1", "3"]}, {"location": "Spain Central", "zones": ["2", - "1", "3"]}, {"location": "Sweden Central", "zones": ["2", "1", "3"]}, {"location": - "Switzerland North", "zones": ["2", "1", "3"]}, {"location": "UAE North", - "zones": ["2", "1", "3"]}, {"location": "UK South", "zones": ["2", "1", "3"]}, - {"location": "West Europe", "zones": ["2", "1", "3"]}, {"location": "West - US 2", "zones": ["2", "1", "3"]}, {"location": "West US 3", "zones": ["2", - "1", "3"]}], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, - SupportsTags, SupportsLocation"}, {"resourceType": "servers/jobAccounts", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2015-05-01-preview"], "capabilities": "CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}, {"resourceType": - "servers/jobAgents", "locations": ["Australia Central", "Australia East", - "Australia Southeast", "Austria East", "Brazil South", "Canada Central", "Canada - East", "Central India", "Central US", "Chile Central", "East Asia", "East - US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", - "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", - "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North - Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", - "South Africa North", "South Central US", "South India", "Southeast Asia", - "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", - "UK West", "West Central US", "West Europe", "West India", "West US", "West - US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview"], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, - SupportsTags, SupportsLocation"}, {"resourceType": "locations/jobAgentOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/jobAgentAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/jobAgents/privateEndpoints", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/jobAgentPrivateEndpointOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/jobAgentPrivateEndpointAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/jobAgents/jobs", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": - "servers/jobAgents/jobs/steps", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": "servers/jobAgents/jobs/executions", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/disasterRecoveryConfiguration", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/dnsAliases", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/dnsAliasAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/dnsAliasOperationResults", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/failoverGroups", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/failoverGroupAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/failoverGroupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/firewallRulesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/firewallRulesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/ipv6FirewallRulesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "locations/ipv6FirewallRulesAzureAsyncOperation", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01"], - "capabilities": "None"}, {"resourceType": "locations/deleteVirtualNetworkOrSubnets", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01"], "capabilities": "None"}, {"resourceType": - "servers/virtualNetworkRules", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/virtualNetworkRulesOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2015-05-01"], - "capabilities": "None"}, {"resourceType": "locations/virtualNetworkRulesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01"], "capabilities": "None"}, {"resourceType": - "locations/deleteVirtualNetworkOrSubnetsOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2015-05-01"], - "capabilities": "None"}, {"resourceType": "locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01"], "capabilities": "None"}, {"resourceType": - "locations/databaseRestoreAzureAsyncOperation", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": "servers/usages", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "servers/databases/metricDefinitions", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/databases/metrics", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", - "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/aggregatedDatabaseMetrics", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/elasticpools/metrics", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/elasticpools/metricdefinitions", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/databases/topQueries", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/databases/topQueries/queryText", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/advisors", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", - "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/elasticPools/advisors", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/databases/advisors", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2014-04-01-preview", - "2014-04-01", "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/databases/extensions", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/elasticPoolEstimates", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/auditRecords", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/VulnerabilityAssessmentScans", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/workloadGroups", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/vulnerabilityAssessments", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/vulnerabilityAssessments", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "managedInstances/databases/vulnerabilityAssessments", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": - "managedInstances/vulnerabilityAssessments", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/databases/VulnerabilityAssessmentSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/VulnerabilityAssessment", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": "locations/vulnerabilityAssessmentScanAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/vulnerabilityAssessmentScanOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/databases/sqlvulnerabilityassessments", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/sqlvulnerabilityassessments", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/sqlVulnerabilityAssessmentAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/sqlVulnerabilityAssessmentOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/databases/recommendedSensitivityLabels", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/databases/syncGroups", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/syncGroups/syncMembers", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/syncAgents", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "instancePools", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}, {"resourceType": - "locations/importExportOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-08-01", "2020-02-02-preview"], "capabilities": "None"}, {"resourceType": - "locations/importExportAzureAsyncOperation", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-08-01", "2020-02-02-preview"], "capabilities": "None"}, {"resourceType": - "locations/instancePoolOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/instancePoolAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "managedInstances", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"}, {"resourceType": "managedInstances/administrators", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": - "None"}, {"resourceType": "managedInstances/databases", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "SupportsTags, - SupportsLocation"}, {"resourceType": "managedInstances/recoverableDatabases", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "managedInstances/metrics", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": - "managedInstances/metricDefinitions", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": "managedInstances/databases/backupLongTermRetentionPolicies", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "managedInstances/sqlAgent", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2018-06-01"], - "capabilities": "None"}, {"resourceType": "managedInstances/startStopSchedules", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedInstancePrivateEndpointConnectionProxyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedInstancePrivateEndpointConnectionProxyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedInstancePrivateEndpointConnectionOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedInstancePrivateEndpointConnectionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/longTermRetentionManagedInstances", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/longTermRetentionManagedInstanceBackups", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedInstanceLongTermRetentionPolicyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/managedInstanceLongTermRetentionPolicyAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/longTermRetentionManagedInstanceBackupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/longTermRetentionManagedInstanceBackupAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedDatabaseAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedDatabaseOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedDatabaseRestoreAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedDatabaseRestoreOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedDatabaseCompleteRestoreAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/managedDatabaseCompleteRestoreOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedServerSecurityAlertPoliciesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/stopManagedInstanceAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/stopManagedInstanceOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/startManagedInstanceAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/startManagedInstanceOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "managedInstances/tdeCertificates", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedInstanceTdeCertAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedInstanceTdeCertOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedServerSecurityAlertPoliciesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/securityAlertPoliciesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/securityAlertPoliciesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/advancedThreatProtectionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "locations/advancedThreatProtectionOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01"], - "capabilities": "None"}, {"resourceType": "locations/managedInstanceAdvancedThreatProtectionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedInstanceAdvancedThreatProtectionOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "managedInstances/dnsAliases", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01"], "capabilities": "None"}, {"resourceType": "locations/managedDnsAliasAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "locations/managedDnsAliasOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01"], "capabilities": - "None"}, {"resourceType": "virtualClusters", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}, {"resourceType": - "locations/virtualClusterAzureAsyncOperation", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/virtualClusterOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/updateManagedInstanceDnsServersAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/updateManagedInstanceDnsServersOperationResults", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/managedInstanceAzureAsyncOperation", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/managedInstanceOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/distributedAvailabilityGroupsOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/distributedAvailabilityGroupsAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/serverTrustCertificatesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/serverTrustCertificatesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/administratorAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/administratorOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/syncGroupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/syncGroupAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/syncMemberOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/syncAgentOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/syncDatabaseIds", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/longTermRetentionServers", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/longTermRetentionBackups", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/longTermRetentionPolicyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/longTermRetentionPolicyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/longTermRetentionBackupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/longTermRetentionBackupAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/changeLongTermRetentionBackupAccessTierOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/changeLongTermRetentionBackupAccessTierAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/shortTermRetentionPolicyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/shortTermRetentionPolicyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedShortTermRetentionPolicyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedShortTermRetentionPolicyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/instanceFailoverGroups", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/instanceFailoverGroupAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/instanceFailoverGroupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/privateEndpointConnectionProxyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/privateEndpointConnectionProxyAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/privateEndpointConnectionOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/outboundFirewallRulesAzureAsyncOperation", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/outboundFirewallRulesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview"], "capabilities": "None"}, {"resourceType": "locations/privateEndpointConnectionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/notifyAzureAsyncOperation", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/serverTrustGroups", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview"], "capabilities": "None"}, {"resourceType": "locations/serverTrustGroupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview"], - "capabilities": "None"}, {"resourceType": "locations/serverTrustGroupAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedDatabaseMoveOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview"], "capabilities": "None"}, {"resourceType": "servers/connectionPolicies", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "locations/connectionPoliciesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/connectionPoliciesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/notifyNetworkSecurityPerimeterUpdatesAvailable", - "locations": ["Australia Central", "Australia Central 2", "Australia East", - "Australia Southeast", "Austria East", "Brazil South", "Brazil Southeast", - "Canada Central", "Canada East", "Central India", "Central US", "Central US - EUAP", "Chile Central", "East Asia", "East US", "East US 2", "East US 2 EUAP", - "France Central", "France South", "Germany North", "Germany West Central", - "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan - West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", - "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway - West", "Poland Central", "Qatar Central", "South Africa North", "South Africa - West", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", - "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West - India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/replicationLinksAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/replicationLinksOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedInstanceDtcAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "managedInstances/databases/ledgerDigestUploads", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/managedLedgerDigestUploadsOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedLedgerDigestUploadsAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/serverConfigurationOptionAzureAsyncOperation", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/failoverGroups/tryPlannedBeforeForcedFailover", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/replicationLinks", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}], "registrationState": "Registered", "registrationPolicy": "RegistrationRequired"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '303711' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:45:51 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Sql/servers/mocked_sql_server_server/privateEndpointConnections?api-version=2024-11-01-preview - response: - body: - string: '{"value": [{"properties": {"privateEndpoint": {"id": "/subscriptions/34a32baf-4ec6-4a96-9d13-d2289530fb9f/resourceGroups/vnet-34a32baf-WestEurope-128-rg/providers/Microsoft.Network/privateEndpoints/e90776ff-42ae-4f92-b45d-25c3d375832b.fabcli000001"}, - "groupIds": ["sqlServer"], "privateLinkServiceConnectionState": {"status": - "Pending", "actionsRequired": "None"}, "provisioningState": - "Ready"}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Sql/servers/mocked_sql_server_server/privateEndpointConnections/e90776ff-42ae-4f92-b45d-25c3d375832b.fabcli000001-2ad0cc8b-766d-42b9-b46f-8b80b06022f3", - "name": "e90776ff-42ae-4f92-b45d-25c3d375832b.fabcli000001-2ad0cc8b-766d-42b9-b46f-8b80b06022f3", - "type": "Microsoft.Sql/servers/privateEndpointConnections"}]}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '828' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:45:53 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql?api-version=2021-04-01 - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Sql", - "namespace": "Microsoft.Sql", "authorizations": [{"applicationId": "e4ab13ed-33cb-41b4-9140-6e264582cf85", - "roleDefinitionId": "ec3ddc95-44dc-47a2-9926-5e9f5ffd44ec"}, {"applicationId": - "0130cc9f-7ac5-4026-bd5f-80a08a54e6d9", "roleDefinitionId": "45e8abf8-0ec4-44f3-9c37-cff4f7779302"}, - {"applicationId": "76cd24bf-a9fc-4344-b1dc-908275de6d6d", "roleDefinitionId": - "c13b7b9c-2ed1-4901-b8a8-16f35468da29"}, {"applicationId": "76c7f279-7959-468f-8943-3954880e0d8c", - "roleDefinitionId": "7f7513a8-73f9-4c5f-97a2-c41f0ea783ef", "managedByRoleDefinitionId": - "f2f79976-90be-4501-89c6-7caf12474683"}, {"applicationId": "022907d3-0f1b-48f7-badc-1ba6abab6d66"}, - {"applicationId": "9c8b80bc-6887-42d0-b1af-d0c40f9bf1fa"}, {"applicationId": - "ceecbdd6-288c-4be9-8445-74f139e5db19", "roleDefinitionId": "fc2bd133-800a-4a15-b4aa-3c8b28179efe"}], - "resourceTypes": [{"resourceType": "operations", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2015-05-01", - "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "locations", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", - "2014-01-01"], "capabilities": "None"}, {"resourceType": "locations/capabilities", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01", "2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "locations/databaseAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/databaseOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/databaseEncryptionProtectorRevalidateAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "locations/databaseEncryptionProtectorRevalidateOperationResults", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01"], "capabilities": "None"}, {"resourceType": "locations/databaseEncryptionProtectorRevertAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/databaseEncryptionProtectorRevertOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/serverKeyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/serverKeyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/keys", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/encryptionProtector", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/encryptionProtectorOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/encryptionProtectorAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/externalPolicyBasedAuthorizationsAzureAsycOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "locations/externalPolicyBasedAuthorizationsOperationResults", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01"], "capabilities": "None"}, {"resourceType": "locations/refreshExternalGovernanceStatusOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/refreshExternalGovernanceStatusAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview"], "capabilities": "None"}, {"resourceType": "locations/refreshExternalGovernanceStatusMIOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/refreshExternalGovernanceStatusMIAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedInstanceKeyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedInstanceKeyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedInstanceEncryptionProtectorOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedInstanceEncryptionProtectorAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/transparentDataEncryptionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/transparentDataEncryptionOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedtransparentDataEncryptionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedtransparentDataEncryptionOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "servers/tdeCertificates", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/tdeCertAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/tdeCertOperationResults", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/serverAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/serverOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/usages", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01", "2014-04-01-preview"], "capabilities": - "None"}, {"resourceType": "checkNameAvailability", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2014-04-01-preview", - "2014-04-01", "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, SystemAssignedResourceIdentity, - SupportsTags, SupportsLocation"}, {"resourceType": "servers/databases", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", - "2015-01-01", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "zoneMappings": - [{"location": "Australia East", "zones": ["2", "1", "3"]}, {"location": "Austria - East", "zones": ["2", "1", "3"]}, {"location": "Brazil South", "zones": ["2", - "1", "3"]}, {"location": "Canada Central", "zones": ["2", "1", "3"]}, {"location": - "Central India", "zones": ["2", "1", "3"]}, {"location": "Central US", "zones": - ["2", "1", "3"]}, {"location": "Chile Central", "zones": ["2", "1", "3"]}, - {"location": "East Asia", "zones": ["2", "1", "3"]}, {"location": "East US", - "zones": ["2", "1", "3"]}, {"location": "East US 2", "zones": ["2", "1", "3"]}, - {"location": "France Central", "zones": ["2", "1", "3"]}, {"location": "Germany - West Central", "zones": ["2", "1", "3"]}, {"location": "Indonesia Central", - "zones": ["2", "1", "3"]}, {"location": "Israel Central", "zones": ["2", "1", - "3"]}, {"location": "Italy North", "zones": ["2", "1", "3"]}, {"location": - "Japan East", "zones": ["2", "1", "3"]}, {"location": "Japan West", "zones": - ["2", "1", "3"]}, {"location": "Korea Central", "zones": ["2", "1", "3"]}, - {"location": "Malaysia West", "zones": ["2", "1", "3"]}, {"location": "Mexico - Central", "zones": ["2", "1", "3"]}, {"location": "New Zealand North", "zones": - ["2", "1", "3"]}, {"location": "North Europe", "zones": ["2", "1", "3"]}, - {"location": "Norway East", "zones": ["2", "1", "3"]}, {"location": "Poland - Central", "zones": ["2", "1", "3"]}, {"location": "Qatar Central", "zones": - ["2", "1", "3"]}, {"location": "South Africa North", "zones": ["2", "1", "3"]}, - {"location": "South Central US", "zones": ["2", "1", "3"]}, {"location": "Southeast - Asia", "zones": ["2", "1", "3"]}, {"location": "Spain Central", "zones": ["2", - "1", "3"]}, {"location": "Sweden Central", "zones": ["2", "1", "3"]}, {"location": - "Switzerland North", "zones": ["2", "1", "3"]}, {"location": "UAE North", - "zones": ["2", "1", "3"]}, {"location": "UK South", "zones": ["2", "1", "3"]}, - {"location": "West Europe", "zones": ["2", "1", "3"]}, {"location": "West - US 2", "zones": ["2", "1", "3"]}, {"location": "West US 3", "zones": ["2", - "1", "3"]}], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, - SupportsTags, SupportsLocation"}, {"resourceType": "servers/serviceObjectives", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/communicationLinks", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/administrators", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2014-04-01-preview", - "2014-04-01", "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/administratorOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "locations/serverAdministratorAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/serverAdministratorOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/restorableDroppedDatabases", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "servers/recoverableDatabases", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2014-04-01-preview", - "2014-04-01", "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/databases/geoBackupPolicies", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "servers/import", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "servers/importExportOperationResults", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/operationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", - "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/databases/backupLongTermRetentionPolicies", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/databases/backupShortTermRetentionPolicies", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/databaseSecurityPolicies", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/automaticTuning", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/automaticTuning", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/transparentDataEncryption", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2014-04-01-preview", - "2014-04-01"], "capabilities": "None"}, {"resourceType": "servers/databases/ledgerDigestUploads", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview"], "capabilities": "None"}, {"resourceType": "locations/ledgerDigestUploadsAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview"], "capabilities": "None"}, {"resourceType": "locations/ledgerDigestUploadsOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview"], "capabilities": "None"}, {"resourceType": "servers/recommendedElasticPools", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/databases/dataMaskingPolicies", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "servers/databases/dataMaskingPolicies/rules", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", - "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/databases/securityAlertPolicies", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/securityAlertPolicies", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/databases/advancedThreatProtectionSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "servers/advancedThreatProtectionSettings", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01"], "capabilities": - "None"}, {"resourceType": "managedInstances/databases/advancedThreatProtectionSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "managedInstances/advancedThreatProtectionSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/databases/auditingSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/auditingSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/extendedAuditingSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/devOpsAuditingSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview"], - "capabilities": "None"}, {"resourceType": "locations/auditingSettingsAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/auditingSettingsOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/extendedAuditingSettingsAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/extendedAuditingSettingsOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/devOpsAuditingSettingsOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview"], - "capabilities": "None"}, {"resourceType": "locations/devOpsAuditingSettingsAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview"], - "capabilities": "None"}, {"resourceType": "locations/elasticPoolAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01"], "capabilities": "None"}, {"resourceType": - "locations/elasticPoolOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview", "2015-05-01"], "capabilities": - "None"}, {"resourceType": "servers/elasticpools", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-09-01-preview", "2015-05-01-preview", - "2015-05-01", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "zoneMappings": - [{"location": "Australia East", "zones": ["2", "1", "3"]}, {"location": "Austria - East", "zones": ["2", "1", "3"]}, {"location": "Brazil South", "zones": ["2", - "1", "3"]}, {"location": "Canada Central", "zones": ["2", "1", "3"]}, {"location": - "Central India", "zones": ["2", "1", "3"]}, {"location": "Central US", "zones": - ["2", "1", "3"]}, {"location": "Chile Central", "zones": ["2", "1", "3"]}, - {"location": "East Asia", "zones": ["2", "1", "3"]}, {"location": "East US", - "zones": ["2", "1", "3"]}, {"location": "East US 2", "zones": ["2", "1", "3"]}, - {"location": "France Central", "zones": ["2", "1", "3"]}, {"location": "Germany - West Central", "zones": ["2", "1", "3"]}, {"location": "Indonesia Central", - "zones": ["2", "1", "3"]}, {"location": "Israel Central", "zones": ["2", "1", - "3"]}, {"location": "Italy North", "zones": ["2", "1", "3"]}, {"location": - "Japan East", "zones": ["2", "1", "3"]}, {"location": "Japan West", "zones": - ["2", "1", "3"]}, {"location": "Korea Central", "zones": ["2", "1", "3"]}, - {"location": "Malaysia West", "zones": ["2", "1", "3"]}, {"location": "Mexico - Central", "zones": ["2", "1", "3"]}, {"location": "New Zealand North", "zones": - ["2", "1", "3"]}, {"location": "North Europe", "zones": ["2", "1", "3"]}, - {"location": "Norway East", "zones": ["2", "1", "3"]}, {"location": "Poland - Central", "zones": ["2", "1", "3"]}, {"location": "Qatar Central", "zones": - ["2", "1", "3"]}, {"location": "South Africa North", "zones": ["2", "1", "3"]}, - {"location": "South Central US", "zones": ["2", "1", "3"]}, {"location": "Southeast - Asia", "zones": ["2", "1", "3"]}, {"location": "Spain Central", "zones": ["2", - "1", "3"]}, {"location": "Sweden Central", "zones": ["2", "1", "3"]}, {"location": - "Switzerland North", "zones": ["2", "1", "3"]}, {"location": "UAE North", - "zones": ["2", "1", "3"]}, {"location": "UK South", "zones": ["2", "1", "3"]}, - {"location": "West Europe", "zones": ["2", "1", "3"]}, {"location": "West - US 2", "zones": ["2", "1", "3"]}, {"location": "West US 3", "zones": ["2", - "1", "3"]}], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, - SupportsTags, SupportsLocation"}, {"resourceType": "servers/jobAccounts", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2015-05-01-preview"], "capabilities": "CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}, {"resourceType": - "servers/jobAgents", "locations": ["Australia Central", "Australia East", - "Australia Southeast", "Austria East", "Brazil South", "Canada Central", "Canada - East", "Central India", "Central US", "Chile Central", "East Asia", "East - US", "East US 2", "France Central", "Germany West Central", "Indonesia Central", - "Israel Central", "Italy North", "Japan East", "Japan West", "Korea Central", - "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", "North - Central US", "North Europe", "Norway East", "Poland Central", "Qatar Central", - "South Africa North", "South Central US", "South India", "Southeast Asia", - "Spain Central", "Sweden Central", "Switzerland North", "UAE North", "UK South", - "UK West", "West Central US", "West Europe", "West India", "West US", "West - US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview"], "capabilities": "CrossResourceGroupResourceMove, CrossSubscriptionResourceMove, - SupportsTags, SupportsLocation"}, {"resourceType": "locations/jobAgentOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/jobAgentAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/jobAgents/privateEndpoints", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/jobAgentPrivateEndpointOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/jobAgentPrivateEndpointAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/jobAgents/jobs", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": - "servers/jobAgents/jobs/steps", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": "servers/jobAgents/jobs/executions", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/disasterRecoveryConfiguration", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/dnsAliases", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/dnsAliasAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/dnsAliasOperationResults", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/failoverGroups", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/failoverGroupAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/failoverGroupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/firewallRulesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/firewallRulesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/ipv6FirewallRulesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "locations/ipv6FirewallRulesAzureAsyncOperation", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01"], - "capabilities": "None"}, {"resourceType": "locations/deleteVirtualNetworkOrSubnets", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01"], "capabilities": "None"}, {"resourceType": - "servers/virtualNetworkRules", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/virtualNetworkRulesOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2015-05-01"], - "capabilities": "None"}, {"resourceType": "locations/virtualNetworkRulesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01"], "capabilities": "None"}, {"resourceType": - "locations/deleteVirtualNetworkOrSubnetsOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2015-05-01"], - "capabilities": "None"}, {"resourceType": "locations/deleteVirtualNetworkOrSubnetsAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2015-05-01"], "capabilities": "None"}, {"resourceType": - "locations/databaseRestoreAzureAsyncOperation", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": "servers/usages", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "servers/databases/metricDefinitions", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/databases/metrics", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", - "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/aggregatedDatabaseMetrics", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/elasticpools/metrics", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/elasticpools/metricdefinitions", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/databases/topQueries", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/databases/topQueries/queryText", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/advisors", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", - "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}, - {"resourceType": "servers/elasticPools/advisors", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/databases/advisors", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", "2014-04-01-preview", - "2014-04-01", "2014-01-01"], "capabilities": "None"}, {"resourceType": "servers/databases/extensions", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2014-04-01-preview", "2014-04-01", "2014-01-01"], - "capabilities": "None"}, {"resourceType": "servers/elasticPoolEstimates", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/auditRecords", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/VulnerabilityAssessmentScans", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/workloadGroups", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/vulnerabilityAssessments", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/vulnerabilityAssessments", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "managedInstances/databases/vulnerabilityAssessments", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": - "managedInstances/vulnerabilityAssessments", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/databases/VulnerabilityAssessmentSettings", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/VulnerabilityAssessment", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": "locations/vulnerabilityAssessmentScanAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/vulnerabilityAssessmentScanOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "servers/databases/sqlvulnerabilityassessments", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/sqlvulnerabilityassessments", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/sqlVulnerabilityAssessmentAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/sqlVulnerabilityAssessmentOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/databases/recommendedSensitivityLabels", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/databases/syncGroups", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/syncGroups/syncMembers", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "servers/syncAgents", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "instancePools", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}, {"resourceType": - "locations/importExportOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-08-01", "2020-02-02-preview"], "capabilities": "None"}, {"resourceType": - "locations/importExportAzureAsyncOperation", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-08-01", "2020-02-02-preview"], "capabilities": "None"}, {"resourceType": - "locations/instancePoolOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/instancePoolAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "managedInstances", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "SystemAssignedResourceIdentity, SupportsTags, - SupportsLocation"}, {"resourceType": "managedInstances/administrators", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], "capabilities": - "None"}, {"resourceType": "managedInstances/databases", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "SupportsTags, - SupportsLocation"}, {"resourceType": "managedInstances/recoverableDatabases", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "managedInstances/metrics", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", - "2017-10-01-preview", "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": - "managedInstances/metricDefinitions", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview"], "capabilities": "None"}, {"resourceType": "managedInstances/databases/backupLongTermRetentionPolicies", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "managedInstances/sqlAgent", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2018-06-01"], - "capabilities": "None"}, {"resourceType": "managedInstances/startStopSchedules", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedInstancePrivateEndpointConnectionProxyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedInstancePrivateEndpointConnectionProxyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedInstancePrivateEndpointConnectionOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedInstancePrivateEndpointConnectionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/longTermRetentionManagedInstances", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/longTermRetentionManagedInstanceBackups", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedInstanceLongTermRetentionPolicyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/managedInstanceLongTermRetentionPolicyAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/longTermRetentionManagedInstanceBackupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/longTermRetentionManagedInstanceBackupAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedDatabaseAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedDatabaseOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedDatabaseRestoreAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedDatabaseRestoreOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedDatabaseCompleteRestoreAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/managedDatabaseCompleteRestoreOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", - "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedServerSecurityAlertPoliciesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/stopManagedInstanceAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/stopManagedInstanceOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/startManagedInstanceAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/startManagedInstanceOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "managedInstances/tdeCertificates", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedInstanceTdeCertAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedInstanceTdeCertOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedServerSecurityAlertPoliciesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/securityAlertPoliciesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/securityAlertPoliciesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/advancedThreatProtectionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "locations/advancedThreatProtectionOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01"], - "capabilities": "None"}, {"resourceType": "locations/managedInstanceAdvancedThreatProtectionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedInstanceAdvancedThreatProtectionOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "managedInstances/dnsAliases", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01"], "capabilities": "None"}, {"resourceType": "locations/managedDnsAliasAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01"], "capabilities": "None"}, {"resourceType": - "locations/managedDnsAliasOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01"], "capabilities": - "None"}, {"resourceType": "virtualClusters", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "CrossResourceGroupResourceMove, - CrossSubscriptionResourceMove, SupportsTags, SupportsLocation"}, {"resourceType": - "locations/virtualClusterAzureAsyncOperation", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/virtualClusterOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/updateManagedInstanceDnsServersAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/updateManagedInstanceDnsServersOperationResults", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/managedInstanceAzureAsyncOperation", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/managedInstanceOperationResults", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/distributedAvailabilityGroupsOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/distributedAvailabilityGroupsAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/serverTrustCertificatesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/serverTrustCertificatesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/administratorAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/administratorOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/syncGroupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/syncGroupAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/syncMemberOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/syncAgentOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/syncDatabaseIds", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/longTermRetentionServers", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/longTermRetentionBackups", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/longTermRetentionPolicyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/longTermRetentionPolicyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/longTermRetentionBackupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/longTermRetentionBackupAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/changeLongTermRetentionBackupAccessTierOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/changeLongTermRetentionBackupAccessTierAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/shortTermRetentionPolicyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/shortTermRetentionPolicyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/managedShortTermRetentionPolicyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedShortTermRetentionPolicyAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/instanceFailoverGroups", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/instanceFailoverGroupAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/instanceFailoverGroupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/privateEndpointConnectionProxyOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/privateEndpointConnectionProxyAzureAsyncOperation", "locations": - ["Australia Central", "Australia East", "Australia Southeast", "Austria East", - "Brazil South", "Canada Central", "Canada East", "Central India", "Central - US", "Chile Central", "East Asia", "East US", "East US 2", "France Central", - "Germany West Central", "Indonesia Central", "Israel Central", "Italy North", - "Japan East", "Japan West", "Korea Central", "Korea South", "Malaysia West", - "Mexico Central", "New Zealand North", "North Central US", "North Europe", - "Norway East", "Poland Central", "Qatar Central", "South Africa North", "South - Central US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", - "Switzerland North", "UAE North", "UK South", "UK West", "West Central US", - "West Europe", "West India", "West US", "West US 2", "West US 3"], "apiVersions": - ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", - "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", - "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", - "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", - "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", - "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": "locations/privateEndpointConnectionOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/outboundFirewallRulesAzureAsyncOperation", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/outboundFirewallRulesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview"], "capabilities": "None"}, {"resourceType": "locations/privateEndpointConnectionAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/notifyAzureAsyncOperation", "locations": ["Australia Central", - "Australia East", "Australia Southeast", "Austria East", "Brazil South", "Canada - Central", "Canada East", "Central India", "Central US", "Chile Central", "East - Asia", "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview", "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", - "2017-03-01-preview", "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/serverTrustGroups", "locations": ["Australia Central", "Australia - East", "Australia Southeast", "Austria East", "Brazil South", "Canada Central", - "Canada East", "Central India", "Central US", "Chile Central", "East Asia", - "East US", "East US 2", "France Central", "Germany West Central", "Indonesia - Central", "Israel Central", "Italy North", "Japan East", "Japan West", "Korea - Central", "Korea South", "Malaysia West", "Mexico Central", "New Zealand North", - "North Central US", "North Europe", "Norway East", "Poland Central", "Qatar - Central", "South Africa North", "South Central US", "South India", "Southeast - Asia", "Spain Central", "Sweden Central", "Switzerland North", "UAE North", - "UK South", "UK West", "West Central US", "West Europe", "West India", "West - US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", - "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", - "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", - "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", - "2021-05-01-preview", "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", - "2020-02-02-preview"], "capabilities": "None"}, {"resourceType": "locations/serverTrustGroupOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview"], - "capabilities": "None"}, {"resourceType": "locations/serverTrustGroupAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedDatabaseMoveOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview"], "capabilities": "None"}, {"resourceType": "servers/connectionPolicies", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}, {"resourceType": "locations/connectionPoliciesAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/connectionPoliciesOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/notifyNetworkSecurityPerimeterUpdatesAvailable", - "locations": ["Australia Central", "Australia Central 2", "Australia East", - "Australia Southeast", "Austria East", "Brazil South", "Brazil Southeast", - "Canada Central", "Canada East", "Central India", "Central US", "Central US - EUAP", "Chile Central", "East Asia", "East US", "East US 2", "East US 2 EUAP", - "France Central", "France South", "Germany North", "Germany West Central", - "Indonesia Central", "Israel Central", "Italy North", "Japan East", "Japan - West", "Korea Central", "Korea South", "Malaysia West", "Mexico Central", - "New Zealand North", "North Central US", "North Europe", "Norway East", "Norway - West", "Poland Central", "Qatar Central", "South Africa North", "South Africa - West", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "Switzerland West", "UAE Central", - "UAE North", "UK South", "UK West", "West Central US", "West Europe", "West - India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview", - "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", "2021-11-01", - "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview"], "capabilities": - "None"}, {"resourceType": "locations/replicationLinksAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/replicationLinksOperationResults", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview"], "capabilities": "None"}, {"resourceType": "locations/managedInstanceDtcAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview"], - "capabilities": "None"}, {"resourceType": "managedInstances/databases/ledgerDigestUploads", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/managedLedgerDigestUploadsOperationResults", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview"], - "capabilities": "None"}, {"resourceType": "locations/managedLedgerDigestUploadsAzureAsyncOperation", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview"], "capabilities": "None"}, {"resourceType": - "locations/serverConfigurationOptionAzureAsyncOperation", "locations": ["Australia - Central", "Australia East", "Australia Southeast", "Austria East", "Brazil - South", "Canada Central", "Canada East", "Central India", "Central US", "Chile - Central", "East Asia", "East US", "East US 2", "France Central", "Germany - West Central", "Indonesia Central", "Israel Central", "Italy North", "Japan - East", "Japan West", "Korea Central", "Korea South", "Malaysia West", "Mexico - Central", "New Zealand North", "North Central US", "North Europe", "Norway - East", "Poland Central", "Qatar Central", "South Africa North", "South Central - US", "South India", "Southeast Asia", "Spain Central", "Sweden Central", "Switzerland - North", "UAE North", "UK South", "UK West", "West Central US", "West Europe", - "West India", "West US", "West US 2", "West US 3"], "apiVersions": ["2024-11-01-preview", - "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", "2023-08-01", - "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", "2022-08-01-preview"], - "capabilities": "None"}, {"resourceType": "servers/failoverGroups/tryPlannedBeforeForcedFailover", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview"], "capabilities": "None"}, {"resourceType": "servers/databases/replicationLinks", - "locations": ["Australia Central", "Australia East", "Australia Southeast", - "Austria East", "Brazil South", "Canada Central", "Canada East", "Central - India", "Central US", "Chile Central", "East Asia", "East US", "East US 2", - "France Central", "Germany West Central", "Indonesia Central", "Israel Central", - "Italy North", "Japan East", "Japan West", "Korea Central", "Korea South", - "Malaysia West", "Mexico Central", "New Zealand North", "North Central US", - "North Europe", "Norway East", "Poland Central", "Qatar Central", "South Africa - North", "South Central US", "South India", "Southeast Asia", "Spain Central", - "Sweden Central", "Switzerland North", "UAE North", "UK South", "UK West", - "West Central US", "West Europe", "West India", "West US", "West US 2", "West - US 3"], "apiVersions": ["2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", - "2023-08-01-preview", "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", - "2022-11-01-preview", "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", - "2021-11-01-preview", "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", - "2021-02-01-preview", "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", - "2019-06-01-preview", "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", - "2015-05-01-preview", "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": - "None"}], "registrationState": "Registered", "registrationPolicy": "RegistrationRequired"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '303711' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:45:54 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"properties": {"privateLinkServiceConnectionState": {"status": "Approved", - "description": "Approved by fab"}}}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '111' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Sql/servers/mocked_sql_server_server/privateEndpointConnections/e90776ff-42ae-4f92-b45d-25c3d375832b.fabcli000001-2ad0cc8b-766d-42b9-b46f-8b80b06022f3?api-version=2024-11-01-preview - response: - body: - string: '{"operation": "ApprovePrivateEndpointConnection", "startTime": "2025-09-03T06:45:55.193Z"}' - headers: - Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Sql/locations/westeurope/privateEndpointConnectionAzureAsyncOperation/e7d82490-d96c-4700-b801-2963fdbd45f2?api-version=2024-11-01-preview&t=638924787566608955&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=bg8Rc2m3kl2jy1q925iz5MdH_zl_Z17h55CHLzvcdPzWM8zK8Ik1-ImXEgdT_Hk3pHkknu_YLrNWH5vypC3jiJQXv7K3qPWmOKk1y4fipqgmZW_AurHi0PCZOjteit1ya-gkGtkqxxsp8nIXW5Yhuyi15mFGrohC_umie_9ihe_UYPMP3ORRniUQfrydqvumk4GNFVTEm6_DkT-ewLyRz1XOWCfmhX85uv9AJDPpHrFjcYsWAPuOvJDR84TCDUI2zc_amTsGnUWTL7tk8r2OcCS6wpj1JoZy44V9YWb2ekvsm4DY2Xcaiw9DXBzDHYkaF4tMXzQ46usXD7dOK5jBDg&h=LTWiA93QSkqE6O7-lESl3aUc3sR0oLA5ycHTqVvJm08 - Cache-Control: - - no-cache - Content-Length: - - '87' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:45:56 GMT - Expires: - - '-1' - Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Sql/locations/westeurope/privateEndpointConnectionOperationResults/e7d82490-d96c-4700-b801-2963fdbd45f2?api-version=2024-11-01-preview&t=638924787566608955&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=aiMY7vYzgPZzry3b1RyN2-sg3vaRw1IoFtLqBjwYGZsMYdysyQz6Dtz6j3cQYOE8JzJPhC_6oP1cbvHTAt3UY3H4IWQxX8cf2wAVtMm-tPaScZsIIW5i5KpceHuup5lvjGGX7oRkbnedvEKMNDviXUyFK0Gc5yLcBgxkwLrZQs1VPNDhpcz7803fik2nGHsICdQv3MisCJNXfdfU2NVVgYMJXdBLreOWMymfdp0rEb7Ff-m5JVQybpwOyWsMrWLGDwOJ17-ceeIovoDOZET4YN27t9rxLu6HOVp3pe1P1mVfZ6WrigQB9YEvZe-hbGw8qxpTO77ndQE-UdAX-gHyQg&h=jFMX2jF9jdH1uZ8nNUym5_fuFCXP7ZEgEiLlnsWysAM - Pragma: - - no-cache - Retry-After: - - '15' - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - 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.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Sql/locations/westeurope/privateEndpointConnectionAzureAsyncOperation/e7d82490-d96c-4700-b801-2963fdbd45f2?api-version=2024-11-01-preview&t=638924787566608955&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=bg8Rc2m3kl2jy1q925iz5MdH_zl_Z17h55CHLzvcdPzWM8zK8Ik1-ImXEgdT_Hk3pHkknu_YLrNWH5vypC3jiJQXv7K3qPWmOKk1y4fipqgmZW_AurHi0PCZOjteit1ya-gkGtkqxxsp8nIXW5Yhuyi15mFGrohC_umie_9ihe_UYPMP3ORRniUQfrydqvumk4GNFVTEm6_DkT-ewLyRz1XOWCfmhX85uv9AJDPpHrFjcYsWAPuOvJDR84TCDUI2zc_amTsGnUWTL7tk8r2OcCS6wpj1JoZy44V9YWb2ekvsm4DY2Xcaiw9DXBzDHYkaF4tMXzQ46usXD7dOK5jBDg&h=LTWiA93QSkqE6O7-lESl3aUc3sR0oLA5ycHTqVvJm08 - response: - body: - string: '{"name": "e7d82490-d96c-4700-b801-2963fdbd45f2", "status": "InProgress", - "startTime": "2025-09-03T06:45:55.193Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '108' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:45:56 GMT - Expires: - - '-1' - Pragma: - - no-cache - Retry-After: - - '15' - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Sql/locations/westeurope/privateEndpointConnectionAzureAsyncOperation/e7d82490-d96c-4700-b801-2963fdbd45f2?api-version=2024-11-01-preview&t=638924787566608955&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=bg8Rc2m3kl2jy1q925iz5MdH_zl_Z17h55CHLzvcdPzWM8zK8Ik1-ImXEgdT_Hk3pHkknu_YLrNWH5vypC3jiJQXv7K3qPWmOKk1y4fipqgmZW_AurHi0PCZOjteit1ya-gkGtkqxxsp8nIXW5Yhuyi15mFGrohC_umie_9ihe_UYPMP3ORRniUQfrydqvumk4GNFVTEm6_DkT-ewLyRz1XOWCfmhX85uv9AJDPpHrFjcYsWAPuOvJDR84TCDUI2zc_amTsGnUWTL7tk8r2OcCS6wpj1JoZy44V9YWb2ekvsm4DY2Xcaiw9DXBzDHYkaF4tMXzQ46usXD7dOK5jBDg&h=LTWiA93QSkqE6O7-lESl3aUc3sR0oLA5ycHTqVvJm08 - response: - body: - string: '{"name": "e7d82490-d96c-4700-b801-2963fdbd45f2", "status": "InProgress", - "startTime": "2025-09-03T06:45:55.193Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '108' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:45:56 GMT - Expires: - - '-1' - Pragma: - - no-cache - Retry-After: - - '15' - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Sql/locations/westeurope/privateEndpointConnectionAzureAsyncOperation/e7d82490-d96c-4700-b801-2963fdbd45f2?api-version=2024-11-01-preview&t=638924787566608955&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=bg8Rc2m3kl2jy1q925iz5MdH_zl_Z17h55CHLzvcdPzWM8zK8Ik1-ImXEgdT_Hk3pHkknu_YLrNWH5vypC3jiJQXv7K3qPWmOKk1y4fipqgmZW_AurHi0PCZOjteit1ya-gkGtkqxxsp8nIXW5Yhuyi15mFGrohC_umie_9ihe_UYPMP3ORRniUQfrydqvumk4GNFVTEm6_DkT-ewLyRz1XOWCfmhX85uv9AJDPpHrFjcYsWAPuOvJDR84TCDUI2zc_amTsGnUWTL7tk8r2OcCS6wpj1JoZy44V9YWb2ekvsm4DY2Xcaiw9DXBzDHYkaF4tMXzQ46usXD7dOK5jBDg&h=LTWiA93QSkqE6O7-lESl3aUc3sR0oLA5ycHTqVvJm08 - response: - body: - string: '{"name": "e7d82490-d96c-4700-b801-2963fdbd45f2", "status": "InProgress", - "startTime": "2025-09-03T06:45:55.193Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '108' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:45:58 GMT - Expires: - - '-1' - Pragma: - - no-cache - Retry-After: - - '15' - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Sql/locations/westeurope/privateEndpointConnectionAzureAsyncOperation/e7d82490-d96c-4700-b801-2963fdbd45f2?api-version=2024-11-01-preview&t=638924787566608955&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=bg8Rc2m3kl2jy1q925iz5MdH_zl_Z17h55CHLzvcdPzWM8zK8Ik1-ImXEgdT_Hk3pHkknu_YLrNWH5vypC3jiJQXv7K3qPWmOKk1y4fipqgmZW_AurHi0PCZOjteit1ya-gkGtkqxxsp8nIXW5Yhuyi15mFGrohC_umie_9ihe_UYPMP3ORRniUQfrydqvumk4GNFVTEm6_DkT-ewLyRz1XOWCfmhX85uv9AJDPpHrFjcYsWAPuOvJDR84TCDUI2zc_amTsGnUWTL7tk8r2OcCS6wpj1JoZy44V9YWb2ekvsm4DY2Xcaiw9DXBzDHYkaF4tMXzQ46usXD7dOK5jBDg&h=LTWiA93QSkqE6O7-lESl3aUc3sR0oLA5ycHTqVvJm08 - response: - body: - string: '{"name": "e7d82490-d96c-4700-b801-2963fdbd45f2", "status": "InProgress", - "startTime": "2025-09-03T06:45:55.193Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '108' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:46:00 GMT - Expires: - - '-1' - Pragma: - - no-cache - Retry-After: - - '15' - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Sql/locations/westeurope/privateEndpointConnectionAzureAsyncOperation/e7d82490-d96c-4700-b801-2963fdbd45f2?api-version=2024-11-01-preview&t=638924787566608955&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=bg8Rc2m3kl2jy1q925iz5MdH_zl_Z17h55CHLzvcdPzWM8zK8Ik1-ImXEgdT_Hk3pHkknu_YLrNWH5vypC3jiJQXv7K3qPWmOKk1y4fipqgmZW_AurHi0PCZOjteit1ya-gkGtkqxxsp8nIXW5Yhuyi15mFGrohC_umie_9ihe_UYPMP3ORRniUQfrydqvumk4GNFVTEm6_DkT-ewLyRz1XOWCfmhX85uv9AJDPpHrFjcYsWAPuOvJDR84TCDUI2zc_amTsGnUWTL7tk8r2OcCS6wpj1JoZy44V9YWb2ekvsm4DY2Xcaiw9DXBzDHYkaF4tMXzQ46usXD7dOK5jBDg&h=LTWiA93QSkqE6O7-lESl3aUc3sR0oLA5ycHTqVvJm08 - response: - body: - string: '{"name": "e7d82490-d96c-4700-b801-2963fdbd45f2", "status": "InProgress", - "startTime": "2025-09-03T06:45:55.193Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '108' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:46:04 GMT - Expires: - - '-1' - Pragma: - - no-cache - Retry-After: - - '15' - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Sql/locations/westeurope/privateEndpointConnectionAzureAsyncOperation/e7d82490-d96c-4700-b801-2963fdbd45f2?api-version=2024-11-01-preview&t=638924787566608955&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=bg8Rc2m3kl2jy1q925iz5MdH_zl_Z17h55CHLzvcdPzWM8zK8Ik1-ImXEgdT_Hk3pHkknu_YLrNWH5vypC3jiJQXv7K3qPWmOKk1y4fipqgmZW_AurHi0PCZOjteit1ya-gkGtkqxxsp8nIXW5Yhuyi15mFGrohC_umie_9ihe_UYPMP3ORRniUQfrydqvumk4GNFVTEm6_DkT-ewLyRz1XOWCfmhX85uv9AJDPpHrFjcYsWAPuOvJDR84TCDUI2zc_amTsGnUWTL7tk8r2OcCS6wpj1JoZy44V9YWb2ekvsm4DY2Xcaiw9DXBzDHYkaF4tMXzQ46usXD7dOK5jBDg&h=LTWiA93QSkqE6O7-lESl3aUc3sR0oLA5ycHTqVvJm08 - response: - body: - string: '{"name": "e7d82490-d96c-4700-b801-2963fdbd45f2", "status": "InProgress", - "startTime": "2025-09-03T06:45:55.193Z"}' + "UK South", "UK West", "West Central US", "West Europe", "West India", "West + US", "West US 2", "West US 3"], "apiVersions": ["2025-02-01-preview", "2025-01-01", + "2024-11-01-preview", "2024-08-01-preview", "2024-05-01-preview", "2023-08-01-preview", + "2023-08-01", "2023-05-01-preview", "2023-02-01-preview", "2022-11-01-preview", + "2022-08-01-preview", "2022-05-01-preview", "2022-02-01-preview", "2021-11-01-preview", + "2021-11-01", "2021-08-01-preview", "2021-05-01-preview", "2021-02-01-preview", + "2020-11-01-preview", "2020-08-01-preview", "2020-02-02-preview", "2019-06-01-preview", + "2018-06-01-preview", "2017-10-01-preview", "2017-03-01-preview", "2015-05-01-preview", + "2014-04-01-preview", "2014-04-01", "2014-01-01"], "capabilities": "None"}], + "registrationState": "Registered", "registrationPolicy": "RegistrationRequired"}' headers: Cache-Control: - no-cache Content-Length: - - '108' + - '323916' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:46:12 GMT + - Fri, 22 May 2026 08:29:46 GMT Expires: - '-1' Pragma: - no-cache - Retry-After: - - '15' Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: @@ -25078,28 +4532,27 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Sql/locations/westeurope/privateEndpointConnectionAzureAsyncOperation/e7d82490-d96c-4700-b801-2963fdbd45f2?api-version=2024-11-01-preview&t=638924787566608955&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=bg8Rc2m3kl2jy1q925iz5MdH_zl_Z17h55CHLzvcdPzWM8zK8Ik1-ImXEgdT_Hk3pHkknu_YLrNWH5vypC3jiJQXv7K3qPWmOKk1y4fipqgmZW_AurHi0PCZOjteit1ya-gkGtkqxxsp8nIXW5Yhuyi15mFGrohC_umie_9ihe_UYPMP3ORRniUQfrydqvumk4GNFVTEm6_DkT-ewLyRz1XOWCfmhX85uv9AJDPpHrFjcYsWAPuOvJDR84TCDUI2zc_amTsGnUWTL7tk8r2OcCS6wpj1JoZy44V9YWb2ekvsm4DY2Xcaiw9DXBzDHYkaF4tMXzQ46usXD7dOK5jBDg&h=LTWiA93QSkqE6O7-lESl3aUc3sR0oLA5ycHTqVvJm08 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Sql/servers/mocked_sql_server_server/privateEndpointConnections?api-version=2025-02-01-preview response: body: - string: '{"name": "e7d82490-d96c-4700-b801-2963fdbd45f2", "status": "Succeeded", - "startTime": "2025-09-03T06:45:55.193Z"}' + string: '{"error": {"code": "ResourceNotFound", "message": "The Resource ''Microsoft.Sql/servers/pbiedailyserver'' + under resource group ''fabric-cli-tests'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' headers: Cache-Control: - no-cache Content-Length: - - '107' + - '225' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 06:46:27 GMT + - Fri, 22 May 2026 08:29:48 GMT Expires: - '-1' Pragma: - no-cache - Retry-After: - - '15' Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: @@ -25107,312 +4560,6 @@ interactions: X-Content-Type-Options: - nosniff status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e90776ff-42ae-4f92-b45d-25c3d375832b", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "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: - - '359' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:49:48 GMT - Pragma: - - no-cache - RequestId: - - 8ca5acf6-da36-4dec-89a8-11c4c1b1ae9d - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e90776ff-42ae-4f92-b45d-25c3d375832b/managedPrivateEndpoints - response: - body: - string: '{"value": [{"id": "8921d315-633b-4ff8-a699-6e0cfc0abcff", "provisioningState": - "Succeeded", "connectionState": {"status": "Approved", "description": "Approved - by fab", "actionsRequired": "None"}, "name": "fabcli000001", "targetPrivateLinkResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Sql/servers/mocked_sql_server_server", - "targetSubresourceType": "sqlServer"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '296' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:49:48 GMT - Pragma: - - no-cache - RequestId: - - 2c3b4801-e344-4831-b202-73792995be16 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e90776ff-42ae-4f92-b45d-25c3d375832b/managedPrivateEndpoints/8921d315-633b-4ff8-a699-6e0cfc0abcff - response: - body: - string: '{"id": "8921d315-633b-4ff8-a699-6e0cfc0abcff", "provisioningState": - "Succeeded", "connectionState": {"status": "Approved", "description": "Approved - by fab", "actionsRequired": "None"}, "name": "fabcli000001", "targetPrivateLinkResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Sql/servers/mocked_sql_server_server", - "targetSubresourceType": "sqlServer"}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '285' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:49:49 GMT - Pragma: - - no-cache - RequestId: - - b142adc9-a71c-4dc1-8d21-1056d37e2a02 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: '{"value": [{"id": "94da8ea5-0bd6-4a9e-b717-5fdb482f4c71", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "e90776ff-42ae-4f92-b45d-25c3d375832b", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "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: - - '359' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:49:59 GMT - Pragma: - - no-cache - RequestId: - - fe358d55-89e8-4cba-bade-b39ca7c37c68 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/e90776ff-42ae-4f92-b45d-25c3d375832b/managedPrivateEndpoints - response: - body: - string: '{"value": [{"id": "8921d315-633b-4ff8-a699-6e0cfc0abcff", "provisioningState": - "Succeeded", "connectionState": {"status": "Approved", "description": "Approved - by fab", "actionsRequired": "None"}, "name": "fabcli000001", "targetPrivateLinkResourceId": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Sql/servers/mocked_sql_server_server", - "targetSubresourceType": "sqlServer"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '296' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 06:49:58 GMT - Pragma: - - no-cache - RequestId: - - 2148212e-7ff1-4adf-a37f-c065fac7132c - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.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.0.0 - method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/e90776ff-42ae-4f92-b45d-25c3d375832b/managedPrivateEndpoints/8921d315-633b-4ff8-a699-6e0cfc0abcff - 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: - - Wed, 03 Sep 2025 06:49:59 GMT - Pragma: - - no-cache - RequestId: - - 14370042-be37-4be1-a85d-c893e7790622 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK + code: 404 + message: Not Found version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_rm/test_rm_capacity_success.yaml b/tests/test_commands/recordings/test_commands/test_rm/test_rm_capacity_success.yaml index c338fef8a..22fc62412 100644 --- a/tests/test_commands/recordings/test_commands/test_rm/test_rm_capacity_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_rm/test_rm_capacity_success.yaml @@ -11,13 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -27,15 +27,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '456' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:00:27 GMT + - Fri, 22 May 2026 06:28:09 GMT Pragma: - no-cache RequestId: - - 0bf82984-6be0-4ece-828b-8f4583c4d145 + - c1eb9119-bb5c-4cfc-931d-d67ebe0c03d2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -43,7 +43,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -60,11 +60,11 @@ interactions: Connection: - keep-alive Content-Length: - - '149' + - '165' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -75,21 +75,21 @@ interactions: "westeurope", "sku": {"name": "F2", "tier": "Fabric"}}' headers: Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/413160B9-830A-4767-A15F-087BBEFD6D1A?api-version=2022-07-01-preview&t=638924796306145273&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=klW93ksmulF3XDLl7e694kufcaZW5ucYLe5UUJP66kn62pBqC9BmlXBccuAKkTnezI3uY4VL_Pw66fDPpsBJwUJ5OKTZrWaFishpeQeGiDxODoc6ubtCsP9rFg4zRyo38CQh-3mR5M1t7ggZCAMBFcOb_M1zKqyWuzbPAjOg7WDoN5fsAZiGciFl4HHgJh2oLd0bQh1pDsk0DqXP4E0zWipSIoHHR86xvvkT0EbiTwUWreoEScoFnzLBna-uT5QMAprQuSbaCBpnA5gCBIfzRImRjbXq3eRzHOIysjDMTro0z1LUYtK9Nvbdf2183VI8GSWg3Wx-FLA71aX2dWepuw&h=bVmkkGNMZi44LvH6GFAFf7Fi8S_X6w0qrvXvJKBBrQU + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/5C974323-3520-4ABC-802A-F699B35319CD?api-version=2022-07-01-preview&t=639150280943209801&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=YEvSjDT4dCNLnhk553bgZ8vMv8m-UfdwVo7iIK0HI7nH_ZDMKI2n9grefn5QXZhGOLbcGvkBUPC9NjBZXNIru9rr1uGn1krAKGswf9I9x7oQAgC6Oc3DvYav0XKfqeudFi90GBtNzepUeGXkL9uYTL7cMMCEfGWTwla8OqNS0qKoSUSJoOnSHYbs12OtWD3Osey2qZTFMPmHvZg_7Wt6JzYlfpBq9oZRFvRDRN6Uh3z4byVyO5t-U4lhIXri_CkFz4sKdcDFcPGgdN8s12b1ha64cwSke7uoiT3iOHlSfA-vJhdageTunGtP94E3KObKEz27PRnGOpuJTT5QR-UOmQ&h=uRtj6EedWG_5oJm4HEZD8eMC66Ol8Qrfa6W5m4elMLQ Cache-Control: - no-cache Content-Length: - - '406' + - '422' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:00:30 GMT + - Fri, 22 May 2026 06:28:13 GMT Expires: - '-1' Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/413160B9-830A-4767-A15F-087BBEFD6D1A?api-version=2022-07-01-preview&t=638924796306145273&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=YK4g2ZL0bvssjPZBclDn4b_o7v1M0bJtNAUAfssU-IyD6OqzY3ZjbuJVuop1xZPGaYluSFXdd-piKXjab4y8FOvF5aYMrRAe-XoUp7_IlK3qMiIn0N6VV-j8T3RGgqydlEtmynh8NG333kqxiUr0tQwpcZNmR-hn17l-kyN8La2n4khT-YKdk_5Av-Rf2rXDNEIujyoVM_uzqvvJR0bUEHb4McYSIGUJmIjeJ1ogKG2lTGKjgQStuYHQbiCi7Ctb-Vs_-dgHr-3cdNjg-9m5J7LSUE338JHaxQJ4Xu6oFN35jntq6tZsdcn9n-MfjkHbc0B_iR95t8ytPQqKUOypBg&h=4mOTAlqbJXvsH-Pxv7NatRksToR1KK84yri5LCq2a1w + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/5C974323-3520-4ABC-802A-F699B35319CD?api-version=2022-07-01-preview&t=639150280943209801&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=s6GDR9KOYzh0j4HKnGKHJ1d8EQ8ydWEMroGzuk9UYWGB4otXJE0ivwWPzAiY_BM5byAu2Nanzwu_X8FCpUPqQ84hKe0Rt_Ju1k1yjWUuAUvX5oO7uYPQniWwIwF99jBxIrrKl8qRl02KXJ1GMbIoSNx7z-tyeJf04AahLRuBXf4nYNcOhz6M0vzuaTpzZ0_zBgLUcSDvLZ_SpP9jSQB62T1sHPCrSz-i6XAb5TbEXE6bdO0G8RVtHhySkgY3KULZljm4BXzV8U7_2BYF2NdQY5sCMRCZRk5910_yzc2tHsaEd4ulD09kTnssF-RME7CbHCznlXprFor2ylUcib06kQ&h=oFthY6057DL85Dnho6n9SLqfSmbyGWwOtMBKG0WQ8Jg Pragma: - no-cache Strict-Transport-Security: @@ -117,206 +117,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/413160B9-830A-4767-A15F-087BBEFD6D1A?api-version=2022-07-01-preview&t=638924796306145273&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=klW93ksmulF3XDLl7e694kufcaZW5ucYLe5UUJP66kn62pBqC9BmlXBccuAKkTnezI3uY4VL_Pw66fDPpsBJwUJ5OKTZrWaFishpeQeGiDxODoc6ubtCsP9rFg4zRyo38CQh-3mR5M1t7ggZCAMBFcOb_M1zKqyWuzbPAjOg7WDoN5fsAZiGciFl4HHgJh2oLd0bQh1pDsk0DqXP4E0zWipSIoHHR86xvvkT0EbiTwUWreoEScoFnzLBna-uT5QMAprQuSbaCBpnA5gCBIfzRImRjbXq3eRzHOIysjDMTro0z1LUYtK9Nvbdf2183VI8GSWg3Wx-FLA71aX2dWepuw&h=bVmkkGNMZi44LvH6GFAFf7Fi8S_X6w0qrvXvJKBBrQU + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/5C974323-3520-4ABC-802A-F699B35319CD?api-version=2022-07-01-preview&t=639150280943209801&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=YEvSjDT4dCNLnhk553bgZ8vMv8m-UfdwVo7iIK0HI7nH_ZDMKI2n9grefn5QXZhGOLbcGvkBUPC9NjBZXNIru9rr1uGn1krAKGswf9I9x7oQAgC6Oc3DvYav0XKfqeudFi90GBtNzepUeGXkL9uYTL7cMMCEfGWTwla8OqNS0qKoSUSJoOnSHYbs12OtWD3Osey2qZTFMPmHvZg_7Wt6JzYlfpBq9oZRFvRDRN6Uh3z4byVyO5t-U4lhIXri_CkFz4sKdcDFcPGgdN8s12b1ha64cwSke7uoiT3iOHlSfA-vJhdageTunGtP94E3KObKEz27PRnGOpuJTT5QR-UOmQ&h=uRtj6EedWG_5oJm4HEZD8eMC66Ol8Qrfa6W5m4elMLQ response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/413160B9-830A-4767-A15F-087BBEFD6D1A", - "name": "413160B9-830A-4767-A15F-087BBEFD6D1A", "status": "Provisioning", - "startTime": "2025-09-03T07:00:29.8830000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '249' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:00:29 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/413160B9-830A-4767-A15F-087BBEFD6D1A?api-version=2022-07-01-preview&t=638924796306145273&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=klW93ksmulF3XDLl7e694kufcaZW5ucYLe5UUJP66kn62pBqC9BmlXBccuAKkTnezI3uY4VL_Pw66fDPpsBJwUJ5OKTZrWaFishpeQeGiDxODoc6ubtCsP9rFg4zRyo38CQh-3mR5M1t7ggZCAMBFcOb_M1zKqyWuzbPAjOg7WDoN5fsAZiGciFl4HHgJh2oLd0bQh1pDsk0DqXP4E0zWipSIoHHR86xvvkT0EbiTwUWreoEScoFnzLBna-uT5QMAprQuSbaCBpnA5gCBIfzRImRjbXq3eRzHOIysjDMTro0z1LUYtK9Nvbdf2183VI8GSWg3Wx-FLA71aX2dWepuw&h=bVmkkGNMZi44LvH6GFAFf7Fi8S_X6w0qrvXvJKBBrQU - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/413160B9-830A-4767-A15F-087BBEFD6D1A", - "name": "413160B9-830A-4767-A15F-087BBEFD6D1A", "status": "Provisioning", - "startTime": "2025-09-03T07:00:29.8830000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '249' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:00:30 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/413160B9-830A-4767-A15F-087BBEFD6D1A?api-version=2022-07-01-preview&t=638924796306145273&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=klW93ksmulF3XDLl7e694kufcaZW5ucYLe5UUJP66kn62pBqC9BmlXBccuAKkTnezI3uY4VL_Pw66fDPpsBJwUJ5OKTZrWaFishpeQeGiDxODoc6ubtCsP9rFg4zRyo38CQh-3mR5M1t7ggZCAMBFcOb_M1zKqyWuzbPAjOg7WDoN5fsAZiGciFl4HHgJh2oLd0bQh1pDsk0DqXP4E0zWipSIoHHR86xvvkT0EbiTwUWreoEScoFnzLBna-uT5QMAprQuSbaCBpnA5gCBIfzRImRjbXq3eRzHOIysjDMTro0z1LUYtK9Nvbdf2183VI8GSWg3Wx-FLA71aX2dWepuw&h=bVmkkGNMZi44LvH6GFAFf7Fi8S_X6w0qrvXvJKBBrQU - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/413160B9-830A-4767-A15F-087BBEFD6D1A", - "name": "413160B9-830A-4767-A15F-087BBEFD6D1A", "status": "Provisioning", - "startTime": "2025-09-03T07:00:29.8830000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '249' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:00:31 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/413160B9-830A-4767-A15F-087BBEFD6D1A?api-version=2022-07-01-preview&t=638924796306145273&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=klW93ksmulF3XDLl7e694kufcaZW5ucYLe5UUJP66kn62pBqC9BmlXBccuAKkTnezI3uY4VL_Pw66fDPpsBJwUJ5OKTZrWaFishpeQeGiDxODoc6ubtCsP9rFg4zRyo38CQh-3mR5M1t7ggZCAMBFcOb_M1zKqyWuzbPAjOg7WDoN5fsAZiGciFl4HHgJh2oLd0bQh1pDsk0DqXP4E0zWipSIoHHR86xvvkT0EbiTwUWreoEScoFnzLBna-uT5QMAprQuSbaCBpnA5gCBIfzRImRjbXq3eRzHOIysjDMTro0z1LUYtK9Nvbdf2183VI8GSWg3Wx-FLA71aX2dWepuw&h=bVmkkGNMZi44LvH6GFAFf7Fi8S_X6w0qrvXvJKBBrQU - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/413160B9-830A-4767-A15F-087BBEFD6D1A", - "name": "413160B9-830A-4767-A15F-087BBEFD6D1A", "status": "Provisioning", - "startTime": "2025-09-03T07:00:29.8830000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '249' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:00:32 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/413160B9-830A-4767-A15F-087BBEFD6D1A?api-version=2022-07-01-preview&t=638924796306145273&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=klW93ksmulF3XDLl7e694kufcaZW5ucYLe5UUJP66kn62pBqC9BmlXBccuAKkTnezI3uY4VL_Pw66fDPpsBJwUJ5OKTZrWaFishpeQeGiDxODoc6ubtCsP9rFg4zRyo38CQh-3mR5M1t7ggZCAMBFcOb_M1zKqyWuzbPAjOg7WDoN5fsAZiGciFl4HHgJh2oLd0bQh1pDsk0DqXP4E0zWipSIoHHR86xvvkT0EbiTwUWreoEScoFnzLBna-uT5QMAprQuSbaCBpnA5gCBIfzRImRjbXq3eRzHOIysjDMTro0z1LUYtK9Nvbdf2183VI8GSWg3Wx-FLA71aX2dWepuw&h=bVmkkGNMZi44LvH6GFAFf7Fi8S_X6w0qrvXvJKBBrQU - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/413160B9-830A-4767-A15F-087BBEFD6D1A", - "name": "413160B9-830A-4767-A15F-087BBEFD6D1A", "status": "Succeeded", "startTime": - "2025-09-03T07:00:29.8830000Z", "endTime": "2025-09-03T07:00:34.0300000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/5C974323-3520-4ABC-802A-F699B35319CD", + "name": "5C974323-3520-4ABC-802A-F699B35319CD", "status": "Succeeded", "startTime": + "2026-05-22T06:28:13.1870000Z", "endTime": "2026-05-22T06:28:15.7300000Z"}' headers: Cache-Control: - no-cache @@ -327,7 +135,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:00:37 GMT + - Fri, 22 May 2026 06:28:24 GMT Expires: - '-1' Pragma: @@ -357,14 +165,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": - "Active"}, {"id": "1bd8f28f-3858-4b6c-b76b-75b4fea9e66a", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "e4a6410e-d843-44e3-9e59-a228effcfb87", "displayName": "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -374,15 +182,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '492' + - '460' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:00:42 GMT + - Fri, 22 May 2026 06:28:28 GMT Pragma: - no-cache RequestId: - - 3b288e75-8653-4323-8be7-401f5957ced5 + - 0df90a96-b071-49a2-9107-088f423f5640 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -390,7 +198,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -408,14 +216,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": - "Active"}, {"id": "1bd8f28f-3858-4b6c-b76b-75b4fea9e66a", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "e4a6410e-d843-44e3-9e59-a228effcfb87", "displayName": "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -425,15 +233,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '492' + - '460' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:00:46 GMT + - Fri, 22 May 2026 06:28:34 GMT Pragma: - no-cache RequestId: - - 2666a989-8685-4b22-a7c8-d131c5204d2d + - f3a8b9cc-b506-4b04-92ff-7b7e45917fca Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -441,7 +249,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: @@ -459,7 +267,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -472,13 +280,13 @@ interactions: Cache-Control: - no-cache Content-Length: - - '408' + - '424' Content-Security-Policy: - script-src 'self' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:00:47 GMT + - Fri, 22 May 2026 06:28:34 GMT Expires: - '-1' Pragma: @@ -510,7 +318,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: DELETE uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -518,7 +326,7 @@ interactions: string: '' headers: Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/5A651FC4-C397-49E3-B257-10AAD474E424?api-version=2022-07-01-preview&t=638924796489026481&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=yKcYB8v0lx8obcE1WCreuevo88TY7XN-ERNq7RKO49thRgKIgCfFAe0Opd5AC59Y2mBiEt16XADExHI4kmlaCoxjVcYbQhV6H3sNFg4KiSJqIpWHFEuPg5n3WhyQ-rLQCQFIHcvtv0AKXMLW22cQiXlf8yJ0bhwSDBY5Yu1zNuE9Wasps4zc9segtuHT5ygXczXN8RX9foP9mM9Y3fO2vEIQ1ljRvHZD8FKEY_ZvP8K1GIM1ND4tcQ6VV8-Mk4HhuUtOJ3pxe-VVfPDp91ls_9bnC91uFVifBRj781IlSNSo5oy12XdZOMBHxaZBu06wcP_qgNi9yXkFiZxu3c4YeA&h=ZOfAs84HjdKgTZ5LDMFmElrUuhpMpcIWSNk5ZwVuBTk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/252E2CE3-25C6-42C8-B8DE-A5A4AFBBBEEB?api-version=2022-07-01-preview&t=639150281167721947&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=SycTfSXuAqwiCyjN516u5UpGiK32dDuQFQVLoBQ4P11mGD6zhKhZI7dPZVja2n23RPYgDMUeFMjaaZ-_wn9moGkzbcQ9hWlhQ_6OxqUKO_FBHKqlPotSbstuoHq_y2f87dVZOqXSThL6xoZ__XgrINedE2I8PKMk9ne-Y7Etb3Jugq9Rc-VEv3ufCtZBeIBhPgzofQ_Ht5P2hNlvKUgD5EdlSliabFfoGiNLzlX5bacm7NR0Iy668T9MJ-Z4ymWa6SsjylDNNqw5A59Kp7MmZvDWVNO-daMGrbr_9teUngQEy7cBSMjaEIe68Axyr9TByRiYcQlIGCVw7jXWJF9hvA&h=qaoRyTuv98CMppl1wKPO3Tk7tSOWMFfpFj_qotY4eUY Cache-Control: - no-cache Content-Length: @@ -526,11 +334,11 @@ interactions: Content-Security-Policy: - script-src 'self' Date: - - Wed, 03 Sep 2025 07:00:48 GMT + - Fri, 22 May 2026 06:28:36 GMT Expires: - '-1' Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/5A651FC4-C397-49E3-B257-10AAD474E424?api-version=2022-07-01-preview&t=638924796489026481&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=r953ATVLY02e16YQ38NCkDZG_z8QC5DWYRamgMH8rohWqjN6gEn9XDLcP0JX6g8zVUBVlmn5Z4zQS-uV0KRkks5_Psl4Yxd65ig2-0X8zxOWdoS1lro4hNYdmNbSQgMowm1g57rS6HHhIsVqOaoQ6s5DpGb6oJDzu9FSPo45zhamJqFKMCctDJK_ObJ88hbM20qZtZkdOl4Wugsh8WZvmcrr43OBbT6FMdI8Fc3PiuYpH6DoCjECgZcMRVHdqHCpjkyxNw5G2-kn3WxkN9CyvR3LRAXHoRPm4HGJYzqQ19pip4FycJp_kGT9s0-ITu8GJsKH4OmSfGD0VMBXoeIaHQ&h=TZfw4caqsr2JXsgqkQwARnx67ZbVqmcnAUX_toM1XGY + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/252E2CE3-25C6-42C8-B8DE-A5A4AFBBBEEB?api-version=2022-07-01-preview&t=639150281167721947&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=jrHgsPYafoC8gny_YAbLa4oBl9u_u13cXEe0LzQFiEqHRq1DT5IEGr72MHi_O6PEA6-MkfpVbo3gwXZuW5cf6Rt4SHjx_qTIhn4JB79otOVJFOps-hmGOArnkEH7Fukl5CpCEn8RDL90w1fA-OAimK_mU_LcY9soadzOeGk1k8XoajWByeLShaLPv4maF1Xt5CrBvW9vEIg5aRHDl9XQivEGoYck0GGfNZVUPfBRH3n6qlCltvA9RSPfs0kChyFe3xuSQhQ9CmqJq58n4YaOf1otd3p_31VT7kJrkBK32AGhmrKyRKHwzZvo0FsV20CiVawU0yF8w4699hTTk6WXPQ&h=re29h_1tKjztcVr86PwIvwCfPffBzojhExDb9HSuZhc Pragma: - no-cache Strict-Transport-Security: @@ -558,254 +366,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/5A651FC4-C397-49E3-B257-10AAD474E424?api-version=2022-07-01-preview&t=638924796489026481&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=yKcYB8v0lx8obcE1WCreuevo88TY7XN-ERNq7RKO49thRgKIgCfFAe0Opd5AC59Y2mBiEt16XADExHI4kmlaCoxjVcYbQhV6H3sNFg4KiSJqIpWHFEuPg5n3WhyQ-rLQCQFIHcvtv0AKXMLW22cQiXlf8yJ0bhwSDBY5Yu1zNuE9Wasps4zc9segtuHT5ygXczXN8RX9foP9mM9Y3fO2vEIQ1ljRvHZD8FKEY_ZvP8K1GIM1ND4tcQ6VV8-Mk4HhuUtOJ3pxe-VVfPDp91ls_9bnC91uFVifBRj781IlSNSo5oy12XdZOMBHxaZBu06wcP_qgNi9yXkFiZxu3c4YeA&h=ZOfAs84HjdKgTZ5LDMFmElrUuhpMpcIWSNk5ZwVuBTk - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/5A651FC4-C397-49E3-B257-10AAD474E424", - "name": "5A651FC4-C397-49E3-B257-10AAD474E424", "status": "Deleting", "startTime": - "2025-09-03T07:00:48.3100000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:00:48 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/5A651FC4-C397-49E3-B257-10AAD474E424?api-version=2022-07-01-preview&t=638924796489026481&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=yKcYB8v0lx8obcE1WCreuevo88TY7XN-ERNq7RKO49thRgKIgCfFAe0Opd5AC59Y2mBiEt16XADExHI4kmlaCoxjVcYbQhV6H3sNFg4KiSJqIpWHFEuPg5n3WhyQ-rLQCQFIHcvtv0AKXMLW22cQiXlf8yJ0bhwSDBY5Yu1zNuE9Wasps4zc9segtuHT5ygXczXN8RX9foP9mM9Y3fO2vEIQ1ljRvHZD8FKEY_ZvP8K1GIM1ND4tcQ6VV8-Mk4HhuUtOJ3pxe-VVfPDp91ls_9bnC91uFVifBRj781IlSNSo5oy12XdZOMBHxaZBu06wcP_qgNi9yXkFiZxu3c4YeA&h=ZOfAs84HjdKgTZ5LDMFmElrUuhpMpcIWSNk5ZwVuBTk - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/5A651FC4-C397-49E3-B257-10AAD474E424", - "name": "5A651FC4-C397-49E3-B257-10AAD474E424", "status": "Deleting", "startTime": - "2025-09-03T07:00:48.3100000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:00:49 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/5A651FC4-C397-49E3-B257-10AAD474E424?api-version=2022-07-01-preview&t=638924796489026481&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=yKcYB8v0lx8obcE1WCreuevo88TY7XN-ERNq7RKO49thRgKIgCfFAe0Opd5AC59Y2mBiEt16XADExHI4kmlaCoxjVcYbQhV6H3sNFg4KiSJqIpWHFEuPg5n3WhyQ-rLQCQFIHcvtv0AKXMLW22cQiXlf8yJ0bhwSDBY5Yu1zNuE9Wasps4zc9segtuHT5ygXczXN8RX9foP9mM9Y3fO2vEIQ1ljRvHZD8FKEY_ZvP8K1GIM1ND4tcQ6VV8-Mk4HhuUtOJ3pxe-VVfPDp91ls_9bnC91uFVifBRj781IlSNSo5oy12XdZOMBHxaZBu06wcP_qgNi9yXkFiZxu3c4YeA&h=ZOfAs84HjdKgTZ5LDMFmElrUuhpMpcIWSNk5ZwVuBTk - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/5A651FC4-C397-49E3-B257-10AAD474E424", - "name": "5A651FC4-C397-49E3-B257-10AAD474E424", "status": "Deleting", "startTime": - "2025-09-03T07:00:48.3100000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:00:49 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/5A651FC4-C397-49E3-B257-10AAD474E424?api-version=2022-07-01-preview&t=638924796489026481&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=yKcYB8v0lx8obcE1WCreuevo88TY7XN-ERNq7RKO49thRgKIgCfFAe0Opd5AC59Y2mBiEt16XADExHI4kmlaCoxjVcYbQhV6H3sNFg4KiSJqIpWHFEuPg5n3WhyQ-rLQCQFIHcvtv0AKXMLW22cQiXlf8yJ0bhwSDBY5Yu1zNuE9Wasps4zc9segtuHT5ygXczXN8RX9foP9mM9Y3fO2vEIQ1ljRvHZD8FKEY_ZvP8K1GIM1ND4tcQ6VV8-Mk4HhuUtOJ3pxe-VVfPDp91ls_9bnC91uFVifBRj781IlSNSo5oy12XdZOMBHxaZBu06wcP_qgNi9yXkFiZxu3c4YeA&h=ZOfAs84HjdKgTZ5LDMFmElrUuhpMpcIWSNk5ZwVuBTk - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/5A651FC4-C397-49E3-B257-10AAD474E424", - "name": "5A651FC4-C397-49E3-B257-10AAD474E424", "status": "Deleting", "startTime": - "2025-09-03T07:00:48.3100000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:00:51 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/5A651FC4-C397-49E3-B257-10AAD474E424?api-version=2022-07-01-preview&t=638924796489026481&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=yKcYB8v0lx8obcE1WCreuevo88TY7XN-ERNq7RKO49thRgKIgCfFAe0Opd5AC59Y2mBiEt16XADExHI4kmlaCoxjVcYbQhV6H3sNFg4KiSJqIpWHFEuPg5n3WhyQ-rLQCQFIHcvtv0AKXMLW22cQiXlf8yJ0bhwSDBY5Yu1zNuE9Wasps4zc9segtuHT5ygXczXN8RX9foP9mM9Y3fO2vEIQ1ljRvHZD8FKEY_ZvP8K1GIM1ND4tcQ6VV8-Mk4HhuUtOJ3pxe-VVfPDp91ls_9bnC91uFVifBRj781IlSNSo5oy12XdZOMBHxaZBu06wcP_qgNi9yXkFiZxu3c4YeA&h=ZOfAs84HjdKgTZ5LDMFmElrUuhpMpcIWSNk5ZwVuBTk - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/5A651FC4-C397-49E3-B257-10AAD474E424", - "name": "5A651FC4-C397-49E3-B257-10AAD474E424", "status": "Deleting", "startTime": - "2025-09-03T07:00:48.3100000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 03 Sep 2025 07:00:55 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/5A651FC4-C397-49E3-B257-10AAD474E424?api-version=2022-07-01-preview&t=638924796489026481&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=yKcYB8v0lx8obcE1WCreuevo88TY7XN-ERNq7RKO49thRgKIgCfFAe0Opd5AC59Y2mBiEt16XADExHI4kmlaCoxjVcYbQhV6H3sNFg4KiSJqIpWHFEuPg5n3WhyQ-rLQCQFIHcvtv0AKXMLW22cQiXlf8yJ0bhwSDBY5Yu1zNuE9Wasps4zc9segtuHT5ygXczXN8RX9foP9mM9Y3fO2vEIQ1ljRvHZD8FKEY_ZvP8K1GIM1ND4tcQ6VV8-Mk4HhuUtOJ3pxe-VVfPDp91ls_9bnC91uFVifBRj781IlSNSo5oy12XdZOMBHxaZBu06wcP_qgNi9yXkFiZxu3c4YeA&h=ZOfAs84HjdKgTZ5LDMFmElrUuhpMpcIWSNk5ZwVuBTk + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/252E2CE3-25C6-42C8-B8DE-A5A4AFBBBEEB?api-version=2022-07-01-preview&t=639150281167721947&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=SycTfSXuAqwiCyjN516u5UpGiK32dDuQFQVLoBQ4P11mGD6zhKhZI7dPZVja2n23RPYgDMUeFMjaaZ-_wn9moGkzbcQ9hWlhQ_6OxqUKO_FBHKqlPotSbstuoHq_y2f87dVZOqXSThL6xoZ__XgrINedE2I8PKMk9ne-Y7Etb3Jugq9Rc-VEv3ufCtZBeIBhPgzofQ_Ht5P2hNlvKUgD5EdlSliabFfoGiNLzlX5bacm7NR0Iy668T9MJ-Z4ymWa6SsjylDNNqw5A59Kp7MmZvDWVNO-daMGrbr_9teUngQEy7cBSMjaEIe68Axyr9TByRiYcQlIGCVw7jXWJF9hvA&h=qaoRyTuv98CMppl1wKPO3Tk7tSOWMFfpFj_qotY4eUY response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/5A651FC4-C397-49E3-B257-10AAD474E424", - "name": "5A651FC4-C397-49E3-B257-10AAD474E424", "status": "Deleting", "startTime": - "2025-09-03T07:00:48.3100000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/252E2CE3-25C6-42C8-B8DE-A5A4AFBBBEEB", + "name": "252E2CE3-25C6-42C8-B8DE-A5A4AFBBBEEB", "status": "Deleting", "startTime": + "2026-05-22T06:28:36.1300000Z"}' headers: Cache-Control: - no-cache @@ -816,7 +384,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:01:03 GMT + - Fri, 22 May 2026 06:28:47 GMT Expires: - '-1' Pragma: @@ -846,14 +414,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/5A651FC4-C397-49E3-B257-10AAD474E424?api-version=2022-07-01-preview&t=638924796489026481&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=yKcYB8v0lx8obcE1WCreuevo88TY7XN-ERNq7RKO49thRgKIgCfFAe0Opd5AC59Y2mBiEt16XADExHI4kmlaCoxjVcYbQhV6H3sNFg4KiSJqIpWHFEuPg5n3WhyQ-rLQCQFIHcvtv0AKXMLW22cQiXlf8yJ0bhwSDBY5Yu1zNuE9Wasps4zc9segtuHT5ygXczXN8RX9foP9mM9Y3fO2vEIQ1ljRvHZD8FKEY_ZvP8K1GIM1ND4tcQ6VV8-Mk4HhuUtOJ3pxe-VVfPDp91ls_9bnC91uFVifBRj781IlSNSo5oy12XdZOMBHxaZBu06wcP_qgNi9yXkFiZxu3c4YeA&h=ZOfAs84HjdKgTZ5LDMFmElrUuhpMpcIWSNk5ZwVuBTk + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/252E2CE3-25C6-42C8-B8DE-A5A4AFBBBEEB?api-version=2022-07-01-preview&t=639150281167721947&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=SycTfSXuAqwiCyjN516u5UpGiK32dDuQFQVLoBQ4P11mGD6zhKhZI7dPZVja2n23RPYgDMUeFMjaaZ-_wn9moGkzbcQ9hWlhQ_6OxqUKO_FBHKqlPotSbstuoHq_y2f87dVZOqXSThL6xoZ__XgrINedE2I8PKMk9ne-Y7Etb3Jugq9Rc-VEv3ufCtZBeIBhPgzofQ_Ht5P2hNlvKUgD5EdlSliabFfoGiNLzlX5bacm7NR0Iy668T9MJ-Z4ymWa6SsjylDNNqw5A59Kp7MmZvDWVNO-daMGrbr_9teUngQEy7cBSMjaEIe68Axyr9TByRiYcQlIGCVw7jXWJF9hvA&h=qaoRyTuv98CMppl1wKPO3Tk7tSOWMFfpFj_qotY4eUY response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/5A651FC4-C397-49E3-B257-10AAD474E424", - "name": "5A651FC4-C397-49E3-B257-10AAD474E424", "status": "Deleting", "startTime": - "2025-09-03T07:00:48.3100000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/252E2CE3-25C6-42C8-B8DE-A5A4AFBBBEEB", + "name": "252E2CE3-25C6-42C8-B8DE-A5A4AFBBBEEB", "status": "Deleting", "startTime": + "2026-05-22T06:28:36.1300000Z"}' headers: Cache-Control: - no-cache @@ -864,7 +432,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:01:19 GMT + - Fri, 22 May 2026 06:28:58 GMT Expires: - '-1' Pragma: @@ -894,14 +462,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/5A651FC4-C397-49E3-B257-10AAD474E424?api-version=2022-07-01-preview&t=638924796489026481&c=MIIHpTCCBo2gAwIBAgITfwXYLwBldsI4-E8kQgAEBdgvADANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDIwHhcNMjUwNzE1MDYxODA0WhcNMjYwMTExMDYxODA0WjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAM09NV6f_KdIXcDEjNDcmz27Xq7zRjG1_NGgC0xLseH0Hvqvm_wfmV3GNJWUVVRA56158XW3VDQGRY7fJeKKoECaHeqQxJYAjNJka0lwJHh1n72cBrsYNdXTBzNXyLUV3pF3pyPD4KT8jkv_wMwzJiFTeTbPE8AhA5UNHBlv078DrcUoJdUK8_I8lhXNm46oFFzV_88tzfQbQd5iwlifkBnvwDXwY_bUy85PnU_TlGkGfQ3CWDY9__EgEbqN0DxNUYEBoFYuA0e45VpqIDaYjz9wc5Kuys0wMEEhHss_Vxr2wC9vT09pY1n3wDsdP25gur12aOAQuLAQtXz_vsqh_BUCAwEAAaOCBJIwggSOMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHaBggrBgEFBQcBAQSCAcwwggHIMGYGCCsGAQUFBzAChlpodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MFYGCCsGAQUFBzAChkpodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9CTDJQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDAyKDQpLmNydDBWBggrBgEFBQcwAoZKaHR0cDovL2NybDMuYW1lLmdibC9haWEvQkwyUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwMig0KS5jcnQwVgYIKwYBBQUHMAKGSmh0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0JMMlBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3J0MB0GA1UdDgQWBBS_59nmaA_Xv5I5Oe5WeEFCjW_cITAOBgNVHQ8BAf8EBAMCBaAwggE1BgNVHR8EggEsMIIBKDCCASSgggEgoIIBHIZCaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JshjRodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDIoNCkuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBSuecJrXSWIEwb2BwnDl3x7l48dVTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAHViZPXBi9k1oNVPpAbUD-GyuXjlN0j1NnJEjfVJnTk8WlqqvN0B2BGd-uwuj62leaJGFMoszMG2Ziyzw29b90CKaM5ZeETCxBTsQlG_oYpt21ZvFAIUFUhmy0lcKj-kmNU3yfItfzYWbYzHJz_WL5Hdortwl0NRvmogMEvcEDERCcwIZuqxeLhke5pLye1cnuO94zl88u3z7wkTPAnM6JF5WNmfRS-_0vu8FiK1mGD6v7pVju4R1s961odq1sdnaIkDKiFIy9l75ttaj_o9FYbhS5EjyL98KKg2Y7Wec1kDMqyifQv11MQSTM4r0Vt-MpJKCORMZCjAGpgBFGz4REs&s=yKcYB8v0lx8obcE1WCreuevo88TY7XN-ERNq7RKO49thRgKIgCfFAe0Opd5AC59Y2mBiEt16XADExHI4kmlaCoxjVcYbQhV6H3sNFg4KiSJqIpWHFEuPg5n3WhyQ-rLQCQFIHcvtv0AKXMLW22cQiXlf8yJ0bhwSDBY5Yu1zNuE9Wasps4zc9segtuHT5ygXczXN8RX9foP9mM9Y3fO2vEIQ1ljRvHZD8FKEY_ZvP8K1GIM1ND4tcQ6VV8-Mk4HhuUtOJ3pxe-VVfPDp91ls_9bnC91uFVifBRj781IlSNSo5oy12XdZOMBHxaZBu06wcP_qgNi9yXkFiZxu3c4YeA&h=ZOfAs84HjdKgTZ5LDMFmElrUuhpMpcIWSNk5ZwVuBTk + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/252E2CE3-25C6-42C8-B8DE-A5A4AFBBBEEB?api-version=2022-07-01-preview&t=639150281167721947&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=SycTfSXuAqwiCyjN516u5UpGiK32dDuQFQVLoBQ4P11mGD6zhKhZI7dPZVja2n23RPYgDMUeFMjaaZ-_wn9moGkzbcQ9hWlhQ_6OxqUKO_FBHKqlPotSbstuoHq_y2f87dVZOqXSThL6xoZ__XgrINedE2I8PKMk9ne-Y7Etb3Jugq9Rc-VEv3ufCtZBeIBhPgzofQ_Ht5P2hNlvKUgD5EdlSliabFfoGiNLzlX5bacm7NR0Iy668T9MJ-Z4ymWa6SsjylDNNqw5A59Kp7MmZvDWVNO-daMGrbr_9teUngQEy7cBSMjaEIe68Axyr9TByRiYcQlIGCVw7jXWJF9hvA&h=qaoRyTuv98CMppl1wKPO3Tk7tSOWMFfpFj_qotY4eUY response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/5A651FC4-C397-49E3-B257-10AAD474E424", - "name": "5A651FC4-C397-49E3-B257-10AAD474E424", "status": "Succeeded", "startTime": - "2025-09-03T07:00:48.3100000Z", "endTime": "2025-09-03T07:01:35.6500000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/252E2CE3-25C6-42C8-B8DE-A5A4AFBBBEEB", + "name": "252E2CE3-25C6-42C8-B8DE-A5A4AFBBBEEB", "status": "Succeeded", "startTime": + "2026-05-22T06:28:36.1300000Z", "endTime": "2026-05-22T06:29:02.8570000Z"}' headers: Cache-Control: - no-cache @@ -912,7 +480,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:01:50 GMT + - Fri, 22 May 2026 06:29:09 GMT Expires: - '-1' Pragma: @@ -942,13 +510,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.0.0 + - 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": "West Europe", "state": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -958,15 +526,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '456' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 03 Sep 2025 07:01:57 GMT + - Fri, 22 May 2026 06:29:13 GMT Pragma: - no-cache RequestId: - - 9b684e58-c379-427f-b5fc-71c5b5817466 + - 586c7434-9808-4324-92d2-699f7b729b43 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -974,7 +542,7 @@ interactions: X-Frame-Options: - deny home-cluster-uri: - - https://wabi-west-europe-redirect.analysis.windows.net/ + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' status: diff --git a/tests/test_commands/recordings/test_commands/test_set/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_set/class_setup.yaml index 4f3e24c4a..844a527e7 100644 --- a/tests/test_commands/recordings/test_commands/test_set/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_set/class_setup.yaml @@ -11,13 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (rm; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.6.1 (ls; 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"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b557663e-d428-400c-88d3-3000e8fc9237", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -26,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2016' + - '2726' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:29:24 GMT + - Fri, 22 May 2026 08:16:50 GMT Pragma: - no-cache RequestId: - - c0ad49e8-efdf-4ac0-a985-606a72d7edef + - 2ef40a01-3c74-4e96-9484-1415406f673b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -60,13 +62,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (rm; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.6.1 (ls; 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"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b557663e-d428-400c-88d3-3000e8fc9237", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -75,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2016' + - '2726' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:29:25 GMT + - Fri, 22 May 2026 08:16:52 GMT Pragma: - no-cache RequestId: - - e0f590a6-392f-40f1-8f5c-5126d45d7861 + - ab724e67-2b80-4eca-b337-dcfa387aa756 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,7 +113,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (rm; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.6.1 (ls; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET uri: https://api.fabric.microsoft.com/v1/capacities response: @@ -125,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '427' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:29:31 GMT + - Fri, 22 May 2026 08:16:57 GMT Pragma: - no-cache RequestId: - - 399bd799-ea30-48c5-9f66-53f6e440284b + - ece2dfe7-ea09-4ec9-83fa-62e5d0f805bb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -148,7 +152,8 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabriccli_WorkspacePerTestclass_000001", "capacityId": "00000000-0000-0000-0000-000000000004"}' + body: '{"displayName": "fabriccli_WorkspacePerTestclass_000001", "capacityId": + "00000000-0000-0000-0000-000000000004"}' headers: Accept: - '*/*' @@ -158,16 +163,16 @@ interactions: - keep-alive Content-Length: - '124' - Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (rm; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.6.1 (ls; Linux/6.12.76-linuxkit; Python/3.12.11) method: POST uri: https://api.fabric.microsoft.com/v1/workspaces response: body: - string: '{"id": "9b9b7432-90cd-4ae2-9702-5d97c233784c", "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "c89f9280-455e-4eef-9062-e33dce08be60", "displayName": "fabriccli_WorkspacePerTestclass_000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -176,17 +181,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '188' + - '177' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:29:39 GMT + - Fri, 22 May 2026 08:17:04 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c + - https://api.fabric.microsoft.com/v1/workspaces/c89f9280-455e-4eef-9062-e33dce08be60 Pragma: - no-cache RequestId: - - b10807f5-fd9e-4ea5-9a3d-1b808ad590ab + - 9d194aa3-c850-47fe-8ced-2d2e4135ec20 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -212,14 +217,17 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (set; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.6.1 (set; 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": "9b9b7432-90cd-4ae2-9702-5d97c233784c", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b557663e-d428-400c-88d3-3000e8fc9237", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "c89f9280-455e-4eef-9062-e33dce08be60", "displayName": "fabriccli_WorkspacePerTestclass_000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -228,15 +236,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2047' + - '2761' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:56 GMT + - Fri, 22 May 2026 08:19:02 GMT Pragma: - no-cache RequestId: - - 7778ea1c-bc9d-4991-91a5-111c4cb8e461 + - 98be4354-310f-4fcb-8eb3-a17c340788ac Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -262,19 +270,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (set; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.6.1 (set; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/c89f9280-455e-4eef-9062-e33dce08be60/items response: body: - string: '{"value": [{"id": "02b473d6-b687-4f79-a0af-0d6bd295742d", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, - {"id": "0516c4f6-54d8-4eb9-93fd-aa2afcb9fd1c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, - {"id": "c867e21e-e44d-4821-821b-70dd3fae45ad", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, - {"id": "c822a139-20b0-4aba-a7d4-6b14556dd890", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -283,15 +284,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '278' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:56 GMT + - Fri, 22 May 2026 08:19:03 GMT Pragma: - no-cache RequestId: - - 9bf700bb-1848-42ab-8b30-038d926d24f1 + - ca41f8a6-45dd-49b6-b9a0-3eb5c839b1a3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -319,9 +320,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.5.0 (set; Linux; x86_64; 6.6.87.2-microsoft-standard-WSL2) + - ms-fabric-cli/1.6.1 (set; Linux/6.12.76-linuxkit; Python/3.12.11) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c + uri: https://api.fabric.microsoft.com/v1/workspaces/c89f9280-455e-4eef-9062-e33dce08be60 response: body: string: '' @@ -337,11 +338,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 31 Mar 2026 09:30:58 GMT + - Fri, 22 May 2026 08:19:05 GMT Pragma: - no-cache RequestId: - - c3e0e109-9db7-404e-8460-78235dece80d + - f9fd9235-27e2-402f-9bc4-6c7d25c64186 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_capacity_success[sku.name-F4].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_capacity_success[sku.name-F4].yaml index 7e5839293..e9cd2ed01 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_capacity_success[sku.name-F4].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_capacity_success[sku.name-F4].yaml @@ -11,13 +11,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/capacities response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F32", "region": "Central US", "state": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -27,15 +27,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 01 Jan 2026 07:12:42 GMT + - Fri, 22 May 2026 08:17:19 GMT Pragma: - no-cache RequestId: - - f443fa1e-1a6d-46a6-a9df-b807cec99b56 + - 48cab54a-4bf1-4d4f-b094-abb934269999 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -64,7 +64,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -75,7 +75,7 @@ interactions: "westeurope", "sku": {"name": "F2", "tier": "Fabric"}}' headers: Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/8D694020-6EAB-4500-9C6D-2C8B3C3ED9EE?api-version=2022-07-01-preview&t=639028483683736620&c=MIIHyTCCBrGgAwIBAgITfAlk8Mi06a8UhnP99gAACWTwyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDI0MTcxMjQwWhcNMjYwNDIyMTcxMjQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALcUPUGgVHqFnr2lKrLUM330FRAEoBYLCPB4YAq-pwWa9yfwpBV5sY_mFLbBUr3x7rICcv9Hc0-xqNB8ek2clzLoKnUNgng6GScC3SovkX1ef7RjqpXqV0ikigzDum4gusImV2LK8d_-RiKP5rKXq8O5MacwwEOJqK_UaTb01WXBrjNWDPfDF9vIuuKi7Wi8-J_PLgu6Ja2U0lAGbs2wPVHEfYdWzpqeHw_xPBs6WzEu2WOszALiZCx__NLAFY9pvE8BBP3WJc9k8GjUkTTTNvj-wHpEtP6iR0ViGH71AjAuWF8RZ3BRd3Gelm7CIS0FyMBJKNXcd5Dtr_NblqXTZJkCAwEAAaOCBLYwggSyMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSBfHSBm-qJF1D6xjuMRc12RfznPDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFSWa-W1M9A0J_kS6Wn7anvvIX6lu8ivCR7xG4Aulce-HuWKEU4N5dH2Qbed1N7HF9bSpH9hD2eRQLSDTKq8wqHhS-l4SOucgl4U_KqWyxtVK9jm4dtBETj8V5tJTUqgnOJE_hssHkBRu7Vmx-1hx4AqPYgfz1w6sL5oFxxprVrfE6XfGgqUCnrTwpSDlh3MvgiOCZj-DWDstxGmz83hsTvbBKCAG0qE_5MlaktX_0Za1dQmaAvqTk8lspoFwZeTvgTaYcQjlZwvyx77omDT8rBsJbMHGzxKAKocA4aKSsP7dO1yYGIM2SlGKSlO7y7y2MxVyhAErh_rhcrWu5jTa6M&s=TDMUjwOVB0JnmaKyCarx32lEG6--0cPlGaJteEsCzdXVYUwOvQOcPdP3sswXGgREE-H3bRdnobu8shmvwzCscmh9aoGsHfv_rImn8QGqoOW5yAfFI_YTRvfY1blHZhfc8iivxWuHFOUrrfFY19pLB_eXYOHFPvUNXnOlNgw5Hms-cotCD4t-43pDoGa68Dt4J-C-159-ZYfRU32WFKU-FzAV-IwzXXqv9YEZHuSslgw5ZTMfT41EujpizzHmkqkHpKhw6wiJSzjkIJbJT2muRO79YzmB-jyQ9g1V730NPdMfCtZPCiQeN8eZuhrWSh7rAfQMvazZXiDPQeM0vW474g&h=W8bc59HE6GvOZNo5k6bTSJODo9yWjMyajSWHIbRXS6Q + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/5D4629C5-C7E1-4706-8E3D-54B41706DCCA?api-version=2022-07-01-preview&t=639150346463949123&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=U-niZUVqBzual-zrValLkELhdwChAt-ickncvEvNg-5mM8CqaIQ1l9AWByihGKKPp3k5GHhUfrGuq90UgDNxv8JsZSkyW5kxi4gendDALKFPOQ0Ll3KMr2sbPgx_CWGIcgEKNE0KGzO1PF0Yv9mjQFuSI4SmieeNps9MJo3k2B-K4i8CBHJfNLOEzBmK2TBZ9AtPBQu3u8yCRVAALhU7Ao1kXAHSnxig5b6El0a87AGzuIWKgrAsgN61bRvvwIBJp1P1AgLb6OO9eHjLP74dHDyqCH4MC3wVBYHBOPwXtgxBan_tvkOTwrwn0o9Xc4q6I9oVPZLu3U1OrvpWFxRd_A&h=2gIuy6oCMLEG1-jhnREM7ydWYwEhCcQUS5DtK64MkFw Cache-Control: - no-cache Content-Length: @@ -85,11 +85,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 01 Jan 2026 07:12:47 GMT + - Fri, 22 May 2026 08:17:25 GMT Expires: - '-1' Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/8D694020-6EAB-4500-9C6D-2C8B3C3ED9EE?api-version=2022-07-01-preview&t=639028483683892903&c=MIIHyTCCBrGgAwIBAgITfAlk8Mi06a8UhnP99gAACWTwyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDI0MTcxMjQwWhcNMjYwNDIyMTcxMjQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALcUPUGgVHqFnr2lKrLUM330FRAEoBYLCPB4YAq-pwWa9yfwpBV5sY_mFLbBUr3x7rICcv9Hc0-xqNB8ek2clzLoKnUNgng6GScC3SovkX1ef7RjqpXqV0ikigzDum4gusImV2LK8d_-RiKP5rKXq8O5MacwwEOJqK_UaTb01WXBrjNWDPfDF9vIuuKi7Wi8-J_PLgu6Ja2U0lAGbs2wPVHEfYdWzpqeHw_xPBs6WzEu2WOszALiZCx__NLAFY9pvE8BBP3WJc9k8GjUkTTTNvj-wHpEtP6iR0ViGH71AjAuWF8RZ3BRd3Gelm7CIS0FyMBJKNXcd5Dtr_NblqXTZJkCAwEAAaOCBLYwggSyMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSBfHSBm-qJF1D6xjuMRc12RfznPDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFSWa-W1M9A0J_kS6Wn7anvvIX6lu8ivCR7xG4Aulce-HuWKEU4N5dH2Qbed1N7HF9bSpH9hD2eRQLSDTKq8wqHhS-l4SOucgl4U_KqWyxtVK9jm4dtBETj8V5tJTUqgnOJE_hssHkBRu7Vmx-1hx4AqPYgfz1w6sL5oFxxprVrfE6XfGgqUCnrTwpSDlh3MvgiOCZj-DWDstxGmz83hsTvbBKCAG0qE_5MlaktX_0Za1dQmaAvqTk8lspoFwZeTvgTaYcQjlZwvyx77omDT8rBsJbMHGzxKAKocA4aKSsP7dO1yYGIM2SlGKSlO7y7y2MxVyhAErh_rhcrWu5jTa6M&s=IepphJZVTDfreRcoJDVrgwEdv7O-Jo3QOsFq4-flUmjpYvkKi2_VQQ3eW5v9Y3035y1P53KUoIucZ6kTQca9PyuhYp0YO6Zyy-I1uQF784AIHSG1M4k8eNCFs9JsfVaaFpmhLxOZ2cm5iF-92xGSX3IBIvKrTTCY5ETr9T2IXeUTB4Mbq_DmHRbsybQexHUz7nHnOltMK3JA-OQSAHpQPNq32Qv-sCI0lhDDpnN_qS2FKehwf9fJL2W9BLQaFzPzvWhApMPWmbltlxjwbj4mENBfemi_mbFlbuFMoRz0PtY2ZKEh26YsSlI-SED560osRVqavWEcSCbEm0OvYlUqWQ&h=BWFRlz4c003flXY9WYugsRhKv5TA4AwZ6NDoeIgZUmw + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/5D4629C5-C7E1-4706-8E3D-54B41706DCCA?api-version=2022-07-01-preview&t=639150346464105366&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=QYtm0EJVVpS9HFKjt2wbUN1CsORrKwsMWDAur9wV6oTXuObqDGHDvxJugsFMfUcm7fc_zf8_yuAg-MB0vzEunYBMzSFDUZPj1hvwf6wEquOt1iGYbC7K0TWqXRfuCFRfjfckyoBIW7EctjAta3DqPxbGJ8GNDgejjfAkvqyg8YxSgw6mFDUOFHo1u5l7CSe0SSCNmYAjd8wBEC5tDKFhQUmybcnCVFfPPAvQauS-gxp__bJpzmJf_8Drmot4ClcF7Y6Wsie9kH3BcEtwonz5oxoKwgwJzpIIvNdZ8A2tmf7afojeXC7YuMnDUSwowWbyazdnMHVnqw5gM5qGJuEe-g&h=HZV1LxB9-QBtgie09FaBTCVtFOG7gjLaKtwirOm3s2Y Pragma: - no-cache Strict-Transport-Security: @@ -117,14 +117,14 @@ 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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/8D694020-6EAB-4500-9C6D-2C8B3C3ED9EE?api-version=2022-07-01-preview&t=639028483683736620&c=MIIHyTCCBrGgAwIBAgITfAlk8Mi06a8UhnP99gAACWTwyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDI0MTcxMjQwWhcNMjYwNDIyMTcxMjQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALcUPUGgVHqFnr2lKrLUM330FRAEoBYLCPB4YAq-pwWa9yfwpBV5sY_mFLbBUr3x7rICcv9Hc0-xqNB8ek2clzLoKnUNgng6GScC3SovkX1ef7RjqpXqV0ikigzDum4gusImV2LK8d_-RiKP5rKXq8O5MacwwEOJqK_UaTb01WXBrjNWDPfDF9vIuuKi7Wi8-J_PLgu6Ja2U0lAGbs2wPVHEfYdWzpqeHw_xPBs6WzEu2WOszALiZCx__NLAFY9pvE8BBP3WJc9k8GjUkTTTNvj-wHpEtP6iR0ViGH71AjAuWF8RZ3BRd3Gelm7CIS0FyMBJKNXcd5Dtr_NblqXTZJkCAwEAAaOCBLYwggSyMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSBfHSBm-qJF1D6xjuMRc12RfznPDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFSWa-W1M9A0J_kS6Wn7anvvIX6lu8ivCR7xG4Aulce-HuWKEU4N5dH2Qbed1N7HF9bSpH9hD2eRQLSDTKq8wqHhS-l4SOucgl4U_KqWyxtVK9jm4dtBETj8V5tJTUqgnOJE_hssHkBRu7Vmx-1hx4AqPYgfz1w6sL5oFxxprVrfE6XfGgqUCnrTwpSDlh3MvgiOCZj-DWDstxGmz83hsTvbBKCAG0qE_5MlaktX_0Za1dQmaAvqTk8lspoFwZeTvgTaYcQjlZwvyx77omDT8rBsJbMHGzxKAKocA4aKSsP7dO1yYGIM2SlGKSlO7y7y2MxVyhAErh_rhcrWu5jTa6M&s=TDMUjwOVB0JnmaKyCarx32lEG6--0cPlGaJteEsCzdXVYUwOvQOcPdP3sswXGgREE-H3bRdnobu8shmvwzCscmh9aoGsHfv_rImn8QGqoOW5yAfFI_YTRvfY1blHZhfc8iivxWuHFOUrrfFY19pLB_eXYOHFPvUNXnOlNgw5Hms-cotCD4t-43pDoGa68Dt4J-C-159-ZYfRU32WFKU-FzAV-IwzXXqv9YEZHuSslgw5ZTMfT41EujpizzHmkqkHpKhw6wiJSzjkIJbJT2muRO79YzmB-jyQ9g1V730NPdMfCtZPCiQeN8eZuhrWSh7rAfQMvazZXiDPQeM0vW474g&h=W8bc59HE6GvOZNo5k6bTSJODo9yWjMyajSWHIbRXS6Q + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/5D4629C5-C7E1-4706-8E3D-54B41706DCCA?api-version=2022-07-01-preview&t=639150346463949123&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=U-niZUVqBzual-zrValLkELhdwChAt-ickncvEvNg-5mM8CqaIQ1l9AWByihGKKPp3k5GHhUfrGuq90UgDNxv8JsZSkyW5kxi4gendDALKFPOQ0Ll3KMr2sbPgx_CWGIcgEKNE0KGzO1PF0Yv9mjQFuSI4SmieeNps9MJo3k2B-K4i8CBHJfNLOEzBmK2TBZ9AtPBQu3u8yCRVAALhU7Ao1kXAHSnxig5b6El0a87AGzuIWKgrAsgN61bRvvwIBJp1P1AgLb6OO9eHjLP74dHDyqCH4MC3wVBYHBOPwXtgxBan_tvkOTwrwn0o9Xc4q6I9oVPZLu3U1OrvpWFxRd_A&h=2gIuy6oCMLEG1-jhnREM7ydWYwEhCcQUS5DtK64MkFw response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/8D694020-6EAB-4500-9C6D-2C8B3C3ED9EE", - "name": "8D694020-6EAB-4500-9C6D-2C8B3C3ED9EE", "status": "Succeeded", "startTime": - "2026-01-01T07:12:47.1330000Z", "endTime": "2026-01-01T07:12:50.5770000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/5D4629C5-C7E1-4706-8E3D-54B41706DCCA", + "name": "5D4629C5-C7E1-4706-8E3D-54B41706DCCA", "status": "Succeeded", "startTime": + "2026-05-22T08:17:25.1930000Z", "endTime": "2026-05-22T08:17:28.8000000Z"}' headers: Cache-Control: - no-cache @@ -135,7 +135,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 01 Jan 2026 07:12:58 GMT + - Fri, 22 May 2026 08:17:37 GMT Expires: - '-1' Pragma: @@ -165,15 +165,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/capacities response: body: - string: '{"value": [{"id": "c9b2d85e-d325-4368-a8b7-72b0f6a2e785", "displayName": - "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}, - {"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", - "sku": "F32", "region": "Central US", "state": "Active"}]}' + string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "6ec5a623-5509-43a0-8df2-ee51fda656f7", "displayName": "fabcli000001", + "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -182,15 +182,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '458' + - '459' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 01 Jan 2026 07:13:02 GMT + - Fri, 22 May 2026 08:17:42 GMT Pragma: - no-cache RequestId: - - 008cbdff-24ea-47c6-9867-c9feff448257 + - 44bfb8fb-0ca7-4d09-83ed-591aff5a280f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -216,14 +216,14 @@ 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/capacities response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F32", "region": "Central US", "state": - "Active"}, {"id": "c9b2d85e-d325-4368-a8b7-72b0f6a2e785", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "6ec5a623-5509-43a0-8df2-ee51fda656f7", "displayName": "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -233,15 +233,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '459' + - '458' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 01 Jan 2026 07:13:06 GMT + - Fri, 22 May 2026 08:17:46 GMT Pragma: - no-cache RequestId: - - 4ab76530-a3c8-4add-9db6-56b3f6db8133 + - 904de633-f8d3-44c9-b5da-0d7bba766c20 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -267,15 +267,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/capacities response: body: - string: '{"value": [{"id": "c9b2d85e-d325-4368-a8b7-72b0f6a2e785", "displayName": - "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}, - {"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", - "sku": "F32", "region": "Central US", "state": "Active"}]}' + string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "6ec5a623-5509-43a0-8df2-ee51fda656f7", "displayName": "fabcli000001", + "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -284,15 +284,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '460' + - '459' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 01 Jan 2026 07:13:09 GMT + - Fri, 22 May 2026 08:17:49 GMT Pragma: - no-cache RequestId: - - c25f6efa-5a23-4d77-bf7b-f8d8445f81f8 + - abb63cbd-6566-46d5-97ef-49b5ffbdf970 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -318,7 +318,7 @@ 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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -337,7 +337,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 01 Jan 2026 07:13:10 GMT + - Fri, 22 May 2026 08:17:50 GMT Expires: - '-1' Pragma: @@ -367,15 +367,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/capacities response: body: - string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F32", "region": "Central US", "state": - "Active"}, {"id": "c9b2d85e-d325-4368-a8b7-72b0f6a2e785", "displayName": "fabcli000001", - "sku": "F2", "region": "West Europe", "state": "Active"}]}' + string: '{"value": [{"id": "6ec5a623-5509-43a0-8df2-ee51fda656f7", "displayName": + "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}, + {"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", + "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -388,11 +388,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 01 Jan 2026 07:13:13 GMT + - Fri, 22 May 2026 08:17:54 GMT Pragma: - no-cache RequestId: - - a60ba45a-ceb9-4f7a-81af-939d58af80b7 + - 36fe99e3-7103-4a60-a3de-3dc9dfd48c2c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -418,7 +418,7 @@ 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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -437,7 +437,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 01 Jan 2026 07:13:13 GMT + - Fri, 22 May 2026 08:17:55 GMT Expires: - '-1' Pragma: @@ -467,7 +467,7 @@ 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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -486,7 +486,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 01 Jan 2026 07:13:13 GMT + - Fri, 22 May 2026 08:17:55 GMT Expires: - '-1' Pragma: @@ -514,11 +514,11 @@ interactions: Connection: - keep-alive Content-Length: - - '69' + - '41' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -530,7 +530,7 @@ interactions: {}}' headers: Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/84B26304-FF11-4CA0-AA32-856760B23490?api-version=2022-07-01-preview&t=639028483962034156&c=MIIIrzCCBpegAwIBAgITUQFAksjJXtdW64QOrwABAUCSyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIyMTEzMDMzWhcNMjYwNDIwMTEzMDMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANIL_ea4PX6tqxHLVF9EMduSXtibVvw_fvJo_2qVyVM_8guCpW7Vot8hAA3JXqJIuYF9h5wn2uWRXZXHyg4aaY2Lbqro1-tBMPU5rXoQZ9s2duM-rKR95C5eA8BbDTDoKjSTOnLAQ0-XWJI1upgmi1VDBnjo6o_RupQR7IimcAZdXrMl2LaN3lNyuldWaC5acWcw9L9ufxDGPdkfvUv_ScXQ-7BzgPXRS1UL7WyL9EV4bddWXpBBvZR80DH6tdfzz9pgHF4OIeUvSVm4QmcCVH5iCmbnVWDBGlhA1O6UBgUfxqnljc5MhLkkKH5OHPspPmRrsDTzYP15yZWFI82YMNECAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUxuJ8b7tUVxxF9Uh_S-aQfmEWkyswDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQAm6ZIl-5JrU83aixl875_xu7AqUHCqv_i3nKCtjfGKmpGgizLsa4kt_p3sPApiqvF1Dv2p794N5czXWs9tOGrxIc4GO-YqMXcmdfuHAqfZw5zC8MaiJookTLex3yd4ExrGtH_UmV0RpxDfCTGIQTr7WP2q8veI5fYj2_EMzKkQmV8e8Xk8cHxiF3jLky9mihEvMKDMpOD2pHPNTUCHJcJaa7R6JpDqlmCjL7JHM_NPpLqJfERsYRMtyRsCXN7t2KDTMPTrD2X20__M_mBZUtDWSM4dq0TlSx6WYVZT6Hs4i2x7WVBm5GbpznQ7uULBH9s2tTlhBC4bKAEw72WrrUU-7N7sWw7lKj8GApdoKrpLVE1w41qQFcEBK_NNYcSmxpQqpxh1kmr4V5MRCdDYpavRe8RRg2kwY8nsu_p-aqHv1RIyPyLK6_Iv7VuL0fIzayygFC7rH1C4_-iB7BJRQZuMq_QF_GJe9i6k6M406KA4BsbrDZSRPSg_128fdWkocAxaC-VECmyOEBjomZ_zYc6ka_Q45Fj57OCFxXHLzlsGjlgQ3AyWGAhYhgGJ7v6HyOr5aElWz6Q533UvtLmH3JtIwMsiR-0L_a8Whyd39suFwhJ4xIYQXoewMTAhl8-mg_v6OqSjnHwZRfGDzMQrQGaiYJDE0p1oWz4E9CUEp2qmzw&s=J_BWbXrU0hyV5D7q8mw5S_JnVFDPaHI0EjURzU0vhMBvyIJ_HQP3jkQ3ggCJJDn9cKYh10JGIIzqY3ZvXq970I3zNj97NUcgc0H2HSwTyKJRl_LrrnlnL1y5tZJlHixh_A1JOqfOF5k619NHbR5VEQG8uu0o0namSdu1s2H73FlF0ar4D1mQ6qmNbUhwmu0vL13F0lxQqXAoCtdC6_WYVqAXzZneu6eHUOGuTtgmPbLgUkT-rPSWkWQAER3_Epa6JSrGOPiXKKkiPOf6oPxp9KyTLyBcwIib71jrKLzAcYk43goljYA2fpBiqQtmqjrmvazr25HCZvxRnBleTVM4KQ&h=07Q5Atm-GhNQEMk6qYF0cd5CYCvSQtOmdjv-ArwIP34 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/B4FFF6A7-E1CC-4075-AFA5-C2CDD439913A?api-version=2022-07-01-preview&t=639150346780020009&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=VoSaLg5UyAaZFa40pFSML272RIxXWBi90tAqt7i3RlITx71ioCBJZWO2iogQUrQLr_5EiJYDbdkWkBWnkpVFFTLtv0fGiXFL-0VSaK8O8Xr2wYASPinc84cgoQO-K-1KFRKyeCK_cEduu2ga9UIWxcWzML2fGbLUbb-g4lBRvrofnlIKMV0F8y7WRWJTdpB8TarQTPZ0bUXqtiMe2tPBiw8oTpB-bQuuwN0yf7cOdcF1_GidetgNXP_ITUKpib50deV94OtxacLwq2qo2TYPNq-qbwJPfZH1kxJg8iRhHKumCBOoPGVQkF5Bf4Vk0SSUp8-qfJxXqPfl9HeJQdqR6g&h=0li3fI5XQZneFAdJnC5L7wsoTfQI5vSR6q6YbtIZWBI Cache-Control: - no-cache Content-Length: @@ -540,11 +540,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 01 Jan 2026 07:13:15 GMT + - Fri, 22 May 2026 08:17:57 GMT Expires: - '-1' Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/84B26304-FF11-4CA0-AA32-856760B23490?api-version=2022-07-01-preview&t=639028483962190273&c=MIIIrzCCBpegAwIBAgITUQFAksjJXtdW64QOrwABAUCSyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIyMTEzMDMzWhcNMjYwNDIwMTEzMDMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANIL_ea4PX6tqxHLVF9EMduSXtibVvw_fvJo_2qVyVM_8guCpW7Vot8hAA3JXqJIuYF9h5wn2uWRXZXHyg4aaY2Lbqro1-tBMPU5rXoQZ9s2duM-rKR95C5eA8BbDTDoKjSTOnLAQ0-XWJI1upgmi1VDBnjo6o_RupQR7IimcAZdXrMl2LaN3lNyuldWaC5acWcw9L9ufxDGPdkfvUv_ScXQ-7BzgPXRS1UL7WyL9EV4bddWXpBBvZR80DH6tdfzz9pgHF4OIeUvSVm4QmcCVH5iCmbnVWDBGlhA1O6UBgUfxqnljc5MhLkkKH5OHPspPmRrsDTzYP15yZWFI82YMNECAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUxuJ8b7tUVxxF9Uh_S-aQfmEWkyswDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQAm6ZIl-5JrU83aixl875_xu7AqUHCqv_i3nKCtjfGKmpGgizLsa4kt_p3sPApiqvF1Dv2p794N5czXWs9tOGrxIc4GO-YqMXcmdfuHAqfZw5zC8MaiJookTLex3yd4ExrGtH_UmV0RpxDfCTGIQTr7WP2q8veI5fYj2_EMzKkQmV8e8Xk8cHxiF3jLky9mihEvMKDMpOD2pHPNTUCHJcJaa7R6JpDqlmCjL7JHM_NPpLqJfERsYRMtyRsCXN7t2KDTMPTrD2X20__M_mBZUtDWSM4dq0TlSx6WYVZT6Hs4i2x7WVBm5GbpznQ7uULBH9s2tTlhBC4bKAEw72WrrUU-7N7sWw7lKj8GApdoKrpLVE1w41qQFcEBK_NNYcSmxpQqpxh1kmr4V5MRCdDYpavRe8RRg2kwY8nsu_p-aqHv1RIyPyLK6_Iv7VuL0fIzayygFC7rH1C4_-iB7BJRQZuMq_QF_GJe9i6k6M406KA4BsbrDZSRPSg_128fdWkocAxaC-VECmyOEBjomZ_zYc6ka_Q45Fj57OCFxXHLzlsGjlgQ3AyWGAhYhgGJ7v6HyOr5aElWz6Q533UvtLmH3JtIwMsiR-0L_a8Whyd39suFwhJ4xIYQXoewMTAhl8-mg_v6OqSjnHwZRfGDzMQrQGaiYJDE0p1oWz4E9CUEp2qmzw&s=DlF36YNSnXspSCChetoSxeKytNSqnmbVqQTi65PLSYD3rKAZEwecDehDHij4kkx79mOkpQmeedhTtA1DRq40AD8Ri83ejrY9NsmwGRVS8lsZuXkB_3a8nFmwbcxBCad-R0gAnFhtJfquY1k3yUe9-eXDXUw6t7AOYQh88cnwByWkPXxipYC1Z1GpxBwAAl1JjeAfo4wC0fyEDNfT3oeJt27z76aYrPzNRfo86P66CaPXhfM-w98KWj-dIpU_UN1UKopvdjunmi51Hosj-20UZcGPExVrfR78zSu2K5eQgp3ru5o7Q9JAvbl2p37SrQbSCqnkX4UQcen73z--FLPfYw&h=9RB-UpXisCcQBX0LDei2-iO6287OhN5aMIamlgN3x88 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/B4FFF6A7-E1CC-4075-AFA5-C2CDD439913A?api-version=2022-07-01-preview&t=639150346780020009&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=OBqnQhwmMbr6wcZlLc5TCDDvAigV-Y8Te84kj9vKIcfdVdmW28gf_iunV1-A8QLZLNTHLqM83ILG65X6On5hqqWW-g-wheRb9QNUhbIFMb3nJ5JN8aKa2QgPf8vV6zd4IN9OyJYKfniVIXbgfGWyMQgUWSjYl7PtVIJw8aKisO_FFBLi6iNaJNArcaJAwqysQwpe2jMsuviqxTS4hWOajk47wQ71oRT597zcpHp-dnd1C5aGCgH-QKYbdt0TEuMbwzUQ-zeOsoEWzRkaKHo7Om_Q09yRpmA7eGvWuU2Ut8H5KmdFK19zZNdH1waJRbws5dZKpRVLrzi6vsrPSavWKw&h=AYzhOlQ6ashKo2hE1nrxQQX8pNRMOl6Xl_zF7RhAuXE Pragma: - no-cache Strict-Transport-Security: @@ -572,14 +572,14 @@ 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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/84B26304-FF11-4CA0-AA32-856760B23490?api-version=2022-07-01-preview&t=639028483962034156&c=MIIIrzCCBpegAwIBAgITUQFAksjJXtdW64QOrwABAUCSyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIyMTEzMDMzWhcNMjYwNDIwMTEzMDMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANIL_ea4PX6tqxHLVF9EMduSXtibVvw_fvJo_2qVyVM_8guCpW7Vot8hAA3JXqJIuYF9h5wn2uWRXZXHyg4aaY2Lbqro1-tBMPU5rXoQZ9s2duM-rKR95C5eA8BbDTDoKjSTOnLAQ0-XWJI1upgmi1VDBnjo6o_RupQR7IimcAZdXrMl2LaN3lNyuldWaC5acWcw9L9ufxDGPdkfvUv_ScXQ-7BzgPXRS1UL7WyL9EV4bddWXpBBvZR80DH6tdfzz9pgHF4OIeUvSVm4QmcCVH5iCmbnVWDBGlhA1O6UBgUfxqnljc5MhLkkKH5OHPspPmRrsDTzYP15yZWFI82YMNECAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUxuJ8b7tUVxxF9Uh_S-aQfmEWkyswDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQAm6ZIl-5JrU83aixl875_xu7AqUHCqv_i3nKCtjfGKmpGgizLsa4kt_p3sPApiqvF1Dv2p794N5czXWs9tOGrxIc4GO-YqMXcmdfuHAqfZw5zC8MaiJookTLex3yd4ExrGtH_UmV0RpxDfCTGIQTr7WP2q8veI5fYj2_EMzKkQmV8e8Xk8cHxiF3jLky9mihEvMKDMpOD2pHPNTUCHJcJaa7R6JpDqlmCjL7JHM_NPpLqJfERsYRMtyRsCXN7t2KDTMPTrD2X20__M_mBZUtDWSM4dq0TlSx6WYVZT6Hs4i2x7WVBm5GbpznQ7uULBH9s2tTlhBC4bKAEw72WrrUU-7N7sWw7lKj8GApdoKrpLVE1w41qQFcEBK_NNYcSmxpQqpxh1kmr4V5MRCdDYpavRe8RRg2kwY8nsu_p-aqHv1RIyPyLK6_Iv7VuL0fIzayygFC7rH1C4_-iB7BJRQZuMq_QF_GJe9i6k6M406KA4BsbrDZSRPSg_128fdWkocAxaC-VECmyOEBjomZ_zYc6ka_Q45Fj57OCFxXHLzlsGjlgQ3AyWGAhYhgGJ7v6HyOr5aElWz6Q533UvtLmH3JtIwMsiR-0L_a8Whyd39suFwhJ4xIYQXoewMTAhl8-mg_v6OqSjnHwZRfGDzMQrQGaiYJDE0p1oWz4E9CUEp2qmzw&s=J_BWbXrU0hyV5D7q8mw5S_JnVFDPaHI0EjURzU0vhMBvyIJ_HQP3jkQ3ggCJJDn9cKYh10JGIIzqY3ZvXq970I3zNj97NUcgc0H2HSwTyKJRl_LrrnlnL1y5tZJlHixh_A1JOqfOF5k619NHbR5VEQG8uu0o0namSdu1s2H73FlF0ar4D1mQ6qmNbUhwmu0vL13F0lxQqXAoCtdC6_WYVqAXzZneu6eHUOGuTtgmPbLgUkT-rPSWkWQAER3_Epa6JSrGOPiXKKkiPOf6oPxp9KyTLyBcwIib71jrKLzAcYk43goljYA2fpBiqQtmqjrmvazr25HCZvxRnBleTVM4KQ&h=07Q5Atm-GhNQEMk6qYF0cd5CYCvSQtOmdjv-ArwIP34 + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/B4FFF6A7-E1CC-4075-AFA5-C2CDD439913A?api-version=2022-07-01-preview&t=639150346780020009&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=VoSaLg5UyAaZFa40pFSML272RIxXWBi90tAqt7i3RlITx71ioCBJZWO2iogQUrQLr_5EiJYDbdkWkBWnkpVFFTLtv0fGiXFL-0VSaK8O8Xr2wYASPinc84cgoQO-K-1KFRKyeCK_cEduu2ga9UIWxcWzML2fGbLUbb-g4lBRvrofnlIKMV0F8y7WRWJTdpB8TarQTPZ0bUXqtiMe2tPBiw8oTpB-bQuuwN0yf7cOdcF1_GidetgNXP_ITUKpib50deV94OtxacLwq2qo2TYPNq-qbwJPfZH1kxJg8iRhHKumCBOoPGVQkF5Bf4Vk0SSUp8-qfJxXqPfl9HeJQdqR6g&h=0li3fI5XQZneFAdJnC5L7wsoTfQI5vSR6q6YbtIZWBI response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/84B26304-FF11-4CA0-AA32-856760B23490", - "name": "84B26304-FF11-4CA0-AA32-856760B23490", "status": "Succeeded", "startTime": - "2026-01-01T07:13:15.6100000Z", "endTime": "2026-01-01T07:13:16.2300000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/B4FFF6A7-E1CC-4075-AFA5-C2CDD439913A", + "name": "B4FFF6A7-E1CC-4075-AFA5-C2CDD439913A", "status": "Succeeded", "startTime": + "2026-05-22T08:17:57.3630000Z", "endTime": "2026-05-22T08:17:58.0400000Z"}' headers: Cache-Control: - no-cache @@ -590,7 +590,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 01 Jan 2026 07:13:26 GMT + - Fri, 22 May 2026 08:18:08 GMT Expires: - '-1' Pragma: @@ -620,14 +620,14 @@ 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/capacities response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F32", "region": "Central US", "state": - "Active"}, {"id": "c9b2d85e-d325-4368-a8b7-72b0f6a2e785", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "6ec5a623-5509-43a0-8df2-ee51fda656f7", "displayName": "fabcli000001", "sku": "F4", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -637,15 +637,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '464' + - '461' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 01 Jan 2026 07:13:29 GMT + - Fri, 22 May 2026 08:18:12 GMT Pragma: - no-cache RequestId: - - 2841c422-bfc0-43f9-83e8-2e24b4786c30 + - deba4af2-3266-44b1-9c02-8e68d028871a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -671,14 +671,14 @@ 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/capacities response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F32", "region": "Central US", "state": - "Active"}, {"id": "c9b2d85e-d325-4368-a8b7-72b0f6a2e785", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "6ec5a623-5509-43a0-8df2-ee51fda656f7", "displayName": "fabcli000001", "sku": "F4", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -688,15 +688,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '464' + - '461' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 01 Jan 2026 07:13:32 GMT + - Fri, 22 May 2026 08:18:16 GMT Pragma: - no-cache RequestId: - - fbcacf83-c6c2-4ca5-b59a-b60be6be199a + - 0120d1d6-a1f5-449c-8e2e-91d4261b24a9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -722,7 +722,7 @@ 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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -741,7 +741,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 01 Jan 2026 07:13:34 GMT + - Fri, 22 May 2026 08:18:18 GMT Expires: - '-1' Pragma: @@ -771,7 +771,7 @@ 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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -790,7 +790,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 01 Jan 2026 07:13:34 GMT + - Fri, 22 May 2026 08:18:19 GMT Expires: - '-1' Pragma: @@ -820,14 +820,14 @@ 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/capacities response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F32", "region": "Central US", "state": - "Active"}, {"id": "c9b2d85e-d325-4368-a8b7-72b0f6a2e785", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "6ec5a623-5509-43a0-8df2-ee51fda656f7", "displayName": "fabcli000001", "sku": "F4", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -837,15 +837,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '460' + - '461' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 01 Jan 2026 07:13:39 GMT + - Fri, 22 May 2026 08:18:24 GMT Pragma: - no-cache RequestId: - - 47ec3764-ad60-4d1b-bcd0-cf73c292a320 + - 975283a7-f96e-4827-ba92-d2342b3bb580 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -871,22 +871,22 @@ 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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 + uri: https://management.azure.com/subscriptions/placeholder/resourceGroups/placeholder/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: body: - string: '{"error": {"code": "SubscriptionNotFound", "message": "The subscription - ''00000000-0000-0000-0000-000000000000'' could not be found."}}' + string: '{"error": {"code": "InvalidSubscriptionId", "message": "The provided + subscription identifier ''placeholder'' is malformed or invalid."}}' headers: Cache-Control: - no-cache Content-Length: - - '129' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 01 Jan 2026 07:13:40 GMT + - Fri, 22 May 2026 08:18:25 GMT Expires: - '-1' Pragma: @@ -898,8 +898,8 @@ interactions: X-Content-Type-Options: - nosniff status: - code: 404 - message: Not Found + code: 400 + message: Bad Request - request: body: null headers: @@ -912,7 +912,7 @@ 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://management.azure.com/subscriptions?api-version=2022-12-01 response: @@ -927,7 +927,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 01 Jan 2026 07:13:41 GMT + - Fri, 22 May 2026 08:18:26 GMT Expires: - '-1' Pragma: @@ -953,7 +953,7 @@ 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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/capacities?api-version=2023-11-01 response: @@ -962,7 +962,7 @@ interactions: "Active", "administration": {"members": ["mocked@admin_test_user", "4fdd0762-85fe-4f8b-90dc-776e8605e0b9"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/mocked_fabriccli_capacity_name", "name": "mocked_fabriccli_capacity_name", "type": "Microsoft.Fabric/capacities", - "location": "Central US", "sku": {"name": "F32", "tier": "Fabric"}, "tags": + "location": "Central US", "sku": {"name": "F16", "tier": "Fabric"}, "tags": {}}, {"properties": {"provisioningState": "Succeeded", "state": "Active", "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": @@ -971,11 +971,11 @@ interactions: Cache-Control: - no-cache Content-Length: - - '2540' + - '2562' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 01 Jan 2026 07:13:44 GMT + - Fri, 22 May 2026 08:18:26 GMT Expires: - '-1' Pragma: @@ -1003,7 +1003,7 @@ 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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -1011,7 +1011,7 @@ interactions: string: '' headers: Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/C10D38C0-5241-40C2-BA07-53CC382BCA77?api-version=2022-07-01-preview&t=639028484255537878&c=MIIIrzCCBpegAwIBAgITUQFAksjJXtdW64QOrwABAUCSyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIyMTEzMDMzWhcNMjYwNDIwMTEzMDMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANIL_ea4PX6tqxHLVF9EMduSXtibVvw_fvJo_2qVyVM_8guCpW7Vot8hAA3JXqJIuYF9h5wn2uWRXZXHyg4aaY2Lbqro1-tBMPU5rXoQZ9s2duM-rKR95C5eA8BbDTDoKjSTOnLAQ0-XWJI1upgmi1VDBnjo6o_RupQR7IimcAZdXrMl2LaN3lNyuldWaC5acWcw9L9ufxDGPdkfvUv_ScXQ-7BzgPXRS1UL7WyL9EV4bddWXpBBvZR80DH6tdfzz9pgHF4OIeUvSVm4QmcCVH5iCmbnVWDBGlhA1O6UBgUfxqnljc5MhLkkKH5OHPspPmRrsDTzYP15yZWFI82YMNECAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUxuJ8b7tUVxxF9Uh_S-aQfmEWkyswDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQAm6ZIl-5JrU83aixl875_xu7AqUHCqv_i3nKCtjfGKmpGgizLsa4kt_p3sPApiqvF1Dv2p794N5czXWs9tOGrxIc4GO-YqMXcmdfuHAqfZw5zC8MaiJookTLex3yd4ExrGtH_UmV0RpxDfCTGIQTr7WP2q8veI5fYj2_EMzKkQmV8e8Xk8cHxiF3jLky9mihEvMKDMpOD2pHPNTUCHJcJaa7R6JpDqlmCjL7JHM_NPpLqJfERsYRMtyRsCXN7t2KDTMPTrD2X20__M_mBZUtDWSM4dq0TlSx6WYVZT6Hs4i2x7WVBm5GbpznQ7uULBH9s2tTlhBC4bKAEw72WrrUU-7N7sWw7lKj8GApdoKrpLVE1w41qQFcEBK_NNYcSmxpQqpxh1kmr4V5MRCdDYpavRe8RRg2kwY8nsu_p-aqHv1RIyPyLK6_Iv7VuL0fIzayygFC7rH1C4_-iB7BJRQZuMq_QF_GJe9i6k6M406KA4BsbrDZSRPSg_128fdWkocAxaC-VECmyOEBjomZ_zYc6ka_Q45Fj57OCFxXHLzlsGjlgQ3AyWGAhYhgGJ7v6HyOr5aElWz6Q533UvtLmH3JtIwMsiR-0L_a8Whyd39suFwhJ4xIYQXoewMTAhl8-mg_v6OqSjnHwZRfGDzMQrQGaiYJDE0p1oWz4E9CUEp2qmzw&s=B_tqNEVxaSv0q_qdf7Tc4_LabVTV2MXmngmxBZCL6Jyr7PU-PHwfUPhFLQNjlD2dUVdk8mChjl-sd0DdfjKTyN7qoeoWgV2cBB1ttdSJyjYfvU8B--Xv-Kg6FHdnATLPAxxgrx5y_hIP8kWMjM5xoC4qWhf-etscQ_8GL17PGfOczxnacm9MgsAeN1rOopbut1Y0K3QyeT5vCmDiotZqG75FRQooPToRoFhSDhVoPEaxtLwtBcQCcTIQG3mUntyaZ5sbe19xXVBfNVAzJoIOMbCo_VUtnNsKWGx9n3qSY0xU2G1CKMUhfoDh1Xj0U1AbUNvD47J-etklJ3NJafsHog&h=m3wB6AJjJVg9PIX1JHOFpzTColxv3n9T-hkkjXpAzBQ + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/25FCDFC7-B3A8-46B2-ADD9-39AA86F98179?api-version=2022-07-01-preview&t=639150347089852012&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=gEtyf3yAUpShxegSjpOgceD5pIK-hwq-TXDM7a9vywIHosoy4h2f8S_dmQVwpDcgKTiM2tpDiqvwWNOd660nEb6rhrxVpAYRhqo4NUcpJp57vFqmnXJenUNxH09rY2urjB9sowY_OzMlqWbRtGI8Je-AZIPpNbF3WwzaMpl5ClPlzlbph76TeAivHQRQw6tLIzjrZ0grtcOO_oW-dqkHf-bpVoJE1zEM0H7UF4KagZkU-4PXqipjchGIYVp-n1WgbCGWIfQlhZyjw6bFG4kyJWi2PryC7nfJiCC83h6Ba2xWGXLgmu5qsSp3Adg2-Q9qY61MW9leX4ABEZUzT8Ah6g&h=abogF3ZbuJsVA9SQz8puLnOfgdswXZbpVRpoLAwHu2c Cache-Control: - no-cache Content-Length: @@ -1019,11 +1019,11 @@ interactions: Content-Security-Policy: - script-src 'self' Date: - - Thu, 01 Jan 2026 07:13:45 GMT + - Fri, 22 May 2026 08:18:28 GMT Expires: - '-1' Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/C10D38C0-5241-40C2-BA07-53CC382BCA77?api-version=2022-07-01-preview&t=639028484255537878&c=MIIIrzCCBpegAwIBAgITUQFAksjJXtdW64QOrwABAUCSyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIyMTEzMDMzWhcNMjYwNDIwMTEzMDMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANIL_ea4PX6tqxHLVF9EMduSXtibVvw_fvJo_2qVyVM_8guCpW7Vot8hAA3JXqJIuYF9h5wn2uWRXZXHyg4aaY2Lbqro1-tBMPU5rXoQZ9s2duM-rKR95C5eA8BbDTDoKjSTOnLAQ0-XWJI1upgmi1VDBnjo6o_RupQR7IimcAZdXrMl2LaN3lNyuldWaC5acWcw9L9ufxDGPdkfvUv_ScXQ-7BzgPXRS1UL7WyL9EV4bddWXpBBvZR80DH6tdfzz9pgHF4OIeUvSVm4QmcCVH5iCmbnVWDBGlhA1O6UBgUfxqnljc5MhLkkKH5OHPspPmRrsDTzYP15yZWFI82YMNECAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUxuJ8b7tUVxxF9Uh_S-aQfmEWkyswDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQAm6ZIl-5JrU83aixl875_xu7AqUHCqv_i3nKCtjfGKmpGgizLsa4kt_p3sPApiqvF1Dv2p794N5czXWs9tOGrxIc4GO-YqMXcmdfuHAqfZw5zC8MaiJookTLex3yd4ExrGtH_UmV0RpxDfCTGIQTr7WP2q8veI5fYj2_EMzKkQmV8e8Xk8cHxiF3jLky9mihEvMKDMpOD2pHPNTUCHJcJaa7R6JpDqlmCjL7JHM_NPpLqJfERsYRMtyRsCXN7t2KDTMPTrD2X20__M_mBZUtDWSM4dq0TlSx6WYVZT6Hs4i2x7WVBm5GbpznQ7uULBH9s2tTlhBC4bKAEw72WrrUU-7N7sWw7lKj8GApdoKrpLVE1w41qQFcEBK_NNYcSmxpQqpxh1kmr4V5MRCdDYpavRe8RRg2kwY8nsu_p-aqHv1RIyPyLK6_Iv7VuL0fIzayygFC7rH1C4_-iB7BJRQZuMq_QF_GJe9i6k6M406KA4BsbrDZSRPSg_128fdWkocAxaC-VECmyOEBjomZ_zYc6ka_Q45Fj57OCFxXHLzlsGjlgQ3AyWGAhYhgGJ7v6HyOr5aElWz6Q533UvtLmH3JtIwMsiR-0L_a8Whyd39suFwhJ4xIYQXoewMTAhl8-mg_v6OqSjnHwZRfGDzMQrQGaiYJDE0p1oWz4E9CUEp2qmzw&s=zoeUH8B41Oks60H-D_qFwbiWZ4dVk7A3MiIp0s4mlcpsNvz6R_H1aHbZTNS0PNvyQBrva7uDV3y8vnygu3PIi8knI6aa-T65LFo8a1jjrV6KE2HaV6cjKjph-dTtW78EgX_FGQDl4JDF409NnLXHmKKqrVZNDQOqPbHYoU4uWSV8V7bbFR8BqFOF_5Y-eJ1QR_gtJowhRMe0VlyQYWsCud-WBRWZ19iZb2SAPJGHDYk2jlCgfN7TZH_L9jHElq6AJLQoGqKWARuBYepsP9LIm2vBJ-7G5u-jvd_06Fxs4qJaxspDhHYUWT-IgiH8mrx7uZxutjr2hYy-46zBD5f6DA&h=4LALoEy7OhfjeKIuS9LzrYJGsKDsYafVMaoH2b5OYmk + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/25FCDFC7-B3A8-46B2-ADD9-39AA86F98179?api-version=2022-07-01-preview&t=639150347089852012&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=d-vmbJnwAjZwnypgQYxg84gLSP0u8SiJ3V8-pCg3wMQsW3vXMWx3k4P2OE2O93BmT7UkxglxxzTOM7-HgqvzzgrNl5ORSqKuzJ2RFd2wmzP5pOza7c2OSGgMAEGFKxdcg3azFoeWwDjKFkpWPw2OG05u-lCZtpl6k9C6pMibVsqDW7hm_mk9poSkd93KHmHuuA5LFIWAOeMfpB_QihfrF9uNdh2udfJdM7_5y23e8C9407b61f6cW6OZWEUFHgAq5fyDwkiH9gUGMdV4DnMrL-oQzqcuWr_8Qx__Uil9HG1mdVUX1WA3rYqnqHV8POl3UxS5dG7uG7wnKTn30tzkZA&h=RQlgPwMNgYTEjwK3rXwLd5evYHyiekDGuYLw-Nx_4K0 Pragma: - no-cache Strict-Transport-Security: @@ -1051,14 +1051,62 @@ 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://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/25FCDFC7-B3A8-46B2-ADD9-39AA86F98179?api-version=2022-07-01-preview&t=639150347089852012&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=gEtyf3yAUpShxegSjpOgceD5pIK-hwq-TXDM7a9vywIHosoy4h2f8S_dmQVwpDcgKTiM2tpDiqvwWNOd660nEb6rhrxVpAYRhqo4NUcpJp57vFqmnXJenUNxH09rY2urjB9sowY_OzMlqWbRtGI8Je-AZIPpNbF3WwzaMpl5ClPlzlbph76TeAivHQRQw6tLIzjrZ0grtcOO_oW-dqkHf-bpVoJE1zEM0H7UF4KagZkU-4PXqipjchGIYVp-n1WgbCGWIfQlhZyjw6bFG4kyJWi2PryC7nfJiCC83h6Ba2xWGXLgmu5qsSp3Adg2-Q9qY61MW9leX4ABEZUzT8Ah6g&h=abogF3ZbuJsVA9SQz8puLnOfgdswXZbpVRpoLAwHu2c + response: + body: + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/25FCDFC7-B3A8-46B2-ADD9-39AA86F98179", + "name": "25FCDFC7-B3A8-46B2-ADD9-39AA86F98179", "status": "Deleting", "startTime": + "2026-05-22T08:18:28.3970000Z"}' + headers: + Cache-Control: + - no-cache + Content-Length: + - '245' + Content-Security-Policy: + - script-src 'self' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 22 May 2026 08:18:39 GMT + Expires: + - '-1' + Pragma: + - no-cache + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Cache: + - CONFIG_NOCACHE + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + X-XSS-Protection: + - 1; mode=block + status: + code: 200 + message: 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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/C10D38C0-5241-40C2-BA07-53CC382BCA77?api-version=2022-07-01-preview&t=639028484255537878&c=MIIIrzCCBpegAwIBAgITUQFAksjJXtdW64QOrwABAUCSyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIyMTEzMDMzWhcNMjYwNDIwMTEzMDMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANIL_ea4PX6tqxHLVF9EMduSXtibVvw_fvJo_2qVyVM_8guCpW7Vot8hAA3JXqJIuYF9h5wn2uWRXZXHyg4aaY2Lbqro1-tBMPU5rXoQZ9s2duM-rKR95C5eA8BbDTDoKjSTOnLAQ0-XWJI1upgmi1VDBnjo6o_RupQR7IimcAZdXrMl2LaN3lNyuldWaC5acWcw9L9ufxDGPdkfvUv_ScXQ-7BzgPXRS1UL7WyL9EV4bddWXpBBvZR80DH6tdfzz9pgHF4OIeUvSVm4QmcCVH5iCmbnVWDBGlhA1O6UBgUfxqnljc5MhLkkKH5OHPspPmRrsDTzYP15yZWFI82YMNECAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUxuJ8b7tUVxxF9Uh_S-aQfmEWkyswDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQAm6ZIl-5JrU83aixl875_xu7AqUHCqv_i3nKCtjfGKmpGgizLsa4kt_p3sPApiqvF1Dv2p794N5czXWs9tOGrxIc4GO-YqMXcmdfuHAqfZw5zC8MaiJookTLex3yd4ExrGtH_UmV0RpxDfCTGIQTr7WP2q8veI5fYj2_EMzKkQmV8e8Xk8cHxiF3jLky9mihEvMKDMpOD2pHPNTUCHJcJaa7R6JpDqlmCjL7JHM_NPpLqJfERsYRMtyRsCXN7t2KDTMPTrD2X20__M_mBZUtDWSM4dq0TlSx6WYVZT6Hs4i2x7WVBm5GbpznQ7uULBH9s2tTlhBC4bKAEw72WrrUU-7N7sWw7lKj8GApdoKrpLVE1w41qQFcEBK_NNYcSmxpQqpxh1kmr4V5MRCdDYpavRe8RRg2kwY8nsu_p-aqHv1RIyPyLK6_Iv7VuL0fIzayygFC7rH1C4_-iB7BJRQZuMq_QF_GJe9i6k6M406KA4BsbrDZSRPSg_128fdWkocAxaC-VECmyOEBjomZ_zYc6ka_Q45Fj57OCFxXHLzlsGjlgQ3AyWGAhYhgGJ7v6HyOr5aElWz6Q533UvtLmH3JtIwMsiR-0L_a8Whyd39suFwhJ4xIYQXoewMTAhl8-mg_v6OqSjnHwZRfGDzMQrQGaiYJDE0p1oWz4E9CUEp2qmzw&s=B_tqNEVxaSv0q_qdf7Tc4_LabVTV2MXmngmxBZCL6Jyr7PU-PHwfUPhFLQNjlD2dUVdk8mChjl-sd0DdfjKTyN7qoeoWgV2cBB1ttdSJyjYfvU8B--Xv-Kg6FHdnATLPAxxgrx5y_hIP8kWMjM5xoC4qWhf-etscQ_8GL17PGfOczxnacm9MgsAeN1rOopbut1Y0K3QyeT5vCmDiotZqG75FRQooPToRoFhSDhVoPEaxtLwtBcQCcTIQG3mUntyaZ5sbe19xXVBfNVAzJoIOMbCo_VUtnNsKWGx9n3qSY0xU2G1CKMUhfoDh1Xj0U1AbUNvD47J-etklJ3NJafsHog&h=m3wB6AJjJVg9PIX1JHOFpzTColxv3n9T-hkkjXpAzBQ + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/25FCDFC7-B3A8-46B2-ADD9-39AA86F98179?api-version=2022-07-01-preview&t=639150347089852012&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=gEtyf3yAUpShxegSjpOgceD5pIK-hwq-TXDM7a9vywIHosoy4h2f8S_dmQVwpDcgKTiM2tpDiqvwWNOd660nEb6rhrxVpAYRhqo4NUcpJp57vFqmnXJenUNxH09rY2urjB9sowY_OzMlqWbRtGI8Je-AZIPpNbF3WwzaMpl5ClPlzlbph76TeAivHQRQw6tLIzjrZ0grtcOO_oW-dqkHf-bpVoJE1zEM0H7UF4KagZkU-4PXqipjchGIYVp-n1WgbCGWIfQlhZyjw6bFG4kyJWi2PryC7nfJiCC83h6Ba2xWGXLgmu5qsSp3Adg2-Q9qY61MW9leX4ABEZUzT8Ah6g&h=abogF3ZbuJsVA9SQz8puLnOfgdswXZbpVRpoLAwHu2c response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/C10D38C0-5241-40C2-BA07-53CC382BCA77", - "name": "C10D38C0-5241-40C2-BA07-53CC382BCA77", "status": "Deleting", "startTime": - "2026-01-01T07:13:45.1130000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/25FCDFC7-B3A8-46B2-ADD9-39AA86F98179", + "name": "25FCDFC7-B3A8-46B2-ADD9-39AA86F98179", "status": "Deleting", "startTime": + "2026-05-22T08:18:28.3970000Z"}' headers: Cache-Control: - no-cache @@ -1069,7 +1117,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 01 Jan 2026 07:13:55 GMT + - Fri, 22 May 2026 08:18:50 GMT Expires: - '-1' Pragma: @@ -1099,14 +1147,14 @@ 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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/C10D38C0-5241-40C2-BA07-53CC382BCA77?api-version=2022-07-01-preview&t=639028484255537878&c=MIIIrzCCBpegAwIBAgITUQFAksjJXtdW64QOrwABAUCSyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDQwHhcNMjUxMDIyMTEzMDMzWhcNMjYwNDIwMTEzMDMzWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANIL_ea4PX6tqxHLVF9EMduSXtibVvw_fvJo_2qVyVM_8guCpW7Vot8hAA3JXqJIuYF9h5wn2uWRXZXHyg4aaY2Lbqro1-tBMPU5rXoQZ9s2duM-rKR95C5eA8BbDTDoKjSTOnLAQ0-XWJI1upgmi1VDBnjo6o_RupQR7IimcAZdXrMl2LaN3lNyuldWaC5acWcw9L9ufxDGPdkfvUv_ScXQ-7BzgPXRS1UL7WyL9EV4bddWXpBBvZR80DH6tdfzz9pgHF4OIeUvSVm4QmcCVH5iCmbnVWDBGlhA1O6UBgUfxqnljc5MhLkkKH5OHPspPmRrsDTzYP15yZWFI82YMNECAwEAAaOCBJwwggSYMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHkBggrBgEFBQcBAQSCAdYwggHSMGgGCCsGAQUFBzAChlxodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDEuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDIuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDMuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDBYBggrBgEFBQcwAoZMaHR0cDovL2NybDQuYW1lLmdibC9haWEvbWVsMDFwa2lpbnRjYTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNydDAdBgNVHQ4EFgQUxuJ8b7tUVxxF9Uh_S-aQfmEWkyswDgYDVR0PAQH_BAQDAgWgMIIBNQYDVR0fBIIBLDCCASgwggEkoIIBIKCCARyGQmh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS9wa2lpbmZyYS9DUkwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDEuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDIuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDMuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybIY0aHR0cDovL2NybDQuYW1lLmdibC9jcmwvQU1FJTIwSW5mcmElMjBDQSUyMDA0KDEpLmNybDCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwHwYDVR0jBBgwFoAUOXFdqRUQLcTffi9ZbkBNwN_vNpowHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA0GCSqGSIb3DQEBCwUAA4ICAQAm6ZIl-5JrU83aixl875_xu7AqUHCqv_i3nKCtjfGKmpGgizLsa4kt_p3sPApiqvF1Dv2p794N5czXWs9tOGrxIc4GO-YqMXcmdfuHAqfZw5zC8MaiJookTLex3yd4ExrGtH_UmV0RpxDfCTGIQTr7WP2q8veI5fYj2_EMzKkQmV8e8Xk8cHxiF3jLky9mihEvMKDMpOD2pHPNTUCHJcJaa7R6JpDqlmCjL7JHM_NPpLqJfERsYRMtyRsCXN7t2KDTMPTrD2X20__M_mBZUtDWSM4dq0TlSx6WYVZT6Hs4i2x7WVBm5GbpznQ7uULBH9s2tTlhBC4bKAEw72WrrUU-7N7sWw7lKj8GApdoKrpLVE1w41qQFcEBK_NNYcSmxpQqpxh1kmr4V5MRCdDYpavRe8RRg2kwY8nsu_p-aqHv1RIyPyLK6_Iv7VuL0fIzayygFC7rH1C4_-iB7BJRQZuMq_QF_GJe9i6k6M406KA4BsbrDZSRPSg_128fdWkocAxaC-VECmyOEBjomZ_zYc6ka_Q45Fj57OCFxXHLzlsGjlgQ3AyWGAhYhgGJ7v6HyOr5aElWz6Q533UvtLmH3JtIwMsiR-0L_a8Whyd39suFwhJ4xIYQXoewMTAhl8-mg_v6OqSjnHwZRfGDzMQrQGaiYJDE0p1oWz4E9CUEp2qmzw&s=B_tqNEVxaSv0q_qdf7Tc4_LabVTV2MXmngmxBZCL6Jyr7PU-PHwfUPhFLQNjlD2dUVdk8mChjl-sd0DdfjKTyN7qoeoWgV2cBB1ttdSJyjYfvU8B--Xv-Kg6FHdnATLPAxxgrx5y_hIP8kWMjM5xoC4qWhf-etscQ_8GL17PGfOczxnacm9MgsAeN1rOopbut1Y0K3QyeT5vCmDiotZqG75FRQooPToRoFhSDhVoPEaxtLwtBcQCcTIQG3mUntyaZ5sbe19xXVBfNVAzJoIOMbCo_VUtnNsKWGx9n3qSY0xU2G1CKMUhfoDh1Xj0U1AbUNvD47J-etklJ3NJafsHog&h=m3wB6AJjJVg9PIX1JHOFpzTColxv3n9T-hkkjXpAzBQ + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/25FCDFC7-B3A8-46B2-ADD9-39AA86F98179?api-version=2022-07-01-preview&t=639150347089852012&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=gEtyf3yAUpShxegSjpOgceD5pIK-hwq-TXDM7a9vywIHosoy4h2f8S_dmQVwpDcgKTiM2tpDiqvwWNOd660nEb6rhrxVpAYRhqo4NUcpJp57vFqmnXJenUNxH09rY2urjB9sowY_OzMlqWbRtGI8Je-AZIPpNbF3WwzaMpl5ClPlzlbph76TeAivHQRQw6tLIzjrZ0grtcOO_oW-dqkHf-bpVoJE1zEM0H7UF4KagZkU-4PXqipjchGIYVp-n1WgbCGWIfQlhZyjw6bFG4kyJWi2PryC7nfJiCC83h6Ba2xWGXLgmu5qsSp3Adg2-Q9qY61MW9leX4ABEZUzT8Ah6g&h=abogF3ZbuJsVA9SQz8puLnOfgdswXZbpVRpoLAwHu2c response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/C10D38C0-5241-40C2-BA07-53CC382BCA77", - "name": "C10D38C0-5241-40C2-BA07-53CC382BCA77", "status": "Succeeded", "startTime": - "2026-01-01T07:13:45.1130000Z", "endTime": "2026-01-01T07:14:08.1770000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/25FCDFC7-B3A8-46B2-ADD9-39AA86F98179", + "name": "25FCDFC7-B3A8-46B2-ADD9-39AA86F98179", "status": "Succeeded", "startTime": + "2026-05-22T08:18:28.3970000Z", "endTime": "2026-05-22T08:18:51.7270000Z"}' headers: Cache-Control: - no-cache @@ -1117,7 +1165,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 01 Jan 2026 07:14:07 GMT + - Fri, 22 May 2026 08:19:01 GMT Expires: - '-1' Pragma: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_invalid_query_failure.yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_invalid_query_failure.yaml index def5d2c0c..35415b158 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_invalid_query_failure.yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_invalid_query_failure.yaml @@ -11,14 +11,17 @@ 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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b557663e-d428-400c-88d3-3000e8fc9237", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "c89f9280-455e-4eef-9062-e33dce08be60", "displayName": "fabriccli_WorkspacePerTestclass_000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -27,15 +30,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2061' + - '2761' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:26:53 GMT + - Fri, 22 May 2026 08:17:04 GMT Pragma: - no-cache RequestId: - - ac6760b1-71de-4190-a85b-df368f222e1f + - 0f4a480c-3def-4355-9aa9-d0fc8f867c3a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,9 +64,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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/c89f9280-455e-4eef-9062-e33dce08be60/items response: body: string: '{"value": []}' @@ -79,11 +82,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:26:53 GMT + - Fri, 22 May 2026 08:17:05 GMT Pragma: - no-cache RequestId: - - 63540250-44dd-49de-a3a2-e069cce7a117 + - 618909be-7f0f-442a-b066-79b5d070b8f4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,9 +112,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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/c89f9280-455e-4eef-9062-e33dce08be60/items response: body: string: '{"value": []}' @@ -127,11 +130,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:26:54 GMT + - Fri, 22 May 2026 08:17:05 GMT Pragma: - no-cache RequestId: - - a31f9680-8431-4090-983f-846b5c31c076 + - c56f1cbb-ae22-4a8a-a1b3-e8bf7fb6af3d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -156,18 +159,16 @@ interactions: - keep-alive Content-Length: - '74' - 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/81065bd8-e334-4715-b170-dedb4cd514e6/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/c89f9280-455e-4eef-9062-e33dce08be60/lakehouses response: body: - string: '{"id": "1ce6f883-f705-4d55-990b-e2d3d9a03093", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "81065bd8-e334-4715-b170-dedb4cd514e6"}' + string: '{"id": "20774288-9948-49ab-a230-5b744ce6f994", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "c89f9280-455e-4eef-9062-e33dce08be60"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +177,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:26:59 GMT + - Fri, 22 May 2026 08:17:10 GMT ETag: - '""' Pragma: - no-cache RequestId: - - e9a1e87a-9cd1-49ba-bc4d-9a4590ce025d + - 55a3ca2e-fbc9-472a-ad35-46c4dd89cae1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -212,14 +213,17 @@ 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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b557663e-d428-400c-88d3-3000e8fc9237", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "c89f9280-455e-4eef-9062-e33dce08be60", "displayName": "fabriccli_WorkspacePerTestclass_000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -228,15 +232,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2061' + - '2761' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:26:59 GMT + - Fri, 22 May 2026 08:17:11 GMT Pragma: - no-cache RequestId: - - 10ac5ada-8173-4e2b-b975-75b796045d89 + - 2ad61652-6306-4e49-9afc-e818e9c85826 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -262,14 +266,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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/c89f9280-455e-4eef-9062-e33dce08be60/items response: body: - string: '{"value": [{"id": "1ce6f883-f705-4d55-990b-e2d3d9a03093", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "20774288-9948-49ab-a230-5b744ce6f994", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "c89f9280-455e-4eef-9062-e33dce08be60"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +281,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '179' + - '167' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:26:59 GMT + - Fri, 22 May 2026 08:17:12 GMT Pragma: - no-cache RequestId: - - 9b4ed87b-84ee-4ba2-b441-c54bbb7676b3 + - f14d30b4-6063-4447-a989-88d3dc8f8cb9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -312,14 +315,17 @@ 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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "b557663e-d428-400c-88d3-3000e8fc9237", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "c89f9280-455e-4eef-9062-e33dce08be60", "displayName": "fabriccli_WorkspacePerTestclass_000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -328,15 +334,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2061' + - '2761' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:27:00 GMT + - Fri, 22 May 2026 08:17:12 GMT Pragma: - no-cache RequestId: - - f22d3a49-3d79-4f0f-93b6-acca60dd3c78 + - 58ba7eb2-385a-4b04-b92c-294533ec672f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -362,14 +368,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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/c89f9280-455e-4eef-9062-e33dce08be60/items response: body: - string: '{"value": [{"id": "1ce6f883-f705-4d55-990b-e2d3d9a03093", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "20774288-9948-49ab-a230-5b744ce6f994", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "c89f9280-455e-4eef-9062-e33dce08be60"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -378,15 +383,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '179' + - '167' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:27:00 GMT + - Fri, 22 May 2026 08:17:14 GMT Pragma: - no-cache RequestId: - - af375897-83fa-4aa3-b565-cc4dee398dea + - 4c2be373-4c61-44b9-96b4-499d6056c5b5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -414,9 +419,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/81065bd8-e334-4715-b170-dedb4cd514e6/items/1ce6f883-f705-4d55-990b-e2d3d9a03093 + uri: https://api.fabric.microsoft.com/v1/workspaces/c89f9280-455e-4eef-9062-e33dce08be60/items/20774288-9948-49ab-a230-5b744ce6f994 response: body: string: '' @@ -432,11 +437,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 31 Dec 2025 14:27:01 GMT + - Fri, 22 May 2026 08:17:14 GMT Pragma: - no-cache RequestId: - - 0761ffc4-aeac-4865-96a1-0b95fa396491 + - 5bcc34ca-6fd3-4730-884e-02f68bfd5b56 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: From 2b312e2bb6da0cc0ef80da06204fb701b2e0ffda Mon Sep 17 00:00:00 2001 From: Alex Moraru Date: Fri, 22 May 2026 09:18:49 +0000 Subject: [PATCH 14/14] SET tests recordings --- .../test_commands/test_set/class_setup.yaml | 66 +- ...st_set_capacity_invalid_query_failure.yaml | 231 ++- ...est_set_capacity_success[sku.name-F4].yaml | 208 +-- ...st_set_connection_displayName_success.yaml | 880 +++-------- ..._success[privacyLevel-Organizational].yaml | 725 +++------ ...ase_displayname_not_supported_failure.yaml | 209 +-- ...et_cosmosdb_database_metadata_success.yaml | 267 ++-- ...set_domain_contributors_scope_success.yaml | 104 +- ...test_set_domain_invalid_query_failure.yaml | 46 +- ..._domain_metadata_success[description].yaml | 106 +- ..._domain_metadata_success[displayName].yaml | 164 +- ...success[contributorsScope-AdminsOnly].yaml | 102 +- ...der_success[displayName-randomFolder].yaml | 229 +-- ...st_set_gateway_duplicate_name_failure.yaml | 156 +- ...way_virtualNetwork_capacityId_success.yaml | 104 +- ...tualNetwork_success[displayName-None].yaml | 158 +- ...cess[inactivityMinutesBeforeSleep-60].yaml | 114 +- ...ork_success[numberOfMemberGateways-2].yaml | 114 +- .../test_set_item_invalid_query_failure.yaml | 90 +- ...pes_success[description-DataPipeline].yaml | 194 +-- ...ccess[description-DigitalTwinBuilder].yaml | 241 +-- ...ypes_success[description-Environment].yaml | 238 +-- ...ypes_success[description-Eventstream].yaml | 214 +-- ...pes_success[description-KQLDashboard].yaml | 186 +-- ...ypes_success[description-KQLQueryset].yaml | 186 +-- ...pes_success[description-MLExperiment].yaml | 218 +-- ...or_all_types_success[description-Map].yaml | 176 +-- ...l_types_success[description-Notebook].yaml | 226 +-- ...all_types_success[description-Reflex].yaml | 184 +-- ...ccess[description-SparkJobDefinition].yaml | 229 ++- ...success[description-UserDataFunction].yaml | 215 ++- ...pes_success[displayName-DataPipeline].yaml | 337 ++-- ...ccess[displayName-DigitalTwinBuilder].yaml | 462 +++--- ...ypes_success[displayName-Environment].yaml | 393 ++--- ...ypes_success[displayName-Eventstream].yaml | 357 +++-- ...pes_success[displayName-KQLDashboard].yaml | 329 ++-- ...ypes_success[displayName-KQLQueryset].yaml | 329 ++-- ...pes_success[displayName-MLExperiment].yaml | 367 ++--- ...or_all_types_success[displayName-Map].yaml | 323 ++-- ...l_types_success[displayName-Notebook].yaml | 367 ++--- ...all_types_success[displayName-Reflex].yaml | 323 ++-- ...ccess[displayName-SparkJobDefinition].yaml | 350 +++-- ...success[displayName-UserDataFunction].yaml | 362 +++-- ...m_metadata_success[description-False].yaml | 226 +-- ...em_metadata_success[displayName-True].yaml | 329 ++-- ..._definition_semantic_model_id_success.yaml | 620 ++++---- ...m_variable_library_properties_success.yaml | 417 ++--- ...est_set_onelake_not_supported_failure.yaml | 159 +- ...et_onelake_shortcut_name_only_success.yaml | 811 ++++++---- ...nelake_shortcut_target_itemid_success.yaml | 937 +++++++----- ...st_set_shortcut_invalid_query_failure.yaml | 455 +++--- ...t_set_sparkpool_invalid_query_failure.yaml | 99 +- ...kpool_success[autoScale.enabled-True].yaml | 1350 ++++++++--------- ...ool_success[autoScale.maxNodeCount-5].yaml | 156 +- ...ool_success[autoScale.minNodeCount-2].yaml | 152 +- ...test_set_sparkpool_success[name-None].yaml | 228 +-- ...et_sparkpool_success[nodeSize-Medium].yaml | 154 +- ...t_set_workspace_invalid_query_failure.yaml | 13 +- ...rkspace_metadata_success[description].yaml | 201 +-- ...rkspace_metadata_success[displayName].yaml | 307 ++-- ...kSettings.automaticLog.enabled-false].yaml | 204 +-- ...st_virtual_item_not_supported_failure.yaml | 165 +- 62 files changed, 8886 insertions(+), 8976 deletions(-) diff --git a/tests/test_commands/recordings/test_commands/test_set/class_setup.yaml b/tests/test_commands/recordings/test_commands/test_set/class_setup.yaml index 844a527e7..b31a0bb37 100644 --- a/tests/test_commands/recordings/test_commands/test_set/class_setup.yaml +++ b/tests/test_commands/recordings/test_commands/test_set/class_setup.yaml @@ -11,15 +11,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (ls; Linux/6.12.76-linuxkit; Python/3.12.11) + - 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: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "b557663e-d428-400c-88d3-3000e8fc9237", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -28,15 +26,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2726' + - '2762' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:16:50 GMT + - Fri, 22 May 2026 09:17:03 GMT Pragma: - no-cache RequestId: - - 2ef40a01-3c74-4e96-9484-1415406f673b + - 0bd28ea2-4da7-4468-925a-5d43b3fbf722 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -62,15 +60,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (ls; Linux/6.12.76-linuxkit; Python/3.12.11) + - 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: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "b557663e-d428-400c-88d3-3000e8fc9237", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -79,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2726' + - '2762' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:16:52 GMT + - Fri, 22 May 2026 09:17:05 GMT Pragma: - no-cache RequestId: - - ab724e67-2b80-4eca-b337-dcfa387aa756 + - 44474d80-a4d8-4d9e-baf5-319547e41bc3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -113,7 +109,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (ls; Linux/6.12.76-linuxkit; Python/3.12.11) + - 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: @@ -129,15 +125,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '426' + - '425' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:16:57 GMT + - Fri, 22 May 2026 09:17:09 GMT Pragma: - no-cache RequestId: - - ece2dfe7-ea09-4ec9-83fa-62e5d0f805bb + - 526ef1a2-7f6d-4fbf-8d48-00fcf5ab47d9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -166,12 +162,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli/1.6.1 (ls; Linux/6.12.76-linuxkit; Python/3.12.11) + - 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": "c89f9280-455e-4eef-9062-e33dce08be60", "displayName": "fabriccli_WorkspacePerTestclass_000001", + string: '{"id": "c8386e3b-fc56-45d5-81a8-60a8b098df7e", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -185,13 +181,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:17:04 GMT + - Fri, 22 May 2026 09:17:15 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/c89f9280-455e-4eef-9062-e33dce08be60 + - https://api.fabric.microsoft.com/v1/workspaces/c8386e3b-fc56-45d5-81a8-60a8b098df7e Pragma: - no-cache RequestId: - - 9d194aa3-c850-47fe-8ced-2d2e4135ec20 + - 97c49134-122d-4d99-aace-f3b81d6cebf8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -223,11 +219,9 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "b557663e-d428-400c-88d3-3000e8fc9237", + "My workspace", "description": "", "type": "Personal"}, {"id": "c8386e3b-fc56-45d5-81a8-60a8b098df7e", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "c89f9280-455e-4eef-9062-e33dce08be60", "displayName": "fabriccli_WorkspacePerTestclass_000001", - "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -236,15 +230,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2761' + - '2797' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:19:02 GMT + - Fri, 22 May 2026 09:17:36 GMT Pragma: - no-cache RequestId: - - 98be4354-310f-4fcb-8eb3-a17c340788ac + - a14c9899-30dc-4aa1-b540-8a4b79605b1e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -272,7 +266,7 @@ interactions: User-Agent: - ms-fabric-cli/1.6.1 (set; Linux/6.12.76-linuxkit; Python/3.12.11) method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/c89f9280-455e-4eef-9062-e33dce08be60/items + uri: https://api.fabric.microsoft.com/v1/workspaces/c8386e3b-fc56-45d5-81a8-60a8b098df7e/items response: body: string: '{"value": []}' @@ -288,11 +282,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:19:03 GMT + - Fri, 22 May 2026 09:17:37 GMT Pragma: - no-cache RequestId: - - ca41f8a6-45dd-49b6-b9a0-3eb5c839b1a3 + - a221daee-0ce0-4ff2-bc55-6e52dea58e17 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -322,7 +316,7 @@ interactions: User-Agent: - ms-fabric-cli/1.6.1 (set; Linux/6.12.76-linuxkit; Python/3.12.11) method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/c89f9280-455e-4eef-9062-e33dce08be60 + uri: https://api.fabric.microsoft.com/v1/workspaces/c8386e3b-fc56-45d5-81a8-60a8b098df7e response: body: string: '' @@ -338,11 +332,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 22 May 2026 08:19:05 GMT + - Fri, 22 May 2026 09:17:38 GMT Pragma: - no-cache RequestId: - - f9fd9235-27e2-402f-9bc4-6c7d25c64186 + - 5dfad4c8-174b-42b8-9956-0d60dbd2e058 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_capacity_invalid_query_failure.yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_capacity_invalid_query_failure.yaml index 655f8a598..bf85ece27 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_capacity_invalid_query_failure.yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_capacity_invalid_query_failure.yaml @@ -11,13 +11,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/capacities response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F32", "region": "Central US", "state": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -27,15 +27,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:27:58 GMT + - Fri, 22 May 2026 09:07:18 GMT Pragma: - no-cache RequestId: - - ee43a628-972b-4f76-90fd-e95847ca8889 + - b0adcc55-6c83-40b7-b64c-39d4a0346320 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -64,7 +64,7 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -75,7 +75,7 @@ interactions: "westeurope", "sku": {"name": "F2", "tier": "Fabric"}}' headers: Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/6C75C67B-D8FE-4C4D-B092-D33EBD18D847?api-version=2022-07-01-preview&t=639052900872937115&c=MIIHyTCCBrGgAwIBAgITfAlk8Mi06a8UhnP99gAACWTwyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDI0MTcxMjQwWhcNMjYwNDIyMTcxMjQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALcUPUGgVHqFnr2lKrLUM330FRAEoBYLCPB4YAq-pwWa9yfwpBV5sY_mFLbBUr3x7rICcv9Hc0-xqNB8ek2clzLoKnUNgng6GScC3SovkX1ef7RjqpXqV0ikigzDum4gusImV2LK8d_-RiKP5rKXq8O5MacwwEOJqK_UaTb01WXBrjNWDPfDF9vIuuKi7Wi8-J_PLgu6Ja2U0lAGbs2wPVHEfYdWzpqeHw_xPBs6WzEu2WOszALiZCx__NLAFY9pvE8BBP3WJc9k8GjUkTTTNvj-wHpEtP6iR0ViGH71AjAuWF8RZ3BRd3Gelm7CIS0FyMBJKNXcd5Dtr_NblqXTZJkCAwEAAaOCBLYwggSyMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSBfHSBm-qJF1D6xjuMRc12RfznPDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFSWa-W1M9A0J_kS6Wn7anvvIX6lu8ivCR7xG4Aulce-HuWKEU4N5dH2Qbed1N7HF9bSpH9hD2eRQLSDTKq8wqHhS-l4SOucgl4U_KqWyxtVK9jm4dtBETj8V5tJTUqgnOJE_hssHkBRu7Vmx-1hx4AqPYgfz1w6sL5oFxxprVrfE6XfGgqUCnrTwpSDlh3MvgiOCZj-DWDstxGmz83hsTvbBKCAG0qE_5MlaktX_0Za1dQmaAvqTk8lspoFwZeTvgTaYcQjlZwvyx77omDT8rBsJbMHGzxKAKocA4aKSsP7dO1yYGIM2SlGKSlO7y7y2MxVyhAErh_rhcrWu5jTa6M&s=OrQOvP5jsFO1p9DCip0sgvu8sEU4KNjB3xmVtSFLUOxRH-QML5ia98_KN9wAITIzqCD0UjVxHlH-Xcj_khYbr5Fny8i1Rohsh0m8xzdbOfSe5X_iniGdr7CT3hBs_POeILhQ5kYryNtHGAJks8npqQxOpGMrHaooPQiABBhVXhUgIhbf7G6BAJSDSujjv746PfHIjnZ9Rje4SgR644PF4KIDFqbgVQuad6QRQ2JvRQyIwucCfdiXuMVxENaxcDInmd0R1PksO2qT2pEGcTudvPvCMvaTY2GUdPMTfC2BXJ9p-YOdAAYrBhTE9O85HuYq7ZWmSvn5qeQq2KDP94F_-w&h=nzrxETSqZGN-uF1ZbaCw2BBPlU0iWTb771oiRxQ9SZE + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/C323F045-49BB-474B-A0AB-F2BAEF79F3EF?api-version=2022-07-01-preview&t=639150376437422842&c=MIIHlDCCBnygAwIBAgIQCcZ3NZgX0q5a3tFnq1z-RDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQxMzExNDQ1NVoXDTI2MTAwODE3NDQ1NVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC0iUjYwGM3iuw3bm7OjIT4_StmDqctm9ekrGffunsy0G-gEU9ev5J3pJ-338NeyIClKmuuT_TA1Ci3pE5Ztt-jevVj__awJSrBvf7w1KaZy4jrxgGsjYjOlgz_zZKpeA0Wtx4zf_sMLqtYBsOjFs_r5zmf9rlCSMO5iIu-CYGgHWIN101cGOOCn9q-gQvzWJf-HlzcQoKzSxA-uRB_oftG2XtVRJseItE3pDZxIhUlo7d8iXih1WK5-5USTECwDFrWAalys1usXDvKQXQm3khLoC7xzROD4zFCU7kkkQIlZziM-O-9WrRVP97U8336nG4jW9eLG-SEAQEObXnnrL39AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQ10XuZlWVKacfOb0LZdFFdwjf6MDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMjAvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzIwL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMjAvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8yMC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAuuXhX0t4jDXr_oZ03fmrT-MzaU1CGWIobcidoi-qWfLQ9O5G6MagF61N1N9wmk7-fQippjjmh0kXf8n629ZjhEhnlZ3xnex4WPYbuC03Wcg2m54_BXz0VA6ZzIguL2HLr2zDl_p6L6ObXQyhrCk5OR1F65HxQ_ez90kPkMy-ldR3g40N8AE3xCs2IyKeqH1x0YBDrZOTZgPy2Y12lbvpN8ymOkRDEhx5NVOLUAeZx8h127aV5iDAoHFE800C9H-6r2_yzjAt6XiIp8r2We44OZ-aFO7cZN3XDj_XMUVppjU520qA_ND8cjkhmG3aqzZArot1ybaEtb_pdflEwkq2U&s=ef1Xgn65NcpFZSf7-qGkiQK-ot6SHlLC-6gUPd1BW4BU28pZUQmr9GNT47DHWpCst8ue9ywuYwzaGTjUlyBmhXiyLpIw_TDc1O1r4CCUktWolWinpaziFigMsaZzRAD6YjvZBAXA3fuYvnOxjVXt6qh64IB3xLW1oPEzYu_NjqSH8ZhxRJIxsZ_M4zdcvmwZHNeTN69Qn4_9WtQH8--Ss1_g8P-lSHopKWb5snhylYTrH_8f8EaK1nxOXeXeCJtnYgDkiWwPDbfnM4yE_OvLVBV6NGTEHibETPwiQCIC5VCAeS70m5MbzUdhUs1egLOWm8aHEWkXtkRFK_kf3nuDHQ&h=Cjer4U4NeXbkeQeTH8mwOfm-faz3b6TFwK6d3Vz5Swk Cache-Control: - no-cache Content-Length: @@ -85,11 +85,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:28:06 GMT + - Fri, 22 May 2026 09:07:23 GMT Expires: - '-1' Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/6C75C67B-D8FE-4C4D-B092-D33EBD18D847?api-version=2022-07-01-preview&t=639052900872937115&c=MIIHyTCCBrGgAwIBAgITfAlk8Mi06a8UhnP99gAACWTwyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDI0MTcxMjQwWhcNMjYwNDIyMTcxMjQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALcUPUGgVHqFnr2lKrLUM330FRAEoBYLCPB4YAq-pwWa9yfwpBV5sY_mFLbBUr3x7rICcv9Hc0-xqNB8ek2clzLoKnUNgng6GScC3SovkX1ef7RjqpXqV0ikigzDum4gusImV2LK8d_-RiKP5rKXq8O5MacwwEOJqK_UaTb01WXBrjNWDPfDF9vIuuKi7Wi8-J_PLgu6Ja2U0lAGbs2wPVHEfYdWzpqeHw_xPBs6WzEu2WOszALiZCx__NLAFY9pvE8BBP3WJc9k8GjUkTTTNvj-wHpEtP6iR0ViGH71AjAuWF8RZ3BRd3Gelm7CIS0FyMBJKNXcd5Dtr_NblqXTZJkCAwEAAaOCBLYwggSyMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSBfHSBm-qJF1D6xjuMRc12RfznPDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFSWa-W1M9A0J_kS6Wn7anvvIX6lu8ivCR7xG4Aulce-HuWKEU4N5dH2Qbed1N7HF9bSpH9hD2eRQLSDTKq8wqHhS-l4SOucgl4U_KqWyxtVK9jm4dtBETj8V5tJTUqgnOJE_hssHkBRu7Vmx-1hx4AqPYgfz1w6sL5oFxxprVrfE6XfGgqUCnrTwpSDlh3MvgiOCZj-DWDstxGmz83hsTvbBKCAG0qE_5MlaktX_0Za1dQmaAvqTk8lspoFwZeTvgTaYcQjlZwvyx77omDT8rBsJbMHGzxKAKocA4aKSsP7dO1yYGIM2SlGKSlO7y7y2MxVyhAErh_rhcrWu5jTa6M&s=pRFd8fbvyd1mRf5tntgPK2lnQme6iz4nt_e7qvvlx5JOXmIO1bkr3Qa7SFyzlxFICnAT7-b53z0rw_RCvrvkN-xSUjJCdqJPbn31FUNH49YkcmEZOVtpkRIJnt-1MfA28eIGtbQT-76jF_57lRvBSgbM3W3kbsEPwJKW60LoTgXZCfcK_xdtkO0JRizUwhVHFT2JK5By4cQOg-gbJQKaQm-y4YYv6IEZN8WTJh7_l7lJbmykKbnmciNRN2mkO-lDT0jGWfphjv3p3gzgNOLksIES4RSC1PWOIbgq9JAZP-imdlqMJr2bxvvlxUTXGOrxrbtTsPElLAUq_amsvUnwEQ&h=GyjKlMOW4pJ7q5rLgshN9GjbeEu8HxqxWVpzRW4pQJM + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/C323F045-49BB-474B-A0AB-F2BAEF79F3EF?api-version=2022-07-01-preview&t=639150376437422842&c=MIIHlDCCBnygAwIBAgIQCcZ3NZgX0q5a3tFnq1z-RDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQxMzExNDQ1NVoXDTI2MTAwODE3NDQ1NVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC0iUjYwGM3iuw3bm7OjIT4_StmDqctm9ekrGffunsy0G-gEU9ev5J3pJ-338NeyIClKmuuT_TA1Ci3pE5Ztt-jevVj__awJSrBvf7w1KaZy4jrxgGsjYjOlgz_zZKpeA0Wtx4zf_sMLqtYBsOjFs_r5zmf9rlCSMO5iIu-CYGgHWIN101cGOOCn9q-gQvzWJf-HlzcQoKzSxA-uRB_oftG2XtVRJseItE3pDZxIhUlo7d8iXih1WK5-5USTECwDFrWAalys1usXDvKQXQm3khLoC7xzROD4zFCU7kkkQIlZziM-O-9WrRVP97U8336nG4jW9eLG-SEAQEObXnnrL39AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQ10XuZlWVKacfOb0LZdFFdwjf6MDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMjAvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzIwL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMjAvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8yMC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAuuXhX0t4jDXr_oZ03fmrT-MzaU1CGWIobcidoi-qWfLQ9O5G6MagF61N1N9wmk7-fQippjjmh0kXf8n629ZjhEhnlZ3xnex4WPYbuC03Wcg2m54_BXz0VA6ZzIguL2HLr2zDl_p6L6ObXQyhrCk5OR1F65HxQ_ez90kPkMy-ldR3g40N8AE3xCs2IyKeqH1x0YBDrZOTZgPy2Y12lbvpN8ymOkRDEhx5NVOLUAeZx8h127aV5iDAoHFE800C9H-6r2_yzjAt6XiIp8r2We44OZ-aFO7cZN3XDj_XMUVppjU520qA_ND8cjkhmG3aqzZArot1ybaEtb_pdflEwkq2U&s=bRIIuC6MJN_UWuv05OZqhyIzLmeYpJtc5UEVYAhy26WQNVyDZV8WAHCX2RW63cheOsmK_Eg-Rdca-lAEzzeaFFpjJYHdjHxaqkTOqPxKOQ8gZRiTr99s-fzcOFRKhgbnfJhD3HvjXNP7fRoT9STmbEJdGeE7aJPZYLpFRxfXx7cI79BzpkBlPMJbIMg2FIn58MaZM5wRKimy6upWlyUkxgTqY6SteTdpGGJO-w4TLpVG0xmO-ICPjKoeWnI2Mp3zf8ERrFHK0LDT4j9gVyTLk6P2VIjIvhmQiPGBoviGhc6QmsKxa_d73rMP2qeiMicMc4-ipW-YAub-oPOCOVAO2g&h=jeLW8p4swIdZKpOXnEXHkMGtUtFwKYVe7mNViZg4F-g Pragma: - no-cache Strict-Transport-Security: @@ -117,14 +117,14 @@ 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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/6C75C67B-D8FE-4C4D-B092-D33EBD18D847?api-version=2022-07-01-preview&t=639052900872937115&c=MIIHyTCCBrGgAwIBAgITfAlk8Mi06a8UhnP99gAACWTwyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDI0MTcxMjQwWhcNMjYwNDIyMTcxMjQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALcUPUGgVHqFnr2lKrLUM330FRAEoBYLCPB4YAq-pwWa9yfwpBV5sY_mFLbBUr3x7rICcv9Hc0-xqNB8ek2clzLoKnUNgng6GScC3SovkX1ef7RjqpXqV0ikigzDum4gusImV2LK8d_-RiKP5rKXq8O5MacwwEOJqK_UaTb01WXBrjNWDPfDF9vIuuKi7Wi8-J_PLgu6Ja2U0lAGbs2wPVHEfYdWzpqeHw_xPBs6WzEu2WOszALiZCx__NLAFY9pvE8BBP3WJc9k8GjUkTTTNvj-wHpEtP6iR0ViGH71AjAuWF8RZ3BRd3Gelm7CIS0FyMBJKNXcd5Dtr_NblqXTZJkCAwEAAaOCBLYwggSyMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSBfHSBm-qJF1D6xjuMRc12RfznPDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFSWa-W1M9A0J_kS6Wn7anvvIX6lu8ivCR7xG4Aulce-HuWKEU4N5dH2Qbed1N7HF9bSpH9hD2eRQLSDTKq8wqHhS-l4SOucgl4U_KqWyxtVK9jm4dtBETj8V5tJTUqgnOJE_hssHkBRu7Vmx-1hx4AqPYgfz1w6sL5oFxxprVrfE6XfGgqUCnrTwpSDlh3MvgiOCZj-DWDstxGmz83hsTvbBKCAG0qE_5MlaktX_0Za1dQmaAvqTk8lspoFwZeTvgTaYcQjlZwvyx77omDT8rBsJbMHGzxKAKocA4aKSsP7dO1yYGIM2SlGKSlO7y7y2MxVyhAErh_rhcrWu5jTa6M&s=OrQOvP5jsFO1p9DCip0sgvu8sEU4KNjB3xmVtSFLUOxRH-QML5ia98_KN9wAITIzqCD0UjVxHlH-Xcj_khYbr5Fny8i1Rohsh0m8xzdbOfSe5X_iniGdr7CT3hBs_POeILhQ5kYryNtHGAJks8npqQxOpGMrHaooPQiABBhVXhUgIhbf7G6BAJSDSujjv746PfHIjnZ9Rje4SgR644PF4KIDFqbgVQuad6QRQ2JvRQyIwucCfdiXuMVxENaxcDInmd0R1PksO2qT2pEGcTudvPvCMvaTY2GUdPMTfC2BXJ9p-YOdAAYrBhTE9O85HuYq7ZWmSvn5qeQq2KDP94F_-w&h=nzrxETSqZGN-uF1ZbaCw2BBPlU0iWTb771oiRxQ9SZE + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/C323F045-49BB-474B-A0AB-F2BAEF79F3EF?api-version=2022-07-01-preview&t=639150376437422842&c=MIIHlDCCBnygAwIBAgIQCcZ3NZgX0q5a3tFnq1z-RDANBgkqhkiG9w0BAQsFADA2MTQwMgYDVQQDEytDQ01FIEcxIFRMUyBSU0EgMjA0OCBTSEEyNTYgMjA0OSBXVVMyIENBIDAxMB4XDTI2MDQxMzExNDQ1NVoXDTI2MTAwODE3NDQ1NVowQDE-MDwGA1UEAxM1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC0iUjYwGM3iuw3bm7OjIT4_StmDqctm9ekrGffunsy0G-gEU9ev5J3pJ-338NeyIClKmuuT_TA1Ci3pE5Ztt-jevVj__awJSrBvf7w1KaZy4jrxgGsjYjOlgz_zZKpeA0Wtx4zf_sMLqtYBsOjFs_r5zmf9rlCSMO5iIu-CYGgHWIN101cGOOCn9q-gQvzWJf-HlzcQoKzSxA-uRB_oftG2XtVRJseItE3pDZxIhUlo7d8iXih1WK5-5USTECwDFrWAalys1usXDvKQXQm3khLoC7xzROD4zFCU7kkkQIlZziM-O-9WrRVP97U8336nG4jW9eLG-SEAQEObXnnrL39AgMBAAGjggSSMIIEjjCBnQYDVR0gBIGVMIGSMAwGCisGAQQBgjd7AQEwZgYKKwYBBAGCN3sCAjBYMFYGCCsGAQUFBwICMEoeSAAzADMAZQAwADEAOQAyADEALQA0AGQANgA0AC0ANABmADgAYwAtAGEAMAA1ADUALQA1AGIAZABhAGYAZgBkADUAZQAzADMAZDAMBgorBgEEAYI3ewMCMAwGCisGAQQBgjd7BAIwDAYDVR0TAQH_BAIwADAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDgYDVR0PAQH_BAQDAgWgMB0GA1UdDgQWBBQ10XuZlWVKacfOb0LZdFFdwjf6MDAfBgNVHSMEGDAWgBSs43L6A7Jznj2VyO-HW67dG6HtaDCCAbIGA1UdHwSCAakwggGlMGmgZ6BlhmNodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMjAvY3VycmVudC5jcmwwa6BpoGeGZWh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzIwL2N1cnJlbnQuY3JsMFqgWKBWhlRodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jcmxzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvMjAvY3VycmVudC5jcmwwb6BtoGuGaWh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMS8yMC9jdXJyZW50LmNybDCCAbcGCCsGAQUFBwEBBIIBqTCCAaUwbAYIKwYBBQUHMAKGYGh0dHA6Ly9wcmltYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBuBggrBgEFBQcwAoZiaHR0cDovL3NlY29uZGFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwXQYIKwYBBQUHMAKGUWh0dHA6Ly9jcmwubWljcm9zb2Z0LmNvbS93ZXN0dXMyL2NhY2VydHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS9jZXJ0LmNlcjBmBggrBgEFBQcwAoZaaHR0cDovL2NjbWV3ZXN0dXMycGtpLndlc3R1czIucGtpLmNvcmUud2luZG93cy5uZXQvY2VydGlmaWNhdGVBdXRob3JpdGllcy9jY21ld2VzdHVzMmljYTAxMA0GCSqGSIb3DQEBCwUAA4IBAQAuuXhX0t4jDXr_oZ03fmrT-MzaU1CGWIobcidoi-qWfLQ9O5G6MagF61N1N9wmk7-fQippjjmh0kXf8n629ZjhEhnlZ3xnex4WPYbuC03Wcg2m54_BXz0VA6ZzIguL2HLr2zDl_p6L6ObXQyhrCk5OR1F65HxQ_ez90kPkMy-ldR3g40N8AE3xCs2IyKeqH1x0YBDrZOTZgPy2Y12lbvpN8ymOkRDEhx5NVOLUAeZx8h127aV5iDAoHFE800C9H-6r2_yzjAt6XiIp8r2We44OZ-aFO7cZN3XDj_XMUVppjU520qA_ND8cjkhmG3aqzZArot1ybaEtb_pdflEwkq2U&s=ef1Xgn65NcpFZSf7-qGkiQK-ot6SHlLC-6gUPd1BW4BU28pZUQmr9GNT47DHWpCst8ue9ywuYwzaGTjUlyBmhXiyLpIw_TDc1O1r4CCUktWolWinpaziFigMsaZzRAD6YjvZBAXA3fuYvnOxjVXt6qh64IB3xLW1oPEzYu_NjqSH8ZhxRJIxsZ_M4zdcvmwZHNeTN69Qn4_9WtQH8--Ss1_g8P-lSHopKWb5snhylYTrH_8f8EaK1nxOXeXeCJtnYgDkiWwPDbfnM4yE_OvLVBV6NGTEHibETPwiQCIC5VCAeS70m5MbzUdhUs1egLOWm8aHEWkXtkRFK_kf3nuDHQ&h=Cjer4U4NeXbkeQeTH8mwOfm-faz3b6TFwK6d3Vz5Swk response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/6C75C67B-D8FE-4C4D-B092-D33EBD18D847", - "name": "6C75C67B-D8FE-4C4D-B092-D33EBD18D847", "status": "Succeeded", "startTime": - "2026-01-29T13:28:03.6300000Z", "endTime": "2026-01-29T13:28:08.0470000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/C323F045-49BB-474B-A0AB-F2BAEF79F3EF", + "name": "C323F045-49BB-474B-A0AB-F2BAEF79F3EF", "status": "Succeeded", "startTime": + "2026-05-22T09:07:22.4630000Z", "endTime": "2026-05-22T09:07:26.3830000Z"}' headers: Cache-Control: - no-cache @@ -135,7 +135,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:28:18 GMT + - Fri, 22 May 2026 09:07:33 GMT Expires: - '-1' Pragma: @@ -165,14 +165,14 @@ 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/capacities response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F32", "region": "Central US", "state": - "Active"}, {"id": "c38f1ec9-3df1-4ddf-8bc2-9806cf0672bf", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "dbeb6f4c-f387-498f-b610-3035df949cee", "displayName": "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -186,11 +186,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:28:23 GMT + - Fri, 22 May 2026 09:07:39 GMT Pragma: - no-cache RequestId: - - 54661b2e-b3a5-4f48-a5d6-913ff68301fa + - 1de35e16-3b75-465f-873a-d2aecb493393 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -216,14 +216,14 @@ 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/capacities response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F32", "region": "Central US", "state": - "Active"}, {"id": "c38f1ec9-3df1-4ddf-8bc2-9806cf0672bf", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "dbeb6f4c-f387-498f-b610-3035df949cee", "displayName": "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -237,11 +237,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:28:29 GMT + - Fri, 22 May 2026 09:08:05 GMT Pragma: - no-cache RequestId: - - 2e6a68f8-bfca-49a1-89b7-9b3f3c42c5dd + - a41c2099-6d6d-47ad-b46d-9607f4834c52 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -267,14 +267,14 @@ 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/capacities response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F32", "region": "Central US", "state": - "Active"}, {"id": "c38f1ec9-3df1-4ddf-8bc2-9806cf0672bf", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "dbeb6f4c-f387-498f-b610-3035df949cee", "displayName": "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -288,11 +288,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:28:33 GMT + - Fri, 22 May 2026 09:08:10 GMT Pragma: - no-cache RequestId: - - bf92e9c5-70c7-420a-9bc2-1e54162f3529 + - 80b75e5d-8680-42aa-a89c-3426528ad537 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -318,7 +318,7 @@ 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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: @@ -337,7 +337,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:28:33 GMT + - Fri, 22 May 2026 09:08:11 GMT Expires: - '-1' Pragma: @@ -367,14 +367,14 @@ 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/capacities response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F32", "region": "Central US", "state": - "Active"}, {"id": "c38f1ec9-3df1-4ddf-8bc2-9806cf0672bf", "displayName": "fabcli000001", + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "dbeb6f4c-f387-498f-b610-3035df949cee", "displayName": "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -388,11 +388,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:28:37 GMT + - Fri, 22 May 2026 09:08:16 GMT Pragma: - no-cache RequestId: - - 7edd231c-4a85-438b-adba-1745f725f848 + - 0d934321-e323-41fd-a70f-dafda83c9919 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -418,22 +418,22 @@ 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://management.azure.com/subscriptions?api-version=2022-12-01 + uri: https://management.azure.com/subscriptions/placeholder/resourceGroups/placeholder/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: body: - string: '{"value": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000"}], - "count": {"type": "Total", "value": 1}}' + string: '{"error": {"code": "InvalidSubscriptionId", "message": "The provided + subscription identifier ''placeholder'' is malformed or invalid."}}' headers: Cache-Control: - no-cache Content-Length: - - '469' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:28:38 GMT + - Fri, 22 May 2026 09:08:16 GMT Expires: - '-1' Pragma: @@ -445,8 +445,8 @@ interactions: X-Content-Type-Options: - nosniff status: - code: 200 - message: OK + code: 400 + message: Bad Request - request: body: null headers: @@ -459,25 +459,22 @@ 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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/capacities?api-version=2023-11-01 + uri: https://management.azure.com/subscriptions?api-version=2022-12-01 response: body: - string: '{"value": [{"properties": {"provisioningState": "Succeeded", "state": - "Active", "administration": {"members": ["mocked@admin_test_user"]}}, "id": - "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", - "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": - "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}]}' + string: '{"value": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000"}], + "count": {"type": "Total", "value": 1}}' headers: Cache-Control: - no-cache Content-Length: - - '2562' + - '469' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:28:39 GMT + - Fri, 22 May 2026 09:08:17 GMT Expires: - '-1' Pragma: @@ -500,78 +497,32 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '0' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 - response: - body: - string: '' - headers: - Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/F32F74CC-2D09-446D-8C6A-F0642BCC4B4B?api-version=2022-07-01-preview&t=639052901228099520&c=MIIHyTCCBrGgAwIBAgITfAlk8Mi06a8UhnP99gAACWTwyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDI0MTcxMjQwWhcNMjYwNDIyMTcxMjQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALcUPUGgVHqFnr2lKrLUM330FRAEoBYLCPB4YAq-pwWa9yfwpBV5sY_mFLbBUr3x7rICcv9Hc0-xqNB8ek2clzLoKnUNgng6GScC3SovkX1ef7RjqpXqV0ikigzDum4gusImV2LK8d_-RiKP5rKXq8O5MacwwEOJqK_UaTb01WXBrjNWDPfDF9vIuuKi7Wi8-J_PLgu6Ja2U0lAGbs2wPVHEfYdWzpqeHw_xPBs6WzEu2WOszALiZCx__NLAFY9pvE8BBP3WJc9k8GjUkTTTNvj-wHpEtP6iR0ViGH71AjAuWF8RZ3BRd3Gelm7CIS0FyMBJKNXcd5Dtr_NblqXTZJkCAwEAAaOCBLYwggSyMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSBfHSBm-qJF1D6xjuMRc12RfznPDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFSWa-W1M9A0J_kS6Wn7anvvIX6lu8ivCR7xG4Aulce-HuWKEU4N5dH2Qbed1N7HF9bSpH9hD2eRQLSDTKq8wqHhS-l4SOucgl4U_KqWyxtVK9jm4dtBETj8V5tJTUqgnOJE_hssHkBRu7Vmx-1hx4AqPYgfz1w6sL5oFxxprVrfE6XfGgqUCnrTwpSDlh3MvgiOCZj-DWDstxGmz83hsTvbBKCAG0qE_5MlaktX_0Za1dQmaAvqTk8lspoFwZeTvgTaYcQjlZwvyx77omDT8rBsJbMHGzxKAKocA4aKSsP7dO1yYGIM2SlGKSlO7y7y2MxVyhAErh_rhcrWu5jTa6M&s=tWqMxPrYehCJR9jkqp9f_C3ygIX7BrR4RM3rdEw3C-I5DpChSF-0WAo_QsRroWxgXhomCakJ0EnS2x9pgp-AdMT-WeMPiaSQrDGx3Eu5D4snpiN8eN33z8m0TuPKDUQeoaqeXG0ULOW-vMfxdSDMlhbyeGC756r5Egm8MGBR1wcra0vRR5ywJ3hsvtoKQmK3E21Zw9GEjL7iWmsBK8JLCiQD4m1bzHrsG7yk1TwBpu3bfoAqk3knNcxCPUaG3dIGPM5-x_aj0V4SpDwS-a4ud_JiicTXB640nFyFB9y6flUVXSyo53wxogR-uodC4bF5gCIftUnwQPoDHkecB7HFvg&h=9m_C7TyY3kMQAjwbioRmvIi_kHetQFRMFenrBaF9qX0 - Cache-Control: - - no-cache - Content-Length: - - '0' - Content-Security-Policy: - - script-src 'self' - Date: - - Thu, 29 Jan 2026 13:28:42 GMT - Expires: - - '-1' - Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/F32F74CC-2D09-446D-8C6A-F0642BCC4B4B?api-version=2022-07-01-preview&t=639052901228255759&c=MIIHyTCCBrGgAwIBAgITfAlk8Mi06a8UhnP99gAACWTwyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDI0MTcxMjQwWhcNMjYwNDIyMTcxMjQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALcUPUGgVHqFnr2lKrLUM330FRAEoBYLCPB4YAq-pwWa9yfwpBV5sY_mFLbBUr3x7rICcv9Hc0-xqNB8ek2clzLoKnUNgng6GScC3SovkX1ef7RjqpXqV0ikigzDum4gusImV2LK8d_-RiKP5rKXq8O5MacwwEOJqK_UaTb01WXBrjNWDPfDF9vIuuKi7Wi8-J_PLgu6Ja2U0lAGbs2wPVHEfYdWzpqeHw_xPBs6WzEu2WOszALiZCx__NLAFY9pvE8BBP3WJc9k8GjUkTTTNvj-wHpEtP6iR0ViGH71AjAuWF8RZ3BRd3Gelm7CIS0FyMBJKNXcd5Dtr_NblqXTZJkCAwEAAaOCBLYwggSyMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSBfHSBm-qJF1D6xjuMRc12RfznPDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFSWa-W1M9A0J_kS6Wn7anvvIX6lu8ivCR7xG4Aulce-HuWKEU4N5dH2Qbed1N7HF9bSpH9hD2eRQLSDTKq8wqHhS-l4SOucgl4U_KqWyxtVK9jm4dtBETj8V5tJTUqgnOJE_hssHkBRu7Vmx-1hx4AqPYgfz1w6sL5oFxxprVrfE6XfGgqUCnrTwpSDlh3MvgiOCZj-DWDstxGmz83hsTvbBKCAG0qE_5MlaktX_0Za1dQmaAvqTk8lspoFwZeTvgTaYcQjlZwvyx77omDT8rBsJbMHGzxKAKocA4aKSsP7dO1yYGIM2SlGKSlO7y7y2MxVyhAErh_rhcrWu5jTa6M&s=Nn_E9oLWEkasYqScQ4494xKLHLzyj81bD2YGHp-UKbv7gOceSw7N315xEkqmFvviA84OCAgt6HVnEYuuCKKZaFgwaVi2YS-4BMFVFUh31sdFhg-pNGYlODhBDq6ZQ1HqVpzi8xe3R4LgHfWCkGL5li9Y2bu7yHObPpMazPDHcQZiysXIyP1cbID4Nfa6FjEFBuHpCotRLxdBzFOI1Ecf3EbQDemwfcsaEugff3gumw_Ak6qmJkFuOOH36dohV2kErmVftBOUXubu-oOB7qYnnk-BaI5sL7E6KFHjEyofMrCL2iv2KthhOEnAvp7Otsplws829fKqX65o52m2x_OPkQ&h=SlfWdZaHa-zKjgj1AqZsp7KoA5HHfsk7H-UyBG0Tt7Y - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/F32F74CC-2D09-446D-8C6A-F0642BCC4B4B?api-version=2022-07-01-preview&t=639052901228099520&c=MIIHyTCCBrGgAwIBAgITfAlk8Mi06a8UhnP99gAACWTwyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDI0MTcxMjQwWhcNMjYwNDIyMTcxMjQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALcUPUGgVHqFnr2lKrLUM330FRAEoBYLCPB4YAq-pwWa9yfwpBV5sY_mFLbBUr3x7rICcv9Hc0-xqNB8ek2clzLoKnUNgng6GScC3SovkX1ef7RjqpXqV0ikigzDum4gusImV2LK8d_-RiKP5rKXq8O5MacwwEOJqK_UaTb01WXBrjNWDPfDF9vIuuKi7Wi8-J_PLgu6Ja2U0lAGbs2wPVHEfYdWzpqeHw_xPBs6WzEu2WOszALiZCx__NLAFY9pvE8BBP3WJc9k8GjUkTTTNvj-wHpEtP6iR0ViGH71AjAuWF8RZ3BRd3Gelm7CIS0FyMBJKNXcd5Dtr_NblqXTZJkCAwEAAaOCBLYwggSyMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSBfHSBm-qJF1D6xjuMRc12RfznPDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFSWa-W1M9A0J_kS6Wn7anvvIX6lu8ivCR7xG4Aulce-HuWKEU4N5dH2Qbed1N7HF9bSpH9hD2eRQLSDTKq8wqHhS-l4SOucgl4U_KqWyxtVK9jm4dtBETj8V5tJTUqgnOJE_hssHkBRu7Vmx-1hx4AqPYgfz1w6sL5oFxxprVrfE6XfGgqUCnrTwpSDlh3MvgiOCZj-DWDstxGmz83hsTvbBKCAG0qE_5MlaktX_0Za1dQmaAvqTk8lspoFwZeTvgTaYcQjlZwvyx77omDT8rBsJbMHGzxKAKocA4aKSsP7dO1yYGIM2SlGKSlO7y7y2MxVyhAErh_rhcrWu5jTa6M&s=tWqMxPrYehCJR9jkqp9f_C3ygIX7BrR4RM3rdEw3C-I5DpChSF-0WAo_QsRroWxgXhomCakJ0EnS2x9pgp-AdMT-WeMPiaSQrDGx3Eu5D4snpiN8eN33z8m0TuPKDUQeoaqeXG0ULOW-vMfxdSDMlhbyeGC756r5Egm8MGBR1wcra0vRR5ywJ3hsvtoKQmK3E21Zw9GEjL7iWmsBK8JLCiQD4m1bzHrsG7yk1TwBpu3bfoAqk3knNcxCPUaG3dIGPM5-x_aj0V4SpDwS-a4ud_JiicTXB640nFyFB9y6flUVXSyo53wxogR-uodC4bF5gCIftUnwQPoDHkecB7HFvg&h=9m_C7TyY3kMQAjwbioRmvIi_kHetQFRMFenrBaF9qX0 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/capacities?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/F32F74CC-2D09-446D-8C6A-F0642BCC4B4B", - "name": "F32F74CC-2D09-446D-8C6A-F0642BCC4B4B", "status": "Deleting", "startTime": - "2026-01-29T13:28:42.1270000Z"}' + string: '{"value": [{"properties": {"provisioningState": "Succeeded", "state": + "Active", "administration": {"members": ["mocked@admin_test_user", "4fdd0762-85fe-4f8b-90dc-776e8605e0b9"]}}, + "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/mocked_fabriccli_capacity_name", + "name": "mocked_fabriccli_capacity_name", "type": "Microsoft.Fabric/capacities", + "location": "Central US", "sku": {"name": "F16", "tier": "Fabric"}, "tags": + {}}, {"properties": {"provisioningState": "Succeeded", "state": "Active", + "administration": {"members": ["mocked@admin_test_user"]}}, "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001", + "name": "fabcli000001", "type": "Microsoft.Fabric/capacities", "location": + "West Europe", "sku": {"name": "F2", "tier": "Fabric"}, "tags": {}}]}' headers: Cache-Control: - no-cache Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' + - '2562' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:28:53 GMT + - Fri, 22 May 2026 09:08:18 GMT Expires: - '-1' Pragma: @@ -582,10 +533,6 @@ interactions: - CONFIG_NOCACHE X-Content-Type-Options: - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block status: code: 200 message: OK @@ -598,30 +545,32 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Length: + - '0' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/F32F74CC-2D09-446D-8C6A-F0642BCC4B4B?api-version=2022-07-01-preview&t=639052901228099520&c=MIIHyTCCBrGgAwIBAgITfAlk8Mi06a8UhnP99gAACWTwyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDI0MTcxMjQwWhcNMjYwNDIyMTcxMjQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALcUPUGgVHqFnr2lKrLUM330FRAEoBYLCPB4YAq-pwWa9yfwpBV5sY_mFLbBUr3x7rICcv9Hc0-xqNB8ek2clzLoKnUNgng6GScC3SovkX1ef7RjqpXqV0ikigzDum4gusImV2LK8d_-RiKP5rKXq8O5MacwwEOJqK_UaTb01WXBrjNWDPfDF9vIuuKi7Wi8-J_PLgu6Ja2U0lAGbs2wPVHEfYdWzpqeHw_xPBs6WzEu2WOszALiZCx__NLAFY9pvE8BBP3WJc9k8GjUkTTTNvj-wHpEtP6iR0ViGH71AjAuWF8RZ3BRd3Gelm7CIS0FyMBJKNXcd5Dtr_NblqXTZJkCAwEAAaOCBLYwggSyMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSBfHSBm-qJF1D6xjuMRc12RfznPDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFSWa-W1M9A0J_kS6Wn7anvvIX6lu8ivCR7xG4Aulce-HuWKEU4N5dH2Qbed1N7HF9bSpH9hD2eRQLSDTKq8wqHhS-l4SOucgl4U_KqWyxtVK9jm4dtBETj8V5tJTUqgnOJE_hssHkBRu7Vmx-1hx4AqPYgfz1w6sL5oFxxprVrfE6XfGgqUCnrTwpSDlh3MvgiOCZj-DWDstxGmz83hsTvbBKCAG0qE_5MlaktX_0Za1dQmaAvqTk8lspoFwZeTvgTaYcQjlZwvyx77omDT8rBsJbMHGzxKAKocA4aKSsP7dO1yYGIM2SlGKSlO7y7y2MxVyhAErh_rhcrWu5jTa6M&s=tWqMxPrYehCJR9jkqp9f_C3ygIX7BrR4RM3rdEw3C-I5DpChSF-0WAo_QsRroWxgXhomCakJ0EnS2x9pgp-AdMT-WeMPiaSQrDGx3Eu5D4snpiN8eN33z8m0TuPKDUQeoaqeXG0ULOW-vMfxdSDMlhbyeGC756r5Egm8MGBR1wcra0vRR5ywJ3hsvtoKQmK3E21Zw9GEjL7iWmsBK8JLCiQD4m1bzHrsG7yk1TwBpu3bfoAqk3knNcxCPUaG3dIGPM5-x_aj0V4SpDwS-a4ud_JiicTXB640nFyFB9y6flUVXSyo53wxogR-uodC4bF5gCIftUnwQPoDHkecB7HFvg&h=9m_C7TyY3kMQAjwbioRmvIi_kHetQFRMFenrBaF9qX0 + - ms-fabric-cli-test/1.6.1 + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mocked_fabriccli_resource_group/providers/Microsoft.Fabric/capacities/fabcli000001?api-version=2023-11-01 response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/F32F74CC-2D09-446D-8C6A-F0642BCC4B4B", - "name": "F32F74CC-2D09-446D-8C6A-F0642BCC4B4B", "status": "Deleting", "startTime": - "2026-01-29T13:28:42.1270000Z"}' + string: '' headers: + Azure-AsyncOperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/15ACA3DA-DFDB-48BB-B382-F2ECEA3011B3?api-version=2022-07-01-preview&t=639150377014010192&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=Q1iji0vkxhxs46bib-WZh2I15mJTG2LpIP4n20Sd2DOOsN0s4LFQFCoCFTzGundjYgTEoIknhShhkixUYNy-xuChB97iVz2Gb4yt0ISXfCzXq0DIIdcOHTZRHF5W0EIwEW4YWM5ZEukVRVxoAGhtq5wlcxcS7QmdIDjT_lsWkbjW7X2UzwlApd2CJjDcCTC1UKkwB0rH7Jfimbt4t8lkHt0po0wd0VF8222ILIrjhHBMNVMQOVT4whWj8DPb1E__SSUtZRbX3a5qH1krqJz1-C1y4qwHLDqWCyL4AuNY9b7kS3RuWOT_In_9ZFJ1bd8-AZJvKz_vsu-nr5IP7O-r3Q&h=7Lwj6Bi-TTDAaLJ8cIr4cwLGE2-IbjrBfCIEbfRFiaU Cache-Control: - no-cache Content-Length: - - '245' + - '0' Content-Security-Policy: - script-src 'self' - Content-Type: - - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:29:04 GMT + - Fri, 22 May 2026 09:08:20 GMT Expires: - '-1' + Location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/15ACA3DA-DFDB-48BB-B382-F2ECEA3011B3?api-version=2022-07-01-preview&t=639150377014010192&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=1zhTC-ozWzbbdKoP7SCPXB59hek6whlw6UruSAcUk6OizL8m5LaKBQQBZmDryWOpnbwfu9L7EN-ZBTjm_yNl3JNM1j5TTueIj3PfhrfBmv1CvHAdpUo8Q3_fzVg9AjegP1WpxJ59yW0CxwEFlbTi7ciwyYffGCOXv24gkrlG5M4IcAWRvYZYOqMX7povPIqcg-y_sZqiVvo2O-VlPnIyullZgcuyBERHi5yR8hp7F_4sHBLGYIIvMNUAIqemdaRtAOmElswgOqDY95CIHbqn-hu2in2uD_pG_wnDspE3Soh24ilvQrXEs3g1aLxH_9fviU3syvuhdUKJkVIMCkMdYA&h=eHgI2TuivQDAVZ1gyS77KFNzhuuR8AV6AJP_oGQDC4U Pragma: - no-cache Strict-Transport-Security: @@ -635,8 +584,8 @@ interactions: X-XSS-Protection: - 1; mode=block status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -649,14 +598,14 @@ 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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/F32F74CC-2D09-446D-8C6A-F0642BCC4B4B?api-version=2022-07-01-preview&t=639052901228099520&c=MIIHyTCCBrGgAwIBAgITfAlk8Mi06a8UhnP99gAACWTwyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDI0MTcxMjQwWhcNMjYwNDIyMTcxMjQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALcUPUGgVHqFnr2lKrLUM330FRAEoBYLCPB4YAq-pwWa9yfwpBV5sY_mFLbBUr3x7rICcv9Hc0-xqNB8ek2clzLoKnUNgng6GScC3SovkX1ef7RjqpXqV0ikigzDum4gusImV2LK8d_-RiKP5rKXq8O5MacwwEOJqK_UaTb01WXBrjNWDPfDF9vIuuKi7Wi8-J_PLgu6Ja2U0lAGbs2wPVHEfYdWzpqeHw_xPBs6WzEu2WOszALiZCx__NLAFY9pvE8BBP3WJc9k8GjUkTTTNvj-wHpEtP6iR0ViGH71AjAuWF8RZ3BRd3Gelm7CIS0FyMBJKNXcd5Dtr_NblqXTZJkCAwEAAaOCBLYwggSyMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSBfHSBm-qJF1D6xjuMRc12RfznPDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFSWa-W1M9A0J_kS6Wn7anvvIX6lu8ivCR7xG4Aulce-HuWKEU4N5dH2Qbed1N7HF9bSpH9hD2eRQLSDTKq8wqHhS-l4SOucgl4U_KqWyxtVK9jm4dtBETj8V5tJTUqgnOJE_hssHkBRu7Vmx-1hx4AqPYgfz1w6sL5oFxxprVrfE6XfGgqUCnrTwpSDlh3MvgiOCZj-DWDstxGmz83hsTvbBKCAG0qE_5MlaktX_0Za1dQmaAvqTk8lspoFwZeTvgTaYcQjlZwvyx77omDT8rBsJbMHGzxKAKocA4aKSsP7dO1yYGIM2SlGKSlO7y7y2MxVyhAErh_rhcrWu5jTa6M&s=tWqMxPrYehCJR9jkqp9f_C3ygIX7BrR4RM3rdEw3C-I5DpChSF-0WAo_QsRroWxgXhomCakJ0EnS2x9pgp-AdMT-WeMPiaSQrDGx3Eu5D4snpiN8eN33z8m0TuPKDUQeoaqeXG0ULOW-vMfxdSDMlhbyeGC756r5Egm8MGBR1wcra0vRR5ywJ3hsvtoKQmK3E21Zw9GEjL7iWmsBK8JLCiQD4m1bzHrsG7yk1TwBpu3bfoAqk3knNcxCPUaG3dIGPM5-x_aj0V4SpDwS-a4ud_JiicTXB640nFyFB9y6flUVXSyo53wxogR-uodC4bF5gCIftUnwQPoDHkecB7HFvg&h=9m_C7TyY3kMQAjwbioRmvIi_kHetQFRMFenrBaF9qX0 + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/15ACA3DA-DFDB-48BB-B382-F2ECEA3011B3?api-version=2022-07-01-preview&t=639150377014010192&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=Q1iji0vkxhxs46bib-WZh2I15mJTG2LpIP4n20Sd2DOOsN0s4LFQFCoCFTzGundjYgTEoIknhShhkixUYNy-xuChB97iVz2Gb4yt0ISXfCzXq0DIIdcOHTZRHF5W0EIwEW4YWM5ZEukVRVxoAGhtq5wlcxcS7QmdIDjT_lsWkbjW7X2UzwlApd2CJjDcCTC1UKkwB0rH7Jfimbt4t8lkHt0po0wd0VF8222ILIrjhHBMNVMQOVT4whWj8DPb1E__SSUtZRbX3a5qH1krqJz1-C1y4qwHLDqWCyL4AuNY9b7kS3RuWOT_In_9ZFJ1bd8-AZJvKz_vsu-nr5IP7O-r3Q&h=7Lwj6Bi-TTDAaLJ8cIr4cwLGE2-IbjrBfCIEbfRFiaU response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/F32F74CC-2D09-446D-8C6A-F0642BCC4B4B", - "name": "F32F74CC-2D09-446D-8C6A-F0642BCC4B4B", "status": "Deleting", "startTime": - "2026-01-29T13:28:42.1270000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/15ACA3DA-DFDB-48BB-B382-F2ECEA3011B3", + "name": "15ACA3DA-DFDB-48BB-B382-F2ECEA3011B3", "status": "Deleting", "startTime": + "2026-05-22T09:08:20.7970000Z"}' headers: Cache-Control: - no-cache @@ -667,7 +616,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:29:15 GMT + - Fri, 22 May 2026 09:08:32 GMT Expires: - '-1' Pragma: @@ -697,14 +646,14 @@ 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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/F32F74CC-2D09-446D-8C6A-F0642BCC4B4B?api-version=2022-07-01-preview&t=639052901228099520&c=MIIHyTCCBrGgAwIBAgITfAlk8Mi06a8UhnP99gAACWTwyDANBgkqhkiG9w0BAQsFADBEMRMwEQYKCZImiZPyLGQBGRYDR0JMMRMwEQYKCZImiZPyLGQBGRYDQU1FMRgwFgYDVQQDEw9BTUUgSW5mcmEgQ0EgMDUwHhcNMjUxMDI0MTcxMjQwWhcNMjYwNDIyMTcxMjQwWjBAMT4wPAYDVQQDEzVhc3luY29wZXJhdGlvbnNpZ25pbmdjZXJ0aWZpY2F0ZS5tYW5hZ2VtZW50LmF6dXJlLmNvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALcUPUGgVHqFnr2lKrLUM330FRAEoBYLCPB4YAq-pwWa9yfwpBV5sY_mFLbBUr3x7rICcv9Hc0-xqNB8ek2clzLoKnUNgng6GScC3SovkX1ef7RjqpXqV0ikigzDum4gusImV2LK8d_-RiKP5rKXq8O5MacwwEOJqK_UaTb01WXBrjNWDPfDF9vIuuKi7Wi8-J_PLgu6Ja2U0lAGbs2wPVHEfYdWzpqeHw_xPBs6WzEu2WOszALiZCx__NLAFY9pvE8BBP3WJc9k8GjUkTTTNvj-wHpEtP6iR0ViGH71AjAuWF8RZ3BRd3Gelm7CIS0FyMBJKNXcd5Dtr_NblqXTZJkCAwEAAaOCBLYwggSyMCcGCSsGAQQBgjcVCgQaMBgwCgYIKwYBBQUHAwEwCgYIKwYBBQUHAwIwPQYJKwYBBAGCNxUHBDAwLgYmKwYBBAGCNxUIhpDjDYTVtHiE8Ys-hZvdFs6dEoFghfmRS4WsmTQCAWQCAQcwggHLBggrBgEFBQcBAQSCAb0wggG5MGMGCCsGAQUFBzAChldodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vcGtpaW5mcmEvQ2VydHMvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmwxLmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MFMGCCsGAQUFBzAChkdodHRwOi8vY3JsMi5hbWUuZ2JsL2FpYS9DTzFQS0lJTlRDQTAxLkFNRS5HQkxfQU1FJTIwSW5mcmElMjBDQSUyMDA1LmNydDBTBggrBgEFBQcwAoZHaHR0cDovL2NybDMuYW1lLmdibC9haWEvQ08xUEtJSU5UQ0EwMS5BTUUuR0JMX0FNRSUyMEluZnJhJTIwQ0ElMjAwNS5jcnQwUwYIKwYBBQUHMAKGR2h0dHA6Ly9jcmw0LmFtZS5nYmwvYWlhL0NPMVBLSUlOVENBMDEuQU1FLkdCTF9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3J0MB0GA1UdDgQWBBSBfHSBm-qJF1D6xjuMRc12RfznPDAOBgNVHQ8BAf8EBAMCBaAwQAYDVR0RBDkwN4I1YXN5bmNvcGVyYXRpb25zaWduaW5nY2VydGlmaWNhdGUubWFuYWdlbWVudC5henVyZS5jb20wggEmBgNVHR8EggEdMIIBGTCCARWgggERoIIBDYY_aHR0cDovL2NybC5taWNyb3NvZnQuY29tL3BraWluZnJhL0NSTC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMS5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMi5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsMy5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JshjFodHRwOi8vY3JsNC5hbWUuZ2JsL2NybC9BTUUlMjBJbmZyYSUyMENBJTIwMDUuY3JsMIGdBgNVHSAEgZUwgZIwDAYKKwYBBAGCN3sBATBmBgorBgEEAYI3ewICMFgwVgYIKwYBBQUHAgIwSh5IADMAMwBlADAAMQA5ADIAMQAtADQAZAA2ADQALQA0AGYAOABjAC0AYQAwADUANQAtADUAYgBkAGEAZgBmAGQANQBlADMAMwBkMAwGCisGAQQBgjd7AwIwDAYKKwYBBAGCN3sEAjAfBgNVHSMEGDAWgBR61hmFKHlscXYeYPjzS--iBUIWHTAdBgNVHSUEFjAUBggrBgEFBQcDAQYIKwYBBQUHAwIwDQYJKoZIhvcNAQELBQADggEBAFSWa-W1M9A0J_kS6Wn7anvvIX6lu8ivCR7xG4Aulce-HuWKEU4N5dH2Qbed1N7HF9bSpH9hD2eRQLSDTKq8wqHhS-l4SOucgl4U_KqWyxtVK9jm4dtBETj8V5tJTUqgnOJE_hssHkBRu7Vmx-1hx4AqPYgfz1w6sL5oFxxprVrfE6XfGgqUCnrTwpSDlh3MvgiOCZj-DWDstxGmz83hsTvbBKCAG0qE_5MlaktX_0Za1dQmaAvqTk8lspoFwZeTvgTaYcQjlZwvyx77omDT8rBsJbMHGzxKAKocA4aKSsP7dO1yYGIM2SlGKSlO7y7y2MxVyhAErh_rhcrWu5jTa6M&s=tWqMxPrYehCJR9jkqp9f_C3ygIX7BrR4RM3rdEw3C-I5DpChSF-0WAo_QsRroWxgXhomCakJ0EnS2x9pgp-AdMT-WeMPiaSQrDGx3Eu5D4snpiN8eN33z8m0TuPKDUQeoaqeXG0ULOW-vMfxdSDMlhbyeGC756r5Egm8MGBR1wcra0vRR5ywJ3hsvtoKQmK3E21Zw9GEjL7iWmsBK8JLCiQD4m1bzHrsG7yk1TwBpu3bfoAqk3knNcxCPUaG3dIGPM5-x_aj0V4SpDwS-a4ud_JiicTXB640nFyFB9y6flUVXSyo53wxogR-uodC4bF5gCIftUnwQPoDHkecB7HFvg&h=9m_C7TyY3kMQAjwbioRmvIi_kHetQFRMFenrBaF9qX0 + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/15ACA3DA-DFDB-48BB-B382-F2ECEA3011B3?api-version=2022-07-01-preview&t=639150377014010192&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=Q1iji0vkxhxs46bib-WZh2I15mJTG2LpIP4n20Sd2DOOsN0s4LFQFCoCFTzGundjYgTEoIknhShhkixUYNy-xuChB97iVz2Gb4yt0ISXfCzXq0DIIdcOHTZRHF5W0EIwEW4YWM5ZEukVRVxoAGhtq5wlcxcS7QmdIDjT_lsWkbjW7X2UzwlApd2CJjDcCTC1UKkwB0rH7Jfimbt4t8lkHt0po0wd0VF8222ILIrjhHBMNVMQOVT4whWj8DPb1E__SSUtZRbX3a5qH1krqJz1-C1y4qwHLDqWCyL4AuNY9b7kS3RuWOT_In_9ZFJ1bd8-AZJvKz_vsu-nr5IP7O-r3Q&h=7Lwj6Bi-TTDAaLJ8cIr4cwLGE2-IbjrBfCIEbfRFiaU response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/F32F74CC-2D09-446D-8C6A-F0642BCC4B4B", - "name": "F32F74CC-2D09-446D-8C6A-F0642BCC4B4B", "status": "Succeeded", "startTime": - "2026-01-29T13:28:42.1270000Z", "endTime": "2026-01-29T13:29:18.4900000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/15ACA3DA-DFDB-48BB-B382-F2ECEA3011B3", + "name": "15ACA3DA-DFDB-48BB-B382-F2ECEA3011B3", "status": "Succeeded", "startTime": + "2026-05-22T09:08:20.7970000Z", "endTime": "2026-05-22T09:08:37.0900000Z"}' headers: Cache-Control: - no-cache @@ -715,7 +664,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:29:27 GMT + - Fri, 22 May 2026 09:08:43 GMT Expires: - '-1' Pragma: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_capacity_success[sku.name-F4].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_capacity_success[sku.name-F4].yaml index e9cd2ed01..ceea60bbf 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_capacity_success[sku.name-F4].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_capacity_success[sku.name-F4].yaml @@ -27,15 +27,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '426' + - '425' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:17:19 GMT + - Fri, 22 May 2026 09:08:46 GMT Pragma: - no-cache RequestId: - - 48cab54a-4bf1-4d4f-b094-abb934269999 + - 04e16c05-a5db-4fea-bbc1-1f9c9318a066 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -75,7 +75,7 @@ interactions: "westeurope", "sku": {"name": "F2", "tier": "Fabric"}}' headers: Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/5D4629C5-C7E1-4706-8E3D-54B41706DCCA?api-version=2022-07-01-preview&t=639150346463949123&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=U-niZUVqBzual-zrValLkELhdwChAt-ickncvEvNg-5mM8CqaIQ1l9AWByihGKKPp3k5GHhUfrGuq90UgDNxv8JsZSkyW5kxi4gendDALKFPOQ0Ll3KMr2sbPgx_CWGIcgEKNE0KGzO1PF0Yv9mjQFuSI4SmieeNps9MJo3k2B-K4i8CBHJfNLOEzBmK2TBZ9AtPBQu3u8yCRVAALhU7Ao1kXAHSnxig5b6El0a87AGzuIWKgrAsgN61bRvvwIBJp1P1AgLb6OO9eHjLP74dHDyqCH4MC3wVBYHBOPwXtgxBan_tvkOTwrwn0o9Xc4q6I9oVPZLu3U1OrvpWFxRd_A&h=2gIuy6oCMLEG1-jhnREM7ydWYwEhCcQUS5DtK64MkFw + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/F3371BDC-42EA-4817-A115-9D8B275418F8?api-version=2022-07-01-preview&t=639150377315527055&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=lfUhxX6FjaTJfrv2QUeVloZ4tdti62VV7Jn690yg_NShf1jegQcdRM7ScDWpMSS4Ex1GdPqZa3gIJX62Sh4eI-WF3pfb90ZHoV7lsgc44ZzTMaL6V_-khT8DA_omrSsQSHo240WQfq7hX_A4kpwpJ9ZsQxtSu8dftUCk0nOMO6WYA7WQ0PBOpU9kQlQUhQkX4rEDQrPQYslru2G9MAp8oqnVsXqxdovvVUVWxo9s5GZDD4BLFcKubIzta9KUFqQxvuujTfR2GVpjKWYdp-1R50cbMrZKPSJ9Cs83ocvtLQzqgJocuPMnaFcm1l1b8tsIoQs2tU5g70861ZPGZAGnMg&h=wQswmt8JRLxvoV4dXGwRRCjn-Yld5F3p5B-kvNfkq1s Cache-Control: - no-cache Content-Length: @@ -85,11 +85,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:17:25 GMT + - Fri, 22 May 2026 09:08:50 GMT Expires: - '-1' Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/5D4629C5-C7E1-4706-8E3D-54B41706DCCA?api-version=2022-07-01-preview&t=639150346464105366&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=QYtm0EJVVpS9HFKjt2wbUN1CsORrKwsMWDAur9wV6oTXuObqDGHDvxJugsFMfUcm7fc_zf8_yuAg-MB0vzEunYBMzSFDUZPj1hvwf6wEquOt1iGYbC7K0TWqXRfuCFRfjfckyoBIW7EctjAta3DqPxbGJ8GNDgejjfAkvqyg8YxSgw6mFDUOFHo1u5l7CSe0SSCNmYAjd8wBEC5tDKFhQUmybcnCVFfPPAvQauS-gxp__bJpzmJf_8Drmot4ClcF7Y6Wsie9kH3BcEtwonz5oxoKwgwJzpIIvNdZ8A2tmf7afojeXC7YuMnDUSwowWbyazdnMHVnqw5gM5qGJuEe-g&h=HZV1LxB9-QBtgie09FaBTCVtFOG7gjLaKtwirOm3s2Y + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/F3371BDC-42EA-4817-A115-9D8B275418F8?api-version=2022-07-01-preview&t=639150377315683285&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=aDN5QRrP4hmEya_F0fuwaLDQxqOqOcQC9uL3M1nK_G0YAPSz0RLgnBFU3qidhYN0A9ju0w89yNLl-eEtVuEvzO1YtA-urvM-HnxutUi_NjFxkIoKQZ-Fh9kUxmKPtHPl70kl6t8s1ZQev5orKRvPuOKvAsXREv57L2VC4A5YG5zBttBHd8ewGreBfax8uBvYuivg8kLI0kGOA3m7JDTGLRxgiVvlZticwaXGGVp5VvnFXfdgtZL3sSC9NSWclA9Wfcp4Sk8YFS8Ycq_KF1gUI0f95Ug1_f7sQBInsimk5J468hGkXb21b3C_P2_mL8EKMGSpFfLYvxjDctu2IuGxdg&h=yt8S_tOE3Do_2_uFPEDJXuR8b7R2WfUwHTdmAF74Bgo Pragma: - no-cache Strict-Transport-Security: @@ -119,12 +119,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/5D4629C5-C7E1-4706-8E3D-54B41706DCCA?api-version=2022-07-01-preview&t=639150346463949123&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=U-niZUVqBzual-zrValLkELhdwChAt-ickncvEvNg-5mM8CqaIQ1l9AWByihGKKPp3k5GHhUfrGuq90UgDNxv8JsZSkyW5kxi4gendDALKFPOQ0Ll3KMr2sbPgx_CWGIcgEKNE0KGzO1PF0Yv9mjQFuSI4SmieeNps9MJo3k2B-K4i8CBHJfNLOEzBmK2TBZ9AtPBQu3u8yCRVAALhU7Ao1kXAHSnxig5b6El0a87AGzuIWKgrAsgN61bRvvwIBJp1P1AgLb6OO9eHjLP74dHDyqCH4MC3wVBYHBOPwXtgxBan_tvkOTwrwn0o9Xc4q6I9oVPZLu3U1OrvpWFxRd_A&h=2gIuy6oCMLEG1-jhnREM7ydWYwEhCcQUS5DtK64MkFw + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/F3371BDC-42EA-4817-A115-9D8B275418F8?api-version=2022-07-01-preview&t=639150377315527055&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=lfUhxX6FjaTJfrv2QUeVloZ4tdti62VV7Jn690yg_NShf1jegQcdRM7ScDWpMSS4Ex1GdPqZa3gIJX62Sh4eI-WF3pfb90ZHoV7lsgc44ZzTMaL6V_-khT8DA_omrSsQSHo240WQfq7hX_A4kpwpJ9ZsQxtSu8dftUCk0nOMO6WYA7WQ0PBOpU9kQlQUhQkX4rEDQrPQYslru2G9MAp8oqnVsXqxdovvVUVWxo9s5GZDD4BLFcKubIzta9KUFqQxvuujTfR2GVpjKWYdp-1R50cbMrZKPSJ9Cs83ocvtLQzqgJocuPMnaFcm1l1b8tsIoQs2tU5g70861ZPGZAGnMg&h=wQswmt8JRLxvoV4dXGwRRCjn-Yld5F3p5B-kvNfkq1s response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/5D4629C5-C7E1-4706-8E3D-54B41706DCCA", - "name": "5D4629C5-C7E1-4706-8E3D-54B41706DCCA", "status": "Succeeded", "startTime": - "2026-05-22T08:17:25.1930000Z", "endTime": "2026-05-22T08:17:28.8000000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/F3371BDC-42EA-4817-A115-9D8B275418F8", + "name": "F3371BDC-42EA-4817-A115-9D8B275418F8", "status": "Succeeded", "startTime": + "2026-05-22T09:08:50.3900000Z", "endTime": "2026-05-22T09:08:58.7670000Z"}' headers: Cache-Control: - no-cache @@ -135,7 +135,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:17:37 GMT + - Fri, 22 May 2026 09:09:02 GMT Expires: - '-1' Pragma: @@ -172,7 +172,7 @@ interactions: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": - "Active"}, {"id": "6ec5a623-5509-43a0-8df2-ee51fda656f7", "displayName": "fabcli000001", + "Active"}, {"id": "8f36a66b-8f4b-47d5-ba81-e99bd549e499", "displayName": "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -182,15 +182,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '459' + - '461' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:17:42 GMT + - Fri, 22 May 2026 09:09:06 GMT Pragma: - no-cache RequestId: - - 44bfb8fb-0ca7-4d09-83ed-591aff5a280f + - 479b954c-d81c-4105-9464-5010e22864fe Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -221,10 +221,10 @@ interactions: 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"}, {"id": "6ec5a623-5509-43a0-8df2-ee51fda656f7", "displayName": "fabcli000001", - "sku": "F2", "region": "West Europe", "state": "Active"}]}' + string: '{"value": [{"id": "8f36a66b-8f4b-47d5-ba81-e99bd549e499", "displayName": + "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}, + {"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", + "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -233,15 +233,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '458' + - '459' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:17:46 GMT + - Fri, 22 May 2026 09:09:10 GMT Pragma: - no-cache RequestId: - - 904de633-f8d3-44c9-b5da-0d7bba766c20 + - 9817f879-a8ea-4354-93b5-7a295551d969 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -272,10 +272,10 @@ interactions: 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"}, {"id": "6ec5a623-5509-43a0-8df2-ee51fda656f7", "displayName": "fabcli000001", - "sku": "F2", "region": "West Europe", "state": "Active"}]}' + string: '{"value": [{"id": "8f36a66b-8f4b-47d5-ba81-e99bd549e499", "displayName": + "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}, + {"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", + "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -284,15 +284,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '459' + - '458' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:17:49 GMT + - Fri, 22 May 2026 09:09:14 GMT Pragma: - no-cache RequestId: - - abb63cbd-6566-46d5-97ef-49b5ffbdf970 + - ee2c2aaa-afdd-4552-b00b-00154bbef171 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -337,7 +337,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:17:50 GMT + - Fri, 22 May 2026 09:09:14 GMT Expires: - '-1' Pragma: @@ -372,10 +372,10 @@ interactions: uri: https://api.fabric.microsoft.com/v1/capacities response: body: - string: '{"value": [{"id": "6ec5a623-5509-43a0-8df2-ee51fda656f7", "displayName": - "fabcli000001", "sku": "F2", "region": "West Europe", "state": "Active"}, - {"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", - "sku": "F16", "region": "Central US", "state": "Active"}]}' + string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": + "Active"}, {"id": "8f36a66b-8f4b-47d5-ba81-e99bd549e499", "displayName": "fabcli000001", + "sku": "F2", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -384,15 +384,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '459' + - '461' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:17:54 GMT + - Fri, 22 May 2026 09:09:19 GMT Pragma: - no-cache RequestId: - - 36fe99e3-7103-4a60-a3de-3dc9dfd48c2c + - 45523e06-4055-436b-a331-4384012c892f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -437,7 +437,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:17:55 GMT + - Fri, 22 May 2026 09:09:20 GMT Expires: - '-1' Pragma: @@ -486,7 +486,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:17:55 GMT + - Fri, 22 May 2026 09:09:20 GMT Expires: - '-1' Pragma: @@ -530,7 +530,7 @@ interactions: {}}' headers: Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/B4FFF6A7-E1CC-4075-AFA5-C2CDD439913A?api-version=2022-07-01-preview&t=639150346780020009&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=VoSaLg5UyAaZFa40pFSML272RIxXWBi90tAqt7i3RlITx71ioCBJZWO2iogQUrQLr_5EiJYDbdkWkBWnkpVFFTLtv0fGiXFL-0VSaK8O8Xr2wYASPinc84cgoQO-K-1KFRKyeCK_cEduu2ga9UIWxcWzML2fGbLUbb-g4lBRvrofnlIKMV0F8y7WRWJTdpB8TarQTPZ0bUXqtiMe2tPBiw8oTpB-bQuuwN0yf7cOdcF1_GidetgNXP_ITUKpib50deV94OtxacLwq2qo2TYPNq-qbwJPfZH1kxJg8iRhHKumCBOoPGVQkF5Bf4Vk0SSUp8-qfJxXqPfl9HeJQdqR6g&h=0li3fI5XQZneFAdJnC5L7wsoTfQI5vSR6q6YbtIZWBI + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/624E2837-17E0-4558-B2EC-6760DA4C2DC5?api-version=2022-07-01-preview&t=639150377631435058&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=gaD-gaj6kYgnmdSLh5a9ZSZKFDFoi-6T7VOCi_WlT2ryVy3St0yuWoUnJbKbbzPq7h4IiP5HepL64cHi2nTVMGNo4ubyWEs21BK5X6F0cJlG2WpAHs_fjaUE2tXBgoxCf_-sS4rJDQl31ovmR2h3wS23hY4SIC5-z_Db1WrsgAe2Z16-GxgfYMf-S0RlKtbrxMrT0OIW8ETFhAYAUqEOpVX5SgXVHxdVFzEfcWG3kR-guJHJTBFkhatzCDxfCdcjIZtOqShHFasKv1Xs12MGBMC6ESsrjFqc0ujsMbUVx-8xzMAVzkRmve-xRfdGkjummC8i9GGRzn8U5YjgAL61cw&h=Jw8QhuGfZit7Cm21vWqBL4N5YseS78ou8MQe1HhwTfU Cache-Control: - no-cache Content-Length: @@ -540,11 +540,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:17:57 GMT + - Fri, 22 May 2026 09:09:23 GMT Expires: - '-1' Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/B4FFF6A7-E1CC-4075-AFA5-C2CDD439913A?api-version=2022-07-01-preview&t=639150346780020009&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=OBqnQhwmMbr6wcZlLc5TCDDvAigV-Y8Te84kj9vKIcfdVdmW28gf_iunV1-A8QLZLNTHLqM83ILG65X6On5hqqWW-g-wheRb9QNUhbIFMb3nJ5JN8aKa2QgPf8vV6zd4IN9OyJYKfniVIXbgfGWyMQgUWSjYl7PtVIJw8aKisO_FFBLi6iNaJNArcaJAwqysQwpe2jMsuviqxTS4hWOajk47wQ71oRT597zcpHp-dnd1C5aGCgH-QKYbdt0TEuMbwzUQ-zeOsoEWzRkaKHo7Om_Q09yRpmA7eGvWuU2Ut8H5KmdFK19zZNdH1waJRbws5dZKpRVLrzi6vsrPSavWKw&h=AYzhOlQ6ashKo2hE1nrxQQX8pNRMOl6Xl_zF7RhAuXE + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/624E2837-17E0-4558-B2EC-6760DA4C2DC5?api-version=2022-07-01-preview&t=639150377631435058&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=iIkn9NMj53z3rlOS7bJCRew_f6morKXK1DiuUSI7l_xKkZIagR49xPbt6TcZQuli6gr-fKgvmTVEcMjjCAENcyjBcJ6wA6HRkLTxuxSWTHEwqs2KYckaaOzbITMFpFf_otci2Y0L--YKqpLYbim-xjwnqwLDuxKnvJT6V73xVOP1P90X07nOLF-ECBC0zlV4N1vq3NE9s2btkyKw9tkK2fu5Pq3w5hkdOkxO6ZlMQN9ip_fqpStW3pyzuMq9Zys12BlP7RIE-Jcn1fSvKwUyhiahfOYQA4IPjw1YuR65UOKtojF9VJTSAt7fr2aWRYQkb7AkZyCOkkk0UD1a0XBDYA&h=NPc6Mhsl8HR1jZ4-bPCGGO6HFppMQTNnVgE8K87s64c Pragma: - no-cache Strict-Transport-Security: @@ -574,12 +574,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/B4FFF6A7-E1CC-4075-AFA5-C2CDD439913A?api-version=2022-07-01-preview&t=639150346780020009&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=VoSaLg5UyAaZFa40pFSML272RIxXWBi90tAqt7i3RlITx71ioCBJZWO2iogQUrQLr_5EiJYDbdkWkBWnkpVFFTLtv0fGiXFL-0VSaK8O8Xr2wYASPinc84cgoQO-K-1KFRKyeCK_cEduu2ga9UIWxcWzML2fGbLUbb-g4lBRvrofnlIKMV0F8y7WRWJTdpB8TarQTPZ0bUXqtiMe2tPBiw8oTpB-bQuuwN0yf7cOdcF1_GidetgNXP_ITUKpib50deV94OtxacLwq2qo2TYPNq-qbwJPfZH1kxJg8iRhHKumCBOoPGVQkF5Bf4Vk0SSUp8-qfJxXqPfl9HeJQdqR6g&h=0li3fI5XQZneFAdJnC5L7wsoTfQI5vSR6q6YbtIZWBI + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/624E2837-17E0-4558-B2EC-6760DA4C2DC5?api-version=2022-07-01-preview&t=639150377631435058&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=gaD-gaj6kYgnmdSLh5a9ZSZKFDFoi-6T7VOCi_WlT2ryVy3St0yuWoUnJbKbbzPq7h4IiP5HepL64cHi2nTVMGNo4ubyWEs21BK5X6F0cJlG2WpAHs_fjaUE2tXBgoxCf_-sS4rJDQl31ovmR2h3wS23hY4SIC5-z_Db1WrsgAe2Z16-GxgfYMf-S0RlKtbrxMrT0OIW8ETFhAYAUqEOpVX5SgXVHxdVFzEfcWG3kR-guJHJTBFkhatzCDxfCdcjIZtOqShHFasKv1Xs12MGBMC6ESsrjFqc0ujsMbUVx-8xzMAVzkRmve-xRfdGkjummC8i9GGRzn8U5YjgAL61cw&h=Jw8QhuGfZit7Cm21vWqBL4N5YseS78ou8MQe1HhwTfU response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/B4FFF6A7-E1CC-4075-AFA5-C2CDD439913A", - "name": "B4FFF6A7-E1CC-4075-AFA5-C2CDD439913A", "status": "Succeeded", "startTime": - "2026-05-22T08:17:57.3630000Z", "endTime": "2026-05-22T08:17:58.0400000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/624E2837-17E0-4558-B2EC-6760DA4C2DC5", + "name": "624E2837-17E0-4558-B2EC-6760DA4C2DC5", "status": "Succeeded", "startTime": + "2026-05-22T09:09:22.4670000Z", "endTime": "2026-05-22T09:09:26.9830000Z"}' headers: Cache-Control: - no-cache @@ -590,7 +590,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:18:08 GMT + - Fri, 22 May 2026 09:09:33 GMT Expires: - '-1' Pragma: @@ -627,7 +627,7 @@ interactions: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": - "Active"}, {"id": "6ec5a623-5509-43a0-8df2-ee51fda656f7", "displayName": "fabcli000001", + "Active"}, {"id": "8f36a66b-8f4b-47d5-ba81-e99bd549e499", "displayName": "fabcli000001", "sku": "F4", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -637,15 +637,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '461' + - '462' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:18:12 GMT + - Fri, 22 May 2026 09:09:36 GMT Pragma: - no-cache RequestId: - - deba4af2-3266-44b1-9c02-8e68d028871a + - ba18abd6-a177-46a0-a9a1-a2457cb691c3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -678,7 +678,7 @@ interactions: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": - "Active"}, {"id": "6ec5a623-5509-43a0-8df2-ee51fda656f7", "displayName": "fabcli000001", + "Active"}, {"id": "8f36a66b-8f4b-47d5-ba81-e99bd549e499", "displayName": "fabcli000001", "sku": "F4", "region": "West Europe", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -688,15 +688,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '461' + - '462' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:18:16 GMT + - Fri, 22 May 2026 09:09:42 GMT Pragma: - no-cache RequestId: - - 0120d1d6-a1f5-449c-8e2e-91d4261b24a9 + - aafe901e-099c-4996-9cef-ed5568173a4d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -741,7 +741,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:18:18 GMT + - Fri, 22 May 2026 09:09:43 GMT Expires: - '-1' Pragma: @@ -790,7 +790,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:18:19 GMT + - Fri, 22 May 2026 09:09:44 GMT Expires: - '-1' Pragma: @@ -825,10 +825,10 @@ interactions: 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"}, {"id": "6ec5a623-5509-43a0-8df2-ee51fda656f7", "displayName": "fabcli000001", - "sku": "F4", "region": "West Europe", "state": "Active"}]}' + string: '{"value": [{"id": "8f36a66b-8f4b-47d5-ba81-e99bd549e499", "displayName": + "fabcli000001", "sku": "F4", "region": "West Europe", "state": "Active"}, + {"id": "00000000-0000-0000-0000-000000000004", "displayName": "mocked_fabriccli_capacity_name", + "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -837,15 +837,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '461' + - '460' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:18:24 GMT + - Fri, 22 May 2026 09:09:49 GMT Pragma: - no-cache RequestId: - - 975283a7-f96e-4827-ba92-d2342b3bb580 + - fa8953a9-d82e-408e-874d-5f1c5a9d863e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -886,7 +886,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:18:25 GMT + - Fri, 22 May 2026 09:09:50 GMT Expires: - '-1' Pragma: @@ -927,7 +927,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:18:26 GMT + - Fri, 22 May 2026 09:09:50 GMT Expires: - '-1' Pragma: @@ -975,7 +975,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:18:26 GMT + - Fri, 22 May 2026 09:09:51 GMT Expires: - '-1' Pragma: @@ -1011,7 +1011,7 @@ interactions: string: '' headers: Azure-AsyncOperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/25FCDFC7-B3A8-46B2-ADD9-39AA86F98179?api-version=2022-07-01-preview&t=639150347089852012&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=gEtyf3yAUpShxegSjpOgceD5pIK-hwq-TXDM7a9vywIHosoy4h2f8S_dmQVwpDcgKTiM2tpDiqvwWNOd660nEb6rhrxVpAYRhqo4NUcpJp57vFqmnXJenUNxH09rY2urjB9sowY_OzMlqWbRtGI8Je-AZIPpNbF3WwzaMpl5ClPlzlbph76TeAivHQRQw6tLIzjrZ0grtcOO_oW-dqkHf-bpVoJE1zEM0H7UF4KagZkU-4PXqipjchGIYVp-n1WgbCGWIfQlhZyjw6bFG4kyJWi2PryC7nfJiCC83h6Ba2xWGXLgmu5qsSp3Adg2-Q9qY61MW9leX4ABEZUzT8Ah6g&h=abogF3ZbuJsVA9SQz8puLnOfgdswXZbpVRpoLAwHu2c + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/C9A468E8-6B5E-44EA-B3D5-F7E35ED83E2A?api-version=2022-07-01-preview&t=639150377935588816&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=f-lisdW6mgA8aiYZ9thB4h3-I4TgM9UPhv_aUXmV-zuoj_yk8C7e5MIdVpd9pZfRDwDFibTpknPbaA6LGJWFmen_tQFKEDfsgfK32T62leBiDBHsQY6zHjTaj517Z3hr0lBe0JItHrg0XL7a3vdHdSOQOpYx_xq8aVioq8GK4oeoo53yeorRjAl5Chgugesdxbc86J4Qwbk3xjU2ZAQOSg6ojvXl8GO6oiIhkgvne7Dsi-sRW5EFoUEomoosudtN90qNSRLvtsRZgg5DwmbfaJh0gqDuuBWiEvyg7e-RX9Fp2XZpapZi1t0rSCW6iNQq5q6SvT5UEZwZEHZQd1gxsQ&h=HDES6nSvZE3YyH1bGeQsGGPDQXFRCdBTxaCqdmAls5c Cache-Control: - no-cache Content-Length: @@ -1019,11 +1019,11 @@ interactions: Content-Security-Policy: - script-src 'self' Date: - - Fri, 22 May 2026 08:18:28 GMT + - Fri, 22 May 2026 09:09:52 GMT Expires: - '-1' Location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/25FCDFC7-B3A8-46B2-ADD9-39AA86F98179?api-version=2022-07-01-preview&t=639150347089852012&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=d-vmbJnwAjZwnypgQYxg84gLSP0u8SiJ3V8-pCg3wMQsW3vXMWx3k4P2OE2O93BmT7UkxglxxzTOM7-HgqvzzgrNl5ORSqKuzJ2RFd2wmzP5pOza7c2OSGgMAEGFKxdcg3azFoeWwDjKFkpWPw2OG05u-lCZtpl6k9C6pMibVsqDW7hm_mk9poSkd93KHmHuuA5LFIWAOeMfpB_QihfrF9uNdh2udfJdM7_5y23e8C9407b61f6cW6OZWEUFHgAq5fyDwkiH9gUGMdV4DnMrL-oQzqcuWr_8Qx__Uil9HG1mdVUX1WA3rYqnqHV8POl3UxS5dG7uG7wnKTn30tzkZA&h=RQlgPwMNgYTEjwK3rXwLd5evYHyiekDGuYLw-Nx_4K0 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationresults/C9A468E8-6B5E-44EA-B3D5-F7E35ED83E2A?api-version=2022-07-01-preview&t=639150377935745080&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=rJMp3jxfbZ0OuAIv2sQloHZR05mHQWHM_KneJimKF8vxDdlDiKFQFCD4CPx6iXH1jd_hJXBwsDD_RNE7-DUAlV2UtGPNoDpep9B2hq3oqClViclzuV0412syN499TShTAAK0POgqPQM4wv6cpxdTz7gBpn2Dv5hewh_UircTyFwj_lR2KlSoboHp8RHa5UW_mltvH6RxkkVFX9I8BFpPddr-EPC7CfDHuT4krgADWe3bcDnI8f3su5LX836AdJYjxCQk5HUXUjIyaSaFzWzm5nZ2N2WiC9XxygmDzA6bZlbETHSwE9faY7gRjok4NNuGJWLv5qfPmt6PQFZjb8FYkg&h=75WOcyq-GuQPv7suk-tCGz0waVcLxA0qvG3teljlNgU Pragma: - no-cache Strict-Transport-Security: @@ -1053,60 +1053,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/25FCDFC7-B3A8-46B2-ADD9-39AA86F98179?api-version=2022-07-01-preview&t=639150347089852012&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=gEtyf3yAUpShxegSjpOgceD5pIK-hwq-TXDM7a9vywIHosoy4h2f8S_dmQVwpDcgKTiM2tpDiqvwWNOd660nEb6rhrxVpAYRhqo4NUcpJp57vFqmnXJenUNxH09rY2urjB9sowY_OzMlqWbRtGI8Je-AZIPpNbF3WwzaMpl5ClPlzlbph76TeAivHQRQw6tLIzjrZ0grtcOO_oW-dqkHf-bpVoJE1zEM0H7UF4KagZkU-4PXqipjchGIYVp-n1WgbCGWIfQlhZyjw6bFG4kyJWi2PryC7nfJiCC83h6Ba2xWGXLgmu5qsSp3Adg2-Q9qY61MW9leX4ABEZUzT8Ah6g&h=abogF3ZbuJsVA9SQz8puLnOfgdswXZbpVRpoLAwHu2c - response: - body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/25FCDFC7-B3A8-46B2-ADD9-39AA86F98179", - "name": "25FCDFC7-B3A8-46B2-ADD9-39AA86F98179", "status": "Deleting", "startTime": - "2026-05-22T08:18:28.3970000Z"}' - headers: - Cache-Control: - - no-cache - Content-Length: - - '245' - Content-Security-Policy: - - script-src 'self' - Content-Type: - - application/json; charset=utf-8 - Date: - - Fri, 22 May 2026 08:18:39 GMT - Expires: - - '-1' - Pragma: - - no-cache - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Cache: - - CONFIG_NOCACHE - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - X-XSS-Protection: - - 1; mode=block - status: - code: 200 - message: 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://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/25FCDFC7-B3A8-46B2-ADD9-39AA86F98179?api-version=2022-07-01-preview&t=639150347089852012&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=gEtyf3yAUpShxegSjpOgceD5pIK-hwq-TXDM7a9vywIHosoy4h2f8S_dmQVwpDcgKTiM2tpDiqvwWNOd660nEb6rhrxVpAYRhqo4NUcpJp57vFqmnXJenUNxH09rY2urjB9sowY_OzMlqWbRtGI8Je-AZIPpNbF3WwzaMpl5ClPlzlbph76TeAivHQRQw6tLIzjrZ0grtcOO_oW-dqkHf-bpVoJE1zEM0H7UF4KagZkU-4PXqipjchGIYVp-n1WgbCGWIfQlhZyjw6bFG4kyJWi2PryC7nfJiCC83h6Ba2xWGXLgmu5qsSp3Adg2-Q9qY61MW9leX4ABEZUzT8Ah6g&h=abogF3ZbuJsVA9SQz8puLnOfgdswXZbpVRpoLAwHu2c + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/C9A468E8-6B5E-44EA-B3D5-F7E35ED83E2A?api-version=2022-07-01-preview&t=639150377935588816&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=f-lisdW6mgA8aiYZ9thB4h3-I4TgM9UPhv_aUXmV-zuoj_yk8C7e5MIdVpd9pZfRDwDFibTpknPbaA6LGJWFmen_tQFKEDfsgfK32T62leBiDBHsQY6zHjTaj517Z3hr0lBe0JItHrg0XL7a3vdHdSOQOpYx_xq8aVioq8GK4oeoo53yeorRjAl5Chgugesdxbc86J4Qwbk3xjU2ZAQOSg6ojvXl8GO6oiIhkgvne7Dsi-sRW5EFoUEomoosudtN90qNSRLvtsRZgg5DwmbfaJh0gqDuuBWiEvyg7e-RX9Fp2XZpapZi1t0rSCW6iNQq5q6SvT5UEZwZEHZQd1gxsQ&h=HDES6nSvZE3YyH1bGeQsGGPDQXFRCdBTxaCqdmAls5c response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/25FCDFC7-B3A8-46B2-ADD9-39AA86F98179", - "name": "25FCDFC7-B3A8-46B2-ADD9-39AA86F98179", "status": "Deleting", "startTime": - "2026-05-22T08:18:28.3970000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/C9A468E8-6B5E-44EA-B3D5-F7E35ED83E2A", + "name": "C9A468E8-6B5E-44EA-B3D5-F7E35ED83E2A", "status": "Deleting", "startTime": + "2026-05-22T09:09:52.9030000Z"}' headers: Cache-Control: - no-cache @@ -1117,7 +1069,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:18:50 GMT + - Fri, 22 May 2026 09:10:04 GMT Expires: - '-1' Pragma: @@ -1149,12 +1101,12 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/25FCDFC7-B3A8-46B2-ADD9-39AA86F98179?api-version=2022-07-01-preview&t=639150347089852012&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=gEtyf3yAUpShxegSjpOgceD5pIK-hwq-TXDM7a9vywIHosoy4h2f8S_dmQVwpDcgKTiM2tpDiqvwWNOd660nEb6rhrxVpAYRhqo4NUcpJp57vFqmnXJenUNxH09rY2urjB9sowY_OzMlqWbRtGI8Je-AZIPpNbF3WwzaMpl5ClPlzlbph76TeAivHQRQw6tLIzjrZ0grtcOO_oW-dqkHf-bpVoJE1zEM0H7UF4KagZkU-4PXqipjchGIYVp-n1WgbCGWIfQlhZyjw6bFG4kyJWi2PryC7nfJiCC83h6Ba2xWGXLgmu5qsSp3Adg2-Q9qY61MW9leX4ABEZUzT8Ah6g&h=abogF3ZbuJsVA9SQz8puLnOfgdswXZbpVRpoLAwHu2c + uri: https://management.azure.com//subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Fabric/locations/westeurope/operationstatuses/C9A468E8-6B5E-44EA-B3D5-F7E35ED83E2A?api-version=2022-07-01-preview&t=639150377935588816&c=MIIHlTCCBn2gAwIBAgIRANClaz6RLmreUbR9r6zb9WMwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UEAxMrQ0NNRSBHMSBUTFMgUlNBIDIwNDggU0hBMjU2IDIwNDkgV1VTMiBDQSAwMTAeFw0yNjA0MTAwODE5MzhaFw0yNjEwMDUxNDE5MzhaMEAxPjA8BgNVBAMTNWFzeW5jb3BlcmF0aW9uc2lnbmluZ2NlcnRpZmljYXRlLm1hbmFnZW1lbnQuYXp1cmUuY29tMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA3E1D6z1LouZ_KTbiqwoLegZPXxfJtAxSDEzNd5eYoT9Z0mkVt2msmJzCj13_5ZeNe1Zc3emsD0Nva_lxqQqpnd8AFotdRR7SW2RoZL6e0AggjtVdUxBw3arEEVPONhRCC4X4NVXP3cSjKZjoedb5vjiI7gzkBBWu_gld6jaW4bNj5MMfx0_PNVx65CAOf2YmGYzF7zv4k3cn5-QHu9FINZ2XuhjINP6EvIDSw6H-2qVAnJw-mNb5e2KonH1tYO7nlEsUCon2rz_d7bnJURgwh_6MZ5tSOhlvvnEM1BnC_4jnVBCpBhgt-GLaYNMWZfQnMLxuc13rgCkS5b0JKPbMDQIDAQABo4IEkjCCBI4wgZ0GA1UdIASBlTCBkjAMBgorBgEEAYI3ewEBMGYGCisGAQQBgjd7AgIwWDBWBggrBgEFBQcCAjBKHkgAMwAzAGUAMAAxADkAMgAxAC0ANABkADYANAAtADQAZgA4AGMALQBhADAANQA1AC0ANQBiAGQAYQBmAGYAZAA1AGUAMwAzAGQwDAYKKwYBBAGCN3sDAjAMBgorBgEEAYI3ewQCMAwGA1UdEwEB_wQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMA4GA1UdDwEB_wQEAwIFoDAdBgNVHQ4EFgQUz6DzOu55HJGf5hqPqj6oUQtuHzkwHwYDVR0jBBgwFoAUrONy-gOyc549lcjvh1uu3Ruh7WgwggGyBgNVHR8EggGpMIIBpTBpoGegZYZjaHR0cDovL3ByaW1hcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMGugaaBnhmVodHRwOi8vc2Vjb25kYXJ5LWNkbi5wa2kuY29yZS53aW5kb3dzLm5ldC93ZXN0dXMyL2NybHMvY2NtZXdlc3R1czJwa2kvY2NtZXdlc3R1czJpY2EwMS83OS9jdXJyZW50LmNybDBaoFigVoZUaHR0cDovL2NybC5taWNyb3NvZnQuY29tL3dlc3R1czIvY3Jscy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxLzc5L2N1cnJlbnQuY3JsMG-gbaBrhmlodHRwOi8vY2NtZXdlc3R1czJwa2kud2VzdHVzMi5wa2kuY29yZS53aW5kb3dzLm5ldC9jZXJ0aWZpY2F0ZUF1dGhvcml0aWVzL2NjbWV3ZXN0dXMyaWNhMDEvNzkvY3VycmVudC5jcmwwggG3BggrBgEFBQcBAQSCAakwggGlMGwGCCsGAQUFBzAChmBodHRwOi8vcHJpbWFyeS1jZG4ucGtpLmNvcmUud2luZG93cy5uZXQvd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwbgYIKwYBBQUHMAKGYmh0dHA6Ly9zZWNvbmRhcnktY2RuLnBraS5jb3JlLndpbmRvd3MubmV0L3dlc3R1czIvY2FjZXJ0cy9jY21ld2VzdHVzMnBraS9jY21ld2VzdHVzMmljYTAxL2NlcnQuY2VyMF0GCCsGAQUFBzAChlFodHRwOi8vY3JsLm1pY3Jvc29mdC5jb20vd2VzdHVzMi9jYWNlcnRzL2NjbWV3ZXN0dXMycGtpL2NjbWV3ZXN0dXMyaWNhMDEvY2VydC5jZXIwZgYIKwYBBQUHMAKGWmh0dHA6Ly9jY21ld2VzdHVzMnBraS53ZXN0dXMyLnBraS5jb3JlLndpbmRvd3MubmV0L2NlcnRpZmljYXRlQXV0aG9yaXRpZXMvY2NtZXdlc3R1czJpY2EwMTANBgkqhkiG9w0BAQsFAAOCAQEAnQMBcxghl--qhJL4CBD2951WWIqzswBZahCpYCb1uYtvUonEYArDTouihm73A1IMaA1hcof6i4mp4wlOCbJrwBz1o25Urh_E8AVOA1ylZkmsFxeAwRIXEH-HiAwvFsqrylOhL0jJvIDFa0jzjJTNlv5SkoW9fTaN0E16t8hjXVNvgecuZ56mGRaJku-UCWENmbdnq7Tn6ZMhxkpcUo1uXlbRbIWmSrnwBkZu9y949y3djVawgkZL3OzGb25vkxffx3kdRijKTXY3VNuHj9KRJ2mrrPHhFcw867D13Sc9-DVYBiHYW8bb-kvv1J7UCuJTE1jqyfCNTREat4NXicrPcg&s=f-lisdW6mgA8aiYZ9thB4h3-I4TgM9UPhv_aUXmV-zuoj_yk8C7e5MIdVpd9pZfRDwDFibTpknPbaA6LGJWFmen_tQFKEDfsgfK32T62leBiDBHsQY6zHjTaj517Z3hr0lBe0JItHrg0XL7a3vdHdSOQOpYx_xq8aVioq8GK4oeoo53yeorRjAl5Chgugesdxbc86J4Qwbk3xjU2ZAQOSg6ojvXl8GO6oiIhkgvne7Dsi-sRW5EFoUEomoosudtN90qNSRLvtsRZgg5DwmbfaJh0gqDuuBWiEvyg7e-RX9Fp2XZpapZi1t0rSCW6iNQq5q6SvT5UEZwZEHZQd1gxsQ&h=HDES6nSvZE3YyH1bGeQsGGPDQXFRCdBTxaCqdmAls5c response: body: - string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/25FCDFC7-B3A8-46B2-ADD9-39AA86F98179", - "name": "25FCDFC7-B3A8-46B2-ADD9-39AA86F98179", "status": "Succeeded", "startTime": - "2026-05-22T08:18:28.3970000Z", "endTime": "2026-05-22T08:18:51.7270000Z"}' + string: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/locations/westeurope/operationstatuses/C9A468E8-6B5E-44EA-B3D5-F7E35ED83E2A", + "name": "C9A468E8-6B5E-44EA-B3D5-F7E35ED83E2A", "status": "Succeeded", "startTime": + "2026-05-22T09:09:52.9030000Z", "endTime": "2026-05-22T09:10:08.0500000Z"}' headers: Cache-Control: - no-cache @@ -1165,7 +1117,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:19:01 GMT + - Fri, 22 May 2026 09:10:14 GMT Expires: - '-1' Pragma: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_connection_displayName_success.yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_connection_displayName_success.yaml index 6f39acbf7..2b234a9b2 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_connection_displayName_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_connection_displayName_success.yaml @@ -11,7 +11,7 @@ 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/connections response: @@ -25,15 +25,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '907' + - '1402' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 12:14:52 GMT + - Fri, 22 May 2026 09:17:44 GMT Pragma: - no-cache RequestId: - - a556188b-3c60-41f2-891a-95ef8c6a1db4 + - 124dbaa6-1638-4404-888a-fa4998c97a5f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -59,7 +59,7 @@ 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/connections/supportedConnectionTypes response: @@ -96,6 +96,10 @@ interactions: true, "allowedValues": null}, {"name": "database", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + ["Basic"]}, {"type": "Oracle", "creationMethods": [{"name": "Oracle", "parameters": + [{"name": "server", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["Basic", "OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": ["Basic"]}, {"type": "PostgreSQL", "creationMethods": [{"name": "PostgreSql", "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "database", "dataType": "Text", "required": true, "allowedValues": @@ -151,14 +155,14 @@ interactions: null}, {"type": "GoogleBigQueryAad", "creationMethods": [{"name": "GoogleBigQueryAad.Database", "parameters": [{"name": "billingProject", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "Implementation", "dataType": "Text", - "required": false, "allowedValues": null}, {"name": "UseStorageApi", "dataType": - "Boolean", "required": false, "allowedValues": null}, {"name": "ConnectionTimeout", - "dataType": "Duration", "required": false, "allowedValues": null}, {"name": - "CommandTimeout", "dataType": "Duration", "required": false, "allowedValues": - null}, {"name": "BYOID_AudienceUri", "dataType": "Text", "required": false, - "allowedValues": null}, {"name": "ProjectId", "dataType": "Text", "required": - false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], - "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + "required": false, "allowedValues": [null, "2.0"]}, {"name": "UseStorageApi", + "dataType": "Boolean", "required": false, "allowedValues": null}, {"name": + "ConnectionTimeout", "dataType": "Duration", "required": false, "allowedValues": + null}, {"name": "CommandTimeout", "dataType": "Duration", "required": false, + "allowedValues": null}, {"name": "BYOID_AudienceUri", "dataType": "Text", + "required": false, "allowedValues": null}, {"name": "ProjectId", "dataType": + "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "PowerBI", "creationMethods": [{"name": "PowerBI.Dataflows", "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": @@ -215,17 +219,6 @@ interactions: null}, {"name": "Repository", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "AzureHive", "creationMethods": [{"name": "AzureHiveLLAP.Database", - "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "database", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "ApacheHive", "creationMethods": [{"name": "ApacheHiveLLAP.Database", - "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "database", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "thriftTransport", "dataType": "Number", "required": true, - "allowedValues": ["1", "2"]}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "Impala", "creationMethods": [{"name": "Impala.Database", "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "Implementation", "dataType": "Text", "required": false, "allowedValues": @@ -296,8 +289,9 @@ interactions: "required": false, "allowedValues": null}, {"name": "CommandTimeout", "dataType": "Number", "required": false, "allowedValues": null}, {"name": "Implementation", "dataType": "Text", "required": false, "allowedValues": [null, "2.0"]}]}], - "supportedCredentialTypes": ["Basic", "OAuth2", "KeyPair"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + "supportedCredentialTypes": ["Basic", "OAuth2", "KeyPair", "ServicePrincipal", + "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "Spark", "creationMethods": [{"name": "AzureSpark.Tables", "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "BatchSize", "dataType": "Number", "required": false, "allowedValues": @@ -438,7 +432,7 @@ interactions: null}, {"name": "QueryTags", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "EnableAutomaticProxyDiscovery", "dataType": "Text", "required": false, "allowedValues": ["enabled", "disabled"]}, {"name": "Implementation", - "dataType": "Text", "required": false, "allowedValues": [null, "2.0"]}]}], + "dataType": "Text", "required": false, "allowedValues": ["2.0", null]}]}], "supportedCredentialTypes": ["OAuth2", "Key", "Basic", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": @@ -450,7 +444,7 @@ interactions: null}, {"name": "QueryTags", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "EnableAutomaticProxyDiscovery", "dataType": "Text", "required": false, "allowedValues": ["enabled", "disabled"]}, {"name": "Implementation", - "dataType": "Text", "required": false, "allowedValues": [null, "2.0"]}]}], + "dataType": "Text", "required": false, "allowedValues": ["2.0", null]}]}], "supportedCredentialTypes": ["OAuth2", "Key", "Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "DeltaSharing", "creationMethods": [{"name": "DeltaSharing.Contents", @@ -665,12 +659,9 @@ interactions: ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "Vena", "creationMethods": [{"name": "Vena.Contents", "parameters": [{"name": "source", "dataType": "Text", "required": true, "allowedValues": - ["https://ca3.vena.io", "https://ca4.vena.io", "https://eu1.vena.io", "https://eu2.vena.io", - "https://eu3.vena.io", "https://us1.vena.io", "https://us2.vena.io", "https://us3.vena.io", - "https://us4.vena.io", "https://us5.vena.io"]}, {"name": "modelQuery", "dataType": - "Text", "required": false, "allowedValues": null}, {"name": "apiVersion", - "dataType": "Text", "required": false, "allowedValues": ["v1", "v2"]}]}], - "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + null}, {"name": "modelQuery", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "apiVersion", "dataType": "Text", "required": false, "allowedValues": + ["v1", "v2"]}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "VesselInsight", "creationMethods": [{"name": "VesselInsight.Contents", "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": @@ -774,12 +765,14 @@ interactions: "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "FabricSql", "creationMethods": [{"name": "FabricSql.Contents", - "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Fhir", "creationMethods": [{"name": "Fhir.Contents", "parameters": - [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}, - {"name": "searchQuery", "dataType": "Text", "required": false, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2", "Anonymous"], "supportedConnectionEncryptionTypes": + "parameters": [{"name": "HierarchicalNavigation", "dataType": "Boolean", "required": + false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "Fhir", "creationMethods": [{"name": "Fhir.Contents", "parameters": [{"name": + "url", "dataType": "Text", "required": true, "allowedValues": null}, {"name": + "searchQuery", "dataType": "Text", "required": false, "allowedValues": null}]}], + "supportedCredentialTypes": ["OAuth2", "Anonymous"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "GoogleSheets", "creationMethods": [{"name": "GoogleSheets.Contents", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": @@ -792,20 +785,35 @@ interactions: "30"]}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "Lakehouse", "creationMethods": [{"name": "Lakehouse.Contents", - "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "MicrosoftAzureDataManagerForEnergy", "creationMethods": [{"name": - "MicrosoftAzureDataManagerForEnergy.Search", "parameters": [{"name": "serviceName", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "dataPartition", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "kind", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "query", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "limit", - "dataType": "Number", "required": false, "allowedValues": null}, {"name": - "returnedFields", "dataType": "Text", "required": false, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + "parameters": [{"name": "HierarchicalNavigation", "dataType": "Boolean", "required": + false, "allowedValues": null}, {"name": "EnableVorder", "dataType": "Boolean", + "required": false, "allowedValues": null}, {"name": "OutputMetadataRefresh", + "dataType": "Boolean", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "MicrosoftAzureDataManagerForEnergy", "creationMethods": [{"name": "MicrosoftAzureDataManagerForEnergy.Search", + "parameters": [{"name": "serviceName", "dataType": "Text", "required": true, + "allowedValues": null}, {"name": "dataPartition", "dataType": "Text", "required": + true, "allowedValues": null}, {"name": "kind", "dataType": "Text", "required": + true, "allowedValues": null}, {"name": "query", "dataType": "Text", "required": + true, "allowedValues": null}, {"name": "limit", "dataType": "Number", "required": + false, "allowedValues": null}, {"name": "returnedFields", "dataType": "Text", + "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "OneLakeFile", "creationMethods": [{"name": "OneLake.Contents", "parameters": + [{"name": "path", "dataType": "Text", "required": true, "allowedValues": null}]}], + "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "PowerBIDatamarts", "creationMethods": [{"name": "PowerBI.Datamarts", - "parameters": [{"name": "server", "dataType": "Text", "required": false, "allowedValues": + null}, {"type": "OneLakeSql", "creationMethods": [{"name": "OneLake.SqlAnalytics", + "parameters": [{"name": "workspace", "dataType": "Text", "required": true, + "allowedValues": null}, {"name": "database", "dataType": "Text", "required": + true, "allowedValues": null}, {"name": "artifactType", "dataType": "Text", + "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "PowerBIDatamarts", "creationMethods": [{"name": "PowerBI.Datamarts", "parameters": + [{"name": "server", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "PowerPlatformDataflows", "creationMethods": [{"name": "PowerPlatform.Dataflows", @@ -818,21 +826,27 @@ interactions: "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "Warehouse", "creationMethods": [{"name": "Fabric.Warehouse", - "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "VivaInsights", "creationMethods": [{"name": "VivaInsights.Data", - "parameters": [{"name": "scopeId", "dataType": "Text", "required": true, "allowedValues": + "parameters": [{"name": "HierarchicalNavigation", "dataType": "Boolean", "required": + false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "VivaInsights", "creationMethods": [{"name": "VivaInsights.Data", "parameters": + [{"name": "scopeId", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "jobName", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "jobId", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "SchemaType", "dataType": "Text", "required": false, "allowedValues": - ["Pivoted", "Unpivoted"]}, {"name": "APIType", "dataType": "Text", "required": - false, "allowedValues": ["Aggregated data", "Row-level data"]}, {"name": "TableName", - "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["Pivoted"]}, {"name": "APIType", "dataType": "Text", "required": false, "allowedValues": + ["Row-level data", "Aggregated data"]}, {"name": "TableName", "dataType": + "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "AdlsGen2CosmosStructuredStream", "creationMethods": [{"name": "AdlsGen2CosmosStructuredStream.Contents", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": + null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "Airtable", "creationMethods": [{"name": "Airtable.Contents", "parameters": + []}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "AmazonRdsForOracle", "creationMethods": [{"name": "AmazonRdsForOracle.Database", "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": @@ -862,20 +876,27 @@ interactions: "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "AWSIcebergCatalog", "creationMethods": [{"name": "AWSIcebergCatalog.Contents", + "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "warehouse", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "AzureAISearch", "creationMethods": [{"name": "AzureAISearch.Contents", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "AzureArtifactFeed", "creationMethods": [{"name": "AzureArtifactFeed.Contents", "parameters": [{"name": "feedUrl", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "AzureBatch", "creationMethods": [{"name": "AzureBatch.Contents", - "parameters": [{"name": "accountName", "dataType": "Text", "required": true, - "allowedValues": null}, {"name": "batchUrl", "dataType": "Text", "required": - true, "allowedValues": null}, {"name": "poolName", "dataType": "Text", "required": - true, "allowedValues": null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}]}], "supportedCredentialTypes": ["Key", "OAuth2", "WorkspaceIdentity"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "AzureBatch", "creationMethods": [{"name": "AzureBatch.Contents", "parameters": + [{"name": "accountName", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "batchUrl", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "poolName", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["Key", "OAuth2", "ServicePrincipal", + "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "AzureCosmosDBForMongoDB", "creationMethods": [{"name": "AzureCosmosDBForMongoDB.Database", "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "serverVersion", "dataType": "Text", "required": true, "allowedValues": @@ -888,10 +909,10 @@ interactions: ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "AzureDatabricksWorkspace", "creationMethods": [{"name": "AzureDatabricksWorkspace.Actions", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["Key", "OAuth2", "ServicePrincipal"], - "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "AzureDataFactory", "creationMethods": [{"name": "AzureDataFactory.Actions", + null}]}], "supportedCredentialTypes": ["Key", "OAuth2", "ServicePrincipal", + "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "AzureDataFactory", "creationMethods": [{"name": "AzureDataFactory.Actions", "parameters": [{"name": "subscriptionId", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "resourceGroup", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "dataFactoryName", "dataType": @@ -901,12 +922,13 @@ interactions: null}, {"type": "AzureDataLakeStoreCosmosStructuredStream", "creationMethods": [{"name": "AzureDataLakeStoreCosmosStructuredStream.Contents", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}]}], - "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "AzureFiles", "creationMethods": [{"name": "AzureFiles.Contents", - "parameters": [{"name": "shareUrl", "dataType": "Text", "required": true, - "allowedValues": null}, {"name": "snapshot", "dataType": "Text", "required": - false, "allowedValues": null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": + "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "AzureFiles", "creationMethods": [{"name": "AzureFiles.Contents", "parameters": + [{"name": "shareUrl", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "snapshot", "dataType": "Text", "required": false, "allowedValues": + null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "AzureFunction", "creationMethods": [{"name": "AzureFunction.Contents", "parameters": [{"name": "functionAppUrl", "dataType": "Text", "required": @@ -916,7 +938,8 @@ interactions: "AzureHDInsightCluster", "creationMethods": [{"name": "AzureHDInsightCluster.Actions", "parameters": [{"name": "hdiUrl", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "entSecPackageEnabled", "dataType": "Boolean", "required": - false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic", "OAuth2", + "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "AzureHDInsightOnDemandCluster", "creationMethods": [{"name": "AzureHDInsightOnDemandCluster.Actions", "parameters": [{"name": "subscriptionId", @@ -936,6 +959,12 @@ interactions: "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "AzureMonitorMirroredCatalog", "creationMethods": [{"name": + "AzureMonitorMirroredCatalog.Contents", "parameters": [{"name": "workspaceId", + "dataType": "Text", "required": true, "allowedValues": null}, {"name": "catalogEndpoint", + "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "AzurePostgreSQL", "creationMethods": [{"name": "AzurePostgreSQL.Database", "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "database", "dataType": "Text", "required": true, "allowedValues": @@ -973,26 +1002,31 @@ interactions: true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "CopyJob", "creationMethods": [{"name": "CopyJob.Actions", - "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], - "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "CustomStreamSource", "creationMethods": [{"name": "CustomStreamSource.Contents", - "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": + "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", + "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "CustomStreamSource", "creationMethods": [{"name": "CustomStreamSource.Contents", + "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic", "Key"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "DataBuildToolJob", "creationMethods": [{"name": "DataBuildToolJob.Actions", - "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], - "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "DataLakeAnalytics", "creationMethods": [{"name": "DataLakeAnalytics.Account", + "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", + "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "DataLakeAnalytics", "creationMethods": [{"name": "DataLakeAnalytics.Account", "parameters": [{"name": "accountName", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "subscriptionId", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "resourceGroupName", "dataType": "Text", - "required": false, "allowedValues": null}]}], "supportedCredentialTypes": - ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": + "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", + "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Dynamics365", "creationMethods": [{"name": "Dynamics365.Contents", - "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": + null}, {"type": "DremioIcebergCatalog", "creationMethods": [{"name": "DremioIcebergCatalog.Contents", + "parameters": [{"name": "warehouse", "dataType": "Text", "required": true, + "allowedValues": null}]}], "supportedCredentialTypes": ["Key", "OAuth2"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "Dynamics365", "creationMethods": [{"name": "Dynamics365.Contents", "parameters": + [{"name": "server", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": @@ -1011,17 +1045,29 @@ interactions: null}, {"name": "entityPath", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "EventStream", "creationMethods": [{"name": "EventStream.Contents", + "parameters": [{"name": "WorkspaceId", "dataType": "Text", "required": true, + "allowedValues": null}, {"name": "ArtifactId", "dataType": "Text", "required": + true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "FabricDataPipelines", "creationMethods": [{"name": "FabricDataPipelines.Actions", "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "FabricMaterializedLakehouseView", "creationMethods": [{"name": - "FabricMaterializedLakehouseView.Actions", "parameters": []}], "supportedCredentialTypes": - ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "FabricSqlEndpointMetadata", "creationMethods": [{"name": - "FabricSqlEndpointMetadata.Actions", "parameters": []}], "supportedCredentialTypes": - ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + null}, {"type": "FabricMaps", "creationMethods": [{"name": "FabricMaps.Contents", + "parameters": [{"name": "baseUrl", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "protocol", "dataType": "Text", "required": true, "allowedValues": + ["WMS", "WMTS"]}, {"name": "apiKeyName", "dataType": "Text", "required": false, + "allowedValues": null}]}], "supportedCredentialTypes": ["Key", "Basic", "Anonymous"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "FabricMaterializedLakeView", "creationMethods": [{"name": "FabricMaterializedLakeView.Actions", + "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "FabricSqlEndpointMetadata", "creationMethods": [{"name": "FabricSqlEndpointMetadata.Actions", + "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", + "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "FTP", "creationMethods": [{"name": "FTP.Contents", "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": @@ -1085,10 +1131,16 @@ interactions: "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "MicrosoftTeams", "creationMethods": [{"name": "MicrosoftTeams.Actions", "parameters": - []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": + "MicrosoftPlanetaryComputer", "creationMethods": [{"name": "MicrosoftPlanetaryComputer.Contents", + "parameters": [{"name": "baseUrl", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "protocol", "dataType": "Text", "required": true, "allowedValues": + ["WMTS"]}]}], "supportedCredentialTypes": ["OAuth2", "Anonymous"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "MongoDBAtlasForPipeline", "creationMethods": [{"name": "MongoDBAtlasForPipeline.Database", + null}, {"type": "MicrosoftTeams", "creationMethods": [{"name": "MicrosoftTeams.Actions", + "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "MongoDBAtlasForPipeline", "creationMethods": [{"name": "MongoDBAtlasForPipeline.Database", "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "cluster", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": @@ -1102,13 +1154,17 @@ interactions: null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "Notebook", "creationMethods": [{"name": "Notebook.Actions", - "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], - "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "OracleCloudStorage", "creationMethods": [{"name": "OracleCloudStorage.Contents", + "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", + "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "OracleCloudStorage", "creationMethods": [{"name": "OracleCloudStorage.Contents", "parameters": [{"name": "APIEndpoint", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "PayPalForPipeline", "creationMethods": [{"name": "PayPalForPipeline.Database", + "parameters": [{"name": "host", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "PowerBIDatasets", "creationMethods": [{"name": "PowerBIDatasets.Actions", "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], @@ -1121,6 +1177,9 @@ interactions: false, "allowedValues": ["Enable", "Disable"]}]}], "supportedCredentialTypes": ["Anonymous", "Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "RealTimeEvents", "creationMethods": [{"name": "RealTimeEvents.Contents", + "parameters": []}], "supportedCredentialTypes": ["Anonymous"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "RestService", "creationMethods": [{"name": "RestService.Contents", "parameters": [{"name": "baseUrl", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "audience", "dataType": "Text", "required": false, "allowedValues": @@ -1173,6 +1232,13 @@ interactions: "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "ScopeJobDefinition", "creationMethods": [{"name": "ScopeJobDefinition.Actions", + "parameters": []}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "SentinelCatalog", "creationMethods": [{"name": "SentinelCatalog.Contents", + "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "ServiceNow", "creationMethods": [{"name": "ServiceNow.Data", "parameters": [{"name": "instance", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": @@ -1197,10 +1263,10 @@ interactions: null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "SparkJobDefinition", "creationMethods": [{"name": "SparkJobDefinition.Actions", - "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], - "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "SqlAnalyticsEndpoint", "creationMethods": [{"name": "SqlAnalyticsEndpoint.Actions", + "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", + "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "SqlAnalyticsEndpoint", "creationMethods": [{"name": "SqlAnalyticsEndpoint.Actions", "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "UserDataFunctions", "creationMethods": [{"name": "UserDataFunctions.Actions", @@ -1398,23 +1464,26 @@ interactions: "dataType": "Text", "required": false, "allowedValues": null}, {"name": "_isOverride", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "_aggCuThreshold", "dataType": "Number", "required": false, "allowedValues": null}, {"name": - "_experience", "dataType": "Text", "required": false, "allowedValues": null}]}], - "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": true, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Goals", "creationMethods": [{"name": "Goals.GetScorecardData", - "parameters": [{"name": "scorecardId", "dataType": "Text", "required": true, - "allowedValues": null}, {"name": "top", "dataType": "Number", "required": - false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], - "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "MetricsCES", "creationMethods": [{"name": "MetricsCES.GetMetricsData", "parameters": - [{"name": "_capacityId", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "_database", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "_ago", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "_hour", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "_kustoUri", "dataType": "Text", "required": true, "allowedValues": + "_experience", "dataType": "Text", "required": false, "allowedValues": null}, + {"name": "_utilizationType", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "_requestFromServerlessVersion", "dataType": "Boolean", "required": + false, "allowedValues": null}, {"name": "_serverlessWorkloadCategoryColumnFixedDate", + "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + true, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "Goals", "creationMethods": [{"name": "Goals.GetScorecardData", "parameters": + [{"name": "scorecardId", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "top", "dataType": "Number", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "MetricsCES", "creationMethods": [{"name": "MetricsCES.GetMetricsData", + "parameters": [{"name": "_capacityId", "dataType": "Text", "required": true, + "allowedValues": null}, {"name": "_database", "dataType": "Text", "required": + true, "allowedValues": null}, {"name": "_ago", "dataType": "Text", "required": + true, "allowedValues": null}, {"name": "_hour", "dataType": "Text", "required": + true, "allowedValues": null}, {"name": "_kustoUri", "dataType": "Text", "required": + true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "MetricsDataConnector", "creationMethods": [{"name": "MetricsDataConnector.GetMetricsData", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "isPbiAdmin", "dataType": "Boolean", "required": false, "allowedValues": @@ -1459,15 +1528,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '8567' + - '8880' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 12:14:53 GMT + - Fri, 22 May 2026 09:17:45 GMT Pragma: - no-cache RequestId: - - 267cff08-f805-46ca-8200-8131e7a342da + - 418f02df-fbb7-42e3-a538-006a2875d76c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1482,7 +1551,9 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "connectivityType": "ShareableCloud", "privacyLevel": "None", "connectionDetails": "mock_request_connection_details", "credentialDetails": "mocked_credential_details"}' + body: '{"displayName": "fabcli000001", "connectivityType": "ShareableCloud", "privacyLevel": + "None", "connectionDetails": "mock_request_connection_details", "credentialDetails": + "mocked_credential_details"}' headers: Accept: - '*/*' @@ -1491,143 +1562,41 @@ interactions: Connection: - keep-alive Content-Length: - - '553' - + - '554' 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/connections response: body: - string: '{"allowConnectionUsageInGateway": false, "allowUsageInUserControlledCode": - false, "id": "41a127a8-1da4-40f7-a7e6-23e549a0625d", "displayName": "fabcli000001", - "connectivityType": "ShareableCloud", "connectionDetails": {"path": "mocked_sql_server_server.database.windows.net;mocked_sql_server_database", - "type": "SQL"}, "privacyLevel": "None", "credentialDetails": "mocked_credential_details"}' - headers: - Access-Control-Expose-Headers: - - RequestId,Location - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '306' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 21 Jan 2026 12:14:55 GMT - Location: - - https://api.fabric.microsoft.com/v1/connections/41a127a8-1da4-40f7-a7e6-23e549a0625d - Pragma: - - no-cache - RequestId: - - 58a4d8ca-ef12-492e-ab2a-fc4053cba857 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-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.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/connections - response: - body: - string: '{"value": [{"allowConnectionUsageInGateway": false, "allowUsageInUserControlledCode": - false, "id": "41a127a8-1da4-40f7-a7e6-23e549a0625d", "displayName": "fabcli000001", - "connectivityType": "ShareableCloud", "connectionDetails": {"path": "mocked_sql_server_server.database.windows.net;mocked_sql_server_database", - "type": "SQL"}, "privacyLevel": "None", "credentialDetails": "mocked_credential_details"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '949' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 21 Jan 2026 12:14:57 GMT - Pragma: - - no-cache - RequestId: - - 5825bfdd-5dcb-4d37-910f-068177596631 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/connections/41a127a8-1da4-40f7-a7e6-23e549a0625d - response: - body: - string: '{"allowConnectionUsageInGateway": false, "allowUsageInUserControlledCode": - false, "id": "41a127a8-1da4-40f7-a7e6-23e549a0625d", "displayName": "fabcli000001", - "connectivityType": "ShareableCloud", "connectionDetails": {"path": "mocked_sql_server_server.database.windows.net;mocked_sql_server_database", - "type": "SQL"}, "privacyLevel": "None", "credentialDetails": "mocked_credential_details"}' + string: '{"requestId": "317eced8-a70c-4d30-adee-d32ebbbdb074", "errorCode": + "DM_GWPipeline_Gateway_DataSourceAccessError", "moreDetails": [{"errorCode": + "DM_ErrorDetailNameCode_UnderlyingErrorCode", "message": "-2146232060"}, {"errorCode": + "DM_ErrorDetailNameCode_UnderlyingErrorMessage", "message": "Login failed + for user ''sqladmin''."}, {"errorCode": "DM_ErrorDetailNameCode_UnderlyingHResult", + "message": "-2146232060"}, {"errorCode": "DM_ErrorDetailNameCode_UnderlyingNativeErrorCode", + "message": "18456"}], "message": "PowerBI service client received error HTTP + response. HttpStatus: 400. PowerBIErrorCode: DM_GWPipeline_Gateway_DataSourceAccessError", + "isRetriable": false}' headers: Access-Control-Expose-Headers: - RequestId Cache-Control: - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '306' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 12:14:59 GMT + - Fri, 22 May 2026 09:17:46 GMT Pragma: - no-cache RequestId: - - 00fe20d7-b3f0-4b08-9eef-ae9275b120f5 + - 317eced8-a70c-4d30-adee-d32ebbbdb074 Strict-Transport-Security: - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked X-Content-Type-Options: - nosniff X-Frame-Options: @@ -1636,418 +1605,9 @@ interactions: - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' + x-ms-public-api-error-code: + - DM_GWPipeline_Gateway_DataSourceAccessError status: - code: 200 - message: OK -- request: - body: '{"displayName": "fabcli000002", "connectivityType": "ShareableCloud"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '73' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: PATCH - uri: https://api.fabric.microsoft.com/v1/connections/41a127a8-1da4-40f7-a7e6-23e549a0625d - response: - body: - string: '{"allowConnectionUsageInGateway": false, "allowUsageInUserControlledCode": - false, "id": "41a127a8-1da4-40f7-a7e6-23e549a0625d", "displayName": "fabcli000002", - "connectivityType": "ShareableCloud", "connectionDetails": {"path": "mocked_sql_server_server.database.windows.net;mocked_sql_server_database", - "type": "SQL"}, "privacyLevel": "None", "credentialDetails": "mocked_credential_details"}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '304' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 21 Jan 2026 12:15:00 GMT - Pragma: - - no-cache - RequestId: - - 20c68a2f-d1d4-437c-a6e0-8dc2cededda2 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/connections - response: - body: - string: '{"value": [{"allowConnectionUsageInGateway": false, "allowUsageInUserControlledCode": - false, "id": "41a127a8-1da4-40f7-a7e6-23e549a0625d", "displayName": "fabcli000002", - "connectivityType": "ShareableCloud", "connectionDetails": {"path": "mocked_sql_server_server.database.windows.net;mocked_sql_server_database", - "type": "SQL"}, "privacyLevel": "None", "credentialDetails": "mocked_credential_details"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '947' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 21 Jan 2026 12:15:02 GMT - Pragma: - - no-cache - RequestId: - - 48e9e961-bc41-43f3-a0f2-b13abcbdc4f9 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/connections/41a127a8-1da4-40f7-a7e6-23e549a0625d - response: - body: - string: '{"allowConnectionUsageInGateway": false, "allowUsageInUserControlledCode": - false, "id": "41a127a8-1da4-40f7-a7e6-23e549a0625d", "displayName": "fabcli000002", - "connectivityType": "ShareableCloud", "connectionDetails": {"path": "mocked_sql_server_server.database.windows.net;mocked_sql_server_database", - "type": "SQL"}, "privacyLevel": "None", "credentialDetails": "mocked_credential_details"}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '304' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 21 Jan 2026 12:15:03 GMT - Pragma: - - no-cache - RequestId: - - 581d5e98-d62f-47fc-9801-a79eda7a1e8c - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/connections - response: - body: - string: '{"value": [{"allowConnectionUsageInGateway": false, "allowUsageInUserControlledCode": - false, "id": "41a127a8-1da4-40f7-a7e6-23e549a0625d", "displayName": "fabcli000002", - "connectivityType": "ShareableCloud", "connectionDetails": {"path": "mocked_sql_server_server.database.windows.net;mocked_sql_server_database", - "type": "SQL"}, "privacyLevel": "None", "credentialDetails": "mocked_credential_details"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '947' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 21 Jan 2026 12:15:05 GMT - Pragma: - - no-cache - RequestId: - - eb7ac956-d49c-4470-baa2-7b758772ab38 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/connections/41a127a8-1da4-40f7-a7e6-23e549a0625d - response: - body: - string: '{"allowConnectionUsageInGateway": false, "allowUsageInUserControlledCode": - false, "id": "41a127a8-1da4-40f7-a7e6-23e549a0625d", "displayName": "fabcli000002", - "connectivityType": "ShareableCloud", "connectionDetails": {"path": "mocked_sql_server_server.database.windows.net;mocked_sql_server_database", - "type": "SQL"}, "privacyLevel": "None", "credentialDetails": "mocked_credential_details"}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '304' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 21 Jan 2026 12:15:05 GMT - Pragma: - - no-cache - RequestId: - - e933655d-5e93-4d0d-a996-4a5885c47911 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - 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", "connectivityType": "ShareableCloud"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '73' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: PATCH - uri: https://api.fabric.microsoft.com/v1/connections/41a127a8-1da4-40f7-a7e6-23e549a0625d - response: - body: - string: '{"allowConnectionUsageInGateway": false, "allowUsageInUserControlledCode": - false, "id": "41a127a8-1da4-40f7-a7e6-23e549a0625d", "displayName": "fabcli000001", - "connectivityType": "ShareableCloud", "connectionDetails": {"path": "mocked_sql_server_server.database.windows.net;mocked_sql_server_database", - "type": "SQL"}, "privacyLevel": "None", "credentialDetails": "mocked_credential_details"}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '306' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 21 Jan 2026 12:15:07 GMT - Pragma: - - no-cache - RequestId: - - 0b9d23c6-75d2-446b-b75c-6f54487bfbb7 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/connections - response: - body: - string: '{"value": [{"allowConnectionUsageInGateway": false, "allowUsageInUserControlledCode": - false, "id": "41a127a8-1da4-40f7-a7e6-23e549a0625d", "displayName": "fabcli000001", - "connectivityType": "ShareableCloud", "connectionDetails": {"path": "mocked_sql_server_server.database.windows.net;mocked_sql_server_database", - "type": "SQL"}, "privacyLevel": "None", "credentialDetails": "mocked_credential_details"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '949' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 21 Jan 2026 12:15:07 GMT - Pragma: - - no-cache - RequestId: - - 5d1f67ef-5691-42bc-8ff1-5201a01f6778 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.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.3.1 - method: DELETE - uri: https://api.fabric.microsoft.com/v1/connections/41a127a8-1da4-40f7-a7e6-23e549a0625d - 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: - - Wed, 21 Jan 2026 12:15:09 GMT - Pragma: - - no-cache - RequestId: - - 23c383e5-7ec6-4b3f-8805-913354a775e0 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK + code: 400 + message: Bad Request version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_connection_metadata_success[privacyLevel-Organizational].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_connection_metadata_success[privacyLevel-Organizational].yaml index 8eadb2c13..67ffdae3c 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_connection_metadata_success[privacyLevel-Organizational].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_connection_metadata_success[privacyLevel-Organizational].yaml @@ -11,7 +11,7 @@ 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/connections response: @@ -25,15 +25,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '860' + - '1402' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 09:43:18 GMT + - Fri, 22 May 2026 09:17:59 GMT Pragma: - no-cache RequestId: - - 11e3fa85-eee6-4905-a742-34c42adc0da9 + - dfe2291c-92d7-4d19-822e-b45d59d6b7b7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -59,7 +59,7 @@ 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/connections/supportedConnectionTypes response: @@ -96,6 +96,10 @@ interactions: true, "allowedValues": null}, {"name": "database", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + ["Basic"]}, {"type": "Oracle", "creationMethods": [{"name": "Oracle", "parameters": + [{"name": "server", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["Basic", "OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": ["Basic"]}, {"type": "PostgreSQL", "creationMethods": [{"name": "PostgreSql", "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "database", "dataType": "Text", "required": true, "allowedValues": @@ -151,14 +155,14 @@ interactions: null}, {"type": "GoogleBigQueryAad", "creationMethods": [{"name": "GoogleBigQueryAad.Database", "parameters": [{"name": "billingProject", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "Implementation", "dataType": "Text", - "required": false, "allowedValues": null}, {"name": "UseStorageApi", "dataType": - "Boolean", "required": false, "allowedValues": null}, {"name": "ConnectionTimeout", - "dataType": "Duration", "required": false, "allowedValues": null}, {"name": - "CommandTimeout", "dataType": "Duration", "required": false, "allowedValues": - null}, {"name": "BYOID_AudienceUri", "dataType": "Text", "required": false, - "allowedValues": null}, {"name": "ProjectId", "dataType": "Text", "required": - false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], - "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + "required": false, "allowedValues": [null, "2.0"]}, {"name": "UseStorageApi", + "dataType": "Boolean", "required": false, "allowedValues": null}, {"name": + "ConnectionTimeout", "dataType": "Duration", "required": false, "allowedValues": + null}, {"name": "CommandTimeout", "dataType": "Duration", "required": false, + "allowedValues": null}, {"name": "BYOID_AudienceUri", "dataType": "Text", + "required": false, "allowedValues": null}, {"name": "ProjectId", "dataType": + "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "PowerBI", "creationMethods": [{"name": "PowerBI.Dataflows", "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": @@ -215,17 +219,6 @@ interactions: null}, {"name": "Repository", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "AzureHive", "creationMethods": [{"name": "AzureHiveLLAP.Database", - "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "database", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "ApacheHive", "creationMethods": [{"name": "ApacheHiveLLAP.Database", - "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "database", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "thriftTransport", "dataType": "Number", "required": true, - "allowedValues": ["1", "2"]}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": - ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "Impala", "creationMethods": [{"name": "Impala.Database", "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "Implementation", "dataType": "Text", "required": false, "allowedValues": @@ -296,8 +289,9 @@ interactions: "required": false, "allowedValues": null}, {"name": "CommandTimeout", "dataType": "Number", "required": false, "allowedValues": null}, {"name": "Implementation", "dataType": "Text", "required": false, "allowedValues": [null, "2.0"]}]}], - "supportedCredentialTypes": ["Basic", "OAuth2", "KeyPair"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + "supportedCredentialTypes": ["Basic", "OAuth2", "KeyPair", "ServicePrincipal", + "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "Spark", "creationMethods": [{"name": "AzureSpark.Tables", "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "BatchSize", "dataType": "Number", "required": false, "allowedValues": @@ -438,7 +432,7 @@ interactions: null}, {"name": "QueryTags", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "EnableAutomaticProxyDiscovery", "dataType": "Text", "required": false, "allowedValues": ["enabled", "disabled"]}, {"name": "Implementation", - "dataType": "Text", "required": false, "allowedValues": [null, "2.0"]}]}], + "dataType": "Text", "required": false, "allowedValues": ["2.0", null]}]}], "supportedCredentialTypes": ["OAuth2", "Key", "Basic", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": @@ -450,7 +444,7 @@ interactions: null}, {"name": "QueryTags", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "EnableAutomaticProxyDiscovery", "dataType": "Text", "required": false, "allowedValues": ["enabled", "disabled"]}, {"name": "Implementation", - "dataType": "Text", "required": false, "allowedValues": [null, "2.0"]}]}], + "dataType": "Text", "required": false, "allowedValues": ["2.0", null]}]}], "supportedCredentialTypes": ["OAuth2", "Key", "Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "DeltaSharing", "creationMethods": [{"name": "DeltaSharing.Contents", @@ -665,12 +659,9 @@ interactions: ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "Vena", "creationMethods": [{"name": "Vena.Contents", "parameters": [{"name": "source", "dataType": "Text", "required": true, "allowedValues": - ["https://ca3.vena.io", "https://ca4.vena.io", "https://eu1.vena.io", "https://eu2.vena.io", - "https://eu3.vena.io", "https://us1.vena.io", "https://us2.vena.io", "https://us3.vena.io", - "https://us4.vena.io", "https://us5.vena.io"]}, {"name": "modelQuery", "dataType": - "Text", "required": false, "allowedValues": null}, {"name": "apiVersion", - "dataType": "Text", "required": false, "allowedValues": ["v1", "v2"]}]}], - "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + null}, {"name": "modelQuery", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "apiVersion", "dataType": "Text", "required": false, "allowedValues": + ["v1", "v2"]}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "VesselInsight", "creationMethods": [{"name": "VesselInsight.Contents", "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": @@ -774,12 +765,14 @@ interactions: "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "FabricSql", "creationMethods": [{"name": "FabricSql.Contents", - "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Fhir", "creationMethods": [{"name": "Fhir.Contents", "parameters": - [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}, - {"name": "searchQuery", "dataType": "Text", "required": false, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2", "Anonymous"], "supportedConnectionEncryptionTypes": + "parameters": [{"name": "HierarchicalNavigation", "dataType": "Boolean", "required": + false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "Fhir", "creationMethods": [{"name": "Fhir.Contents", "parameters": [{"name": + "url", "dataType": "Text", "required": true, "allowedValues": null}, {"name": + "searchQuery", "dataType": "Text", "required": false, "allowedValues": null}]}], + "supportedCredentialTypes": ["OAuth2", "Anonymous"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "GoogleSheets", "creationMethods": [{"name": "GoogleSheets.Contents", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": @@ -792,20 +785,35 @@ interactions: "30"]}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "Lakehouse", "creationMethods": [{"name": "Lakehouse.Contents", - "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "MicrosoftAzureDataManagerForEnergy", "creationMethods": [{"name": - "MicrosoftAzureDataManagerForEnergy.Search", "parameters": [{"name": "serviceName", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "dataPartition", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "kind", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "query", - "dataType": "Text", "required": true, "allowedValues": null}, {"name": "limit", - "dataType": "Number", "required": false, "allowedValues": null}, {"name": - "returnedFields", "dataType": "Text", "required": false, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + "parameters": [{"name": "HierarchicalNavigation", "dataType": "Boolean", "required": + false, "allowedValues": null}, {"name": "EnableVorder", "dataType": "Boolean", + "required": false, "allowedValues": null}, {"name": "OutputMetadataRefresh", + "dataType": "Boolean", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "MicrosoftAzureDataManagerForEnergy", "creationMethods": [{"name": "MicrosoftAzureDataManagerForEnergy.Search", + "parameters": [{"name": "serviceName", "dataType": "Text", "required": true, + "allowedValues": null}, {"name": "dataPartition", "dataType": "Text", "required": + true, "allowedValues": null}, {"name": "kind", "dataType": "Text", "required": + true, "allowedValues": null}, {"name": "query", "dataType": "Text", "required": + true, "allowedValues": null}, {"name": "limit", "dataType": "Number", "required": + false, "allowedValues": null}, {"name": "returnedFields", "dataType": "Text", + "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "OneLakeFile", "creationMethods": [{"name": "OneLake.Contents", "parameters": + [{"name": "path", "dataType": "Text", "required": true, "allowedValues": null}]}], + "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "PowerBIDatamarts", "creationMethods": [{"name": "PowerBI.Datamarts", - "parameters": [{"name": "server", "dataType": "Text", "required": false, "allowedValues": + null}, {"type": "OneLakeSql", "creationMethods": [{"name": "OneLake.SqlAnalytics", + "parameters": [{"name": "workspace", "dataType": "Text", "required": true, + "allowedValues": null}, {"name": "database", "dataType": "Text", "required": + true, "allowedValues": null}, {"name": "artifactType", "dataType": "Text", + "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "PowerBIDatamarts", "creationMethods": [{"name": "PowerBI.Datamarts", "parameters": + [{"name": "server", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "PowerPlatformDataflows", "creationMethods": [{"name": "PowerPlatform.Dataflows", @@ -818,21 +826,27 @@ interactions: "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "Warehouse", "creationMethods": [{"name": "Fabric.Warehouse", - "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "VivaInsights", "creationMethods": [{"name": "VivaInsights.Data", - "parameters": [{"name": "scopeId", "dataType": "Text", "required": true, "allowedValues": + "parameters": [{"name": "HierarchicalNavigation", "dataType": "Boolean", "required": + false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "VivaInsights", "creationMethods": [{"name": "VivaInsights.Data", "parameters": + [{"name": "scopeId", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "jobName", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "jobId", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "SchemaType", "dataType": "Text", "required": false, "allowedValues": - ["Pivoted", "Unpivoted"]}, {"name": "APIType", "dataType": "Text", "required": - false, "allowedValues": ["Aggregated data", "Row-level data"]}, {"name": "TableName", - "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["Pivoted"]}, {"name": "APIType", "dataType": "Text", "required": false, "allowedValues": + ["Row-level data", "Aggregated data"]}, {"name": "TableName", "dataType": + "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "AdlsGen2CosmosStructuredStream", "creationMethods": [{"name": "AdlsGen2CosmosStructuredStream.Contents", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": + null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "Airtable", "creationMethods": [{"name": "Airtable.Contents", "parameters": + []}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "AmazonRdsForOracle", "creationMethods": [{"name": "AmazonRdsForOracle.Database", "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": @@ -862,20 +876,27 @@ interactions: "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "AWSIcebergCatalog", "creationMethods": [{"name": "AWSIcebergCatalog.Contents", + "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "warehouse", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "AzureAISearch", "creationMethods": [{"name": "AzureAISearch.Contents", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "AzureArtifactFeed", "creationMethods": [{"name": "AzureArtifactFeed.Contents", "parameters": [{"name": "feedUrl", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "AzureBatch", "creationMethods": [{"name": "AzureBatch.Contents", - "parameters": [{"name": "accountName", "dataType": "Text", "required": true, - "allowedValues": null}, {"name": "batchUrl", "dataType": "Text", "required": - true, "allowedValues": null}, {"name": "poolName", "dataType": "Text", "required": - true, "allowedValues": null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}]}], "supportedCredentialTypes": ["Key", "OAuth2", "WorkspaceIdentity"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "AzureBatch", "creationMethods": [{"name": "AzureBatch.Contents", "parameters": + [{"name": "accountName", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "batchUrl", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "poolName", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["Key", "OAuth2", "ServicePrincipal", + "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "AzureCosmosDBForMongoDB", "creationMethods": [{"name": "AzureCosmosDBForMongoDB.Database", "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "serverVersion", "dataType": "Text", "required": true, "allowedValues": @@ -888,10 +909,10 @@ interactions: ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "AzureDatabricksWorkspace", "creationMethods": [{"name": "AzureDatabricksWorkspace.Actions", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": - null}]}], "supportedCredentialTypes": ["Key", "OAuth2", "ServicePrincipal"], - "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "AzureDataFactory", "creationMethods": [{"name": "AzureDataFactory.Actions", + null}]}], "supportedCredentialTypes": ["Key", "OAuth2", "ServicePrincipal", + "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "AzureDataFactory", "creationMethods": [{"name": "AzureDataFactory.Actions", "parameters": [{"name": "subscriptionId", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "resourceGroup", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "dataFactoryName", "dataType": @@ -901,12 +922,13 @@ interactions: null}, {"type": "AzureDataLakeStoreCosmosStructuredStream", "creationMethods": [{"name": "AzureDataLakeStoreCosmosStructuredStream.Contents", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}]}], - "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "AzureFiles", "creationMethods": [{"name": "AzureFiles.Contents", - "parameters": [{"name": "shareUrl", "dataType": "Text", "required": true, - "allowedValues": null}, {"name": "snapshot", "dataType": "Text", "required": - false, "allowedValues": null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": + "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "AzureFiles", "creationMethods": [{"name": "AzureFiles.Contents", "parameters": + [{"name": "shareUrl", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "snapshot", "dataType": "Text", "required": false, "allowedValues": + null}]}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "AzureFunction", "creationMethods": [{"name": "AzureFunction.Contents", "parameters": [{"name": "functionAppUrl", "dataType": "Text", "required": @@ -916,7 +938,8 @@ interactions: "AzureHDInsightCluster", "creationMethods": [{"name": "AzureHDInsightCluster.Actions", "parameters": [{"name": "hdiUrl", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "entSecPackageEnabled", "dataType": "Boolean", "required": - false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic", "OAuth2", + "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "AzureHDInsightOnDemandCluster", "creationMethods": [{"name": "AzureHDInsightOnDemandCluster.Actions", "parameters": [{"name": "subscriptionId", @@ -936,6 +959,12 @@ interactions: "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "AzureMonitorMirroredCatalog", "creationMethods": [{"name": + "AzureMonitorMirroredCatalog.Contents", "parameters": [{"name": "workspaceId", + "dataType": "Text", "required": true, "allowedValues": null}, {"name": "catalogEndpoint", + "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "AzurePostgreSQL", "creationMethods": [{"name": "AzurePostgreSQL.Database", "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "database", "dataType": "Text", "required": true, "allowedValues": @@ -973,26 +1002,31 @@ interactions: true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "CopyJob", "creationMethods": [{"name": "CopyJob.Actions", - "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], - "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "CustomStreamSource", "creationMethods": [{"name": "CustomStreamSource.Contents", - "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": + "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", + "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "CustomStreamSource", "creationMethods": [{"name": "CustomStreamSource.Contents", + "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic", "Key"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "DataBuildToolJob", "creationMethods": [{"name": "DataBuildToolJob.Actions", - "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], - "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "DataLakeAnalytics", "creationMethods": [{"name": "DataLakeAnalytics.Account", + "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", + "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "DataLakeAnalytics", "creationMethods": [{"name": "DataLakeAnalytics.Account", "parameters": [{"name": "accountName", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "subscriptionId", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "resourceGroupName", "dataType": "Text", - "required": false, "allowedValues": null}]}], "supportedCredentialTypes": - ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": + "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", + "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Dynamics365", "creationMethods": [{"name": "Dynamics365.Contents", - "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": + null}, {"type": "DremioIcebergCatalog", "creationMethods": [{"name": "DremioIcebergCatalog.Contents", + "parameters": [{"name": "warehouse", "dataType": "Text", "required": true, + "allowedValues": null}]}], "supportedCredentialTypes": ["Key", "OAuth2"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "Dynamics365", "creationMethods": [{"name": "Dynamics365.Contents", "parameters": + [{"name": "server", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": @@ -1011,17 +1045,29 @@ interactions: null}, {"name": "entityPath", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2", "Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "EventStream", "creationMethods": [{"name": "EventStream.Contents", + "parameters": [{"name": "WorkspaceId", "dataType": "Text", "required": true, + "allowedValues": null}, {"name": "ArtifactId", "dataType": "Text", "required": + true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "FabricDataPipelines", "creationMethods": [{"name": "FabricDataPipelines.Actions", "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "FabricMaterializedLakehouseView", "creationMethods": [{"name": - "FabricMaterializedLakehouseView.Actions", "parameters": []}], "supportedCredentialTypes": - ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], - "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "FabricSqlEndpointMetadata", "creationMethods": [{"name": - "FabricSqlEndpointMetadata.Actions", "parameters": []}], "supportedCredentialTypes": - ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + null}, {"type": "FabricMaps", "creationMethods": [{"name": "FabricMaps.Contents", + "parameters": [{"name": "baseUrl", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "protocol", "dataType": "Text", "required": true, "allowedValues": + ["WMS", "WMTS"]}, {"name": "apiKeyName", "dataType": "Text", "required": false, + "allowedValues": null}]}], "supportedCredentialTypes": ["Key", "Basic", "Anonymous"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "FabricMaterializedLakeView", "creationMethods": [{"name": "FabricMaterializedLakeView.Actions", + "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "FabricSqlEndpointMetadata", "creationMethods": [{"name": "FabricSqlEndpointMetadata.Actions", + "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", + "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "FTP", "creationMethods": [{"name": "FTP.Contents", "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": @@ -1085,10 +1131,16 @@ interactions: "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "MicrosoftTeams", "creationMethods": [{"name": "MicrosoftTeams.Actions", "parameters": - []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], "supportedConnectionEncryptionTypes": + "MicrosoftPlanetaryComputer", "creationMethods": [{"name": "MicrosoftPlanetaryComputer.Contents", + "parameters": [{"name": "baseUrl", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "protocol", "dataType": "Text", "required": true, "allowedValues": + ["WMTS"]}]}], "supportedCredentialTypes": ["OAuth2", "Anonymous"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "MongoDBAtlasForPipeline", "creationMethods": [{"name": "MongoDBAtlasForPipeline.Database", + null}, {"type": "MicrosoftTeams", "creationMethods": [{"name": "MicrosoftTeams.Actions", + "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "MongoDBAtlasForPipeline", "creationMethods": [{"name": "MongoDBAtlasForPipeline.Database", "parameters": [{"name": "server", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "cluster", "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": @@ -1102,13 +1154,17 @@ interactions: null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "Notebook", "creationMethods": [{"name": "Notebook.Actions", - "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], - "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "OracleCloudStorage", "creationMethods": [{"name": "OracleCloudStorage.Contents", + "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", + "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "OracleCloudStorage", "creationMethods": [{"name": "OracleCloudStorage.Contents", "parameters": [{"name": "APIEndpoint", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "PayPalForPipeline", "creationMethods": [{"name": "PayPalForPipeline.Database", + "parameters": [{"name": "host", "dataType": "Text", "required": true, "allowedValues": + null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": + ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "PowerBIDatasets", "creationMethods": [{"name": "PowerBIDatasets.Actions", "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], @@ -1121,6 +1177,9 @@ interactions: false, "allowedValues": ["Enable", "Disable"]}]}], "supportedCredentialTypes": ["Anonymous", "Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted", "Encrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "RealTimeEvents", "creationMethods": [{"name": "RealTimeEvents.Contents", + "parameters": []}], "supportedCredentialTypes": ["Anonymous"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "RestService", "creationMethods": [{"name": "RestService.Contents", "parameters": [{"name": "baseUrl", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "audience", "dataType": "Text", "required": false, "allowedValues": @@ -1173,6 +1232,13 @@ interactions: "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "ScopeJobDefinition", "creationMethods": [{"name": "ScopeJobDefinition.Actions", + "parameters": []}], "supportedCredentialTypes": ["Key"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "SentinelCatalog", "creationMethods": [{"name": "SentinelCatalog.Contents", + "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], + "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "ServiceNow", "creationMethods": [{"name": "ServiceNow.Data", "parameters": [{"name": "instance", "dataType": "Text", "required": true, "allowedValues": null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": @@ -1197,10 +1263,10 @@ interactions: null}]}], "supportedCredentialTypes": ["Basic"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "SparkJobDefinition", "creationMethods": [{"name": "SparkJobDefinition.Actions", - "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal"], - "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "SqlAnalyticsEndpoint", "creationMethods": [{"name": "SqlAnalyticsEndpoint.Actions", + "parameters": []}], "supportedCredentialTypes": ["OAuth2", "ServicePrincipal", + "WorkspaceIdentity"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], + "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "SqlAnalyticsEndpoint", "creationMethods": [{"name": "SqlAnalyticsEndpoint.Actions", "parameters": []}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "UserDataFunctions", "creationMethods": [{"name": "UserDataFunctions.Actions", @@ -1398,23 +1464,26 @@ interactions: "dataType": "Text", "required": false, "allowedValues": null}, {"name": "_isOverride", "dataType": "Text", "required": false, "allowedValues": null}, {"name": "_aggCuThreshold", "dataType": "Number", "required": false, "allowedValues": null}, {"name": - "_experience", "dataType": "Text", "required": false, "allowedValues": null}]}], - "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": - ["NotEncrypted"], "supportsSkipTestConnection": true, "supportedCredentialTypesForUsageInUserControlledCode": - null}, {"type": "Goals", "creationMethods": [{"name": "Goals.GetScorecardData", - "parameters": [{"name": "scorecardId", "dataType": "Text", "required": true, - "allowedValues": null}, {"name": "top", "dataType": "Number", "required": - false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], - "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": - false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": - "MetricsCES", "creationMethods": [{"name": "MetricsCES.GetMetricsData", "parameters": - [{"name": "_capacityId", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "_database", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "_ago", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "_hour", "dataType": "Text", "required": true, "allowedValues": - null}, {"name": "_kustoUri", "dataType": "Text", "required": true, "allowedValues": + "_experience", "dataType": "Text", "required": false, "allowedValues": null}, + {"name": "_utilizationType", "dataType": "Text", "required": false, "allowedValues": + null}, {"name": "_requestFromServerlessVersion", "dataType": "Boolean", "required": + false, "allowedValues": null}, {"name": "_serverlessWorkloadCategoryColumnFixedDate", + "dataType": "Text", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": + ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": + true, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": + "Goals", "creationMethods": [{"name": "Goals.GetScorecardData", "parameters": + [{"name": "scorecardId", "dataType": "Text", "required": true, "allowedValues": + null}, {"name": "top", "dataType": "Number", "required": false, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": + null}, {"type": "MetricsCES", "creationMethods": [{"name": "MetricsCES.GetMetricsData", + "parameters": [{"name": "_capacityId", "dataType": "Text", "required": true, + "allowedValues": null}, {"name": "_database", "dataType": "Text", "required": + true, "allowedValues": null}, {"name": "_ago", "dataType": "Text", "required": + true, "allowedValues": null}, {"name": "_hour", "dataType": "Text", "required": + true, "allowedValues": null}, {"name": "_kustoUri", "dataType": "Text", "required": + true, "allowedValues": null}]}], "supportedCredentialTypes": ["OAuth2"], "supportedConnectionEncryptionTypes": + ["NotEncrypted"], "supportsSkipTestConnection": false, "supportedCredentialTypesForUsageInUserControlledCode": null}, {"type": "MetricsDataConnector", "creationMethods": [{"name": "MetricsDataConnector.GetMetricsData", "parameters": [{"name": "url", "dataType": "Text", "required": true, "allowedValues": null}, {"name": "isPbiAdmin", "dataType": "Boolean", "required": false, "allowedValues": @@ -1459,15 +1528,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '8567' + - '8880' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 09:43:20 GMT + - Fri, 22 May 2026 09:18:00 GMT Pragma: - no-cache RequestId: - - a1563ab2-e730-4f27-b211-94fc55ef8b27 + - 653eb8ab-ab18-4c0a-8936-c1c3005ed907 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1482,7 +1551,9 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "connectivityType": "ShareableCloud", "privacyLevel": "None", "connectionDetails": "mock_request_connection_details", "credentialDetails": "mocked_credential_details"}' + body: '{"displayName": "fabcli000001", "connectivityType": "ShareableCloud", "privacyLevel": + "None", "connectionDetails": "mock_request_connection_details", "credentialDetails": + "mocked_credential_details"}' headers: Accept: - '*/*' @@ -1491,92 +1562,41 @@ interactions: Connection: - keep-alive Content-Length: - - '553' - + - '554' 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/connections response: body: - string: '{"allowConnectionUsageInGateway": false, "allowUsageInUserControlledCode": - false, "id": "28b2782b-2401-4172-9cbd-66b1ceeb46cd", "displayName": "fabcli000001", - "connectivityType": "ShareableCloud", "connectionDetails": {"path": "mocked_sql_server_server.database.windows.net;mocked_sql_server_database", - "type": "SQL"}, "privacyLevel": "None", "credentialDetails": "mocked_credential_details"}' - headers: - Access-Control-Expose-Headers: - - RequestId,Location - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '304' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 21 Jan 2026 09:43:21 GMT - Location: - - https://api.fabric.microsoft.com/v1/connections/28b2782b-2401-4172-9cbd-66b1ceeb46cd - Pragma: - - no-cache - RequestId: - - f72f8bc7-e087-44b5-a4d4-ca6e5e3de316 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-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.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/connections - response: - body: - string: '{"value": [{"allowConnectionUsageInGateway": false, "allowUsageInUserControlledCode": - false, "id": "28b2782b-2401-4172-9cbd-66b1ceeb46cd", "displayName": "fabcli000001", - "connectivityType": "ShareableCloud", "connectionDetails": {"path": "mocked_sql_server_server.database.windows.net;mocked_sql_server_database", - "type": "SQL"}, "privacyLevel": "None", "credentialDetails": "mocked_credential_details"}]}' + string: '{"requestId": "524d8e4e-3591-4c5d-8cb8-8ee4df68c9ad", "errorCode": + "DM_GWPipeline_Gateway_DataSourceAccessError", "moreDetails": [{"errorCode": + "DM_ErrorDetailNameCode_UnderlyingErrorCode", "message": "-2146232060"}, {"errorCode": + "DM_ErrorDetailNameCode_UnderlyingErrorMessage", "message": "Login failed + for user ''sqladmin''."}, {"errorCode": "DM_ErrorDetailNameCode_UnderlyingHResult", + "message": "-2146232060"}, {"errorCode": "DM_ErrorDetailNameCode_UnderlyingNativeErrorCode", + "message": "18456"}], "message": "PowerBI service client received error HTTP + response. HttpStatus: 400. PowerBIErrorCode: DM_GWPipeline_Gateway_DataSourceAccessError", + "isRetriable": false}' headers: Access-Control-Expose-Headers: - RequestId Cache-Control: - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '906' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 09:43:22 GMT + - Fri, 22 May 2026 09:18:00 GMT Pragma: - no-cache RequestId: - - 15dd52ad-7bda-4ec3-bc12-65148da598ac + - 524d8e4e-3591-4c5d-8cb8-8ee4df68c9ad Strict-Transport-Security: - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked X-Content-Type-Options: - nosniff X-Frame-Options: @@ -1585,314 +1605,9 @@ interactions: - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ request-redirected: - 'true' + x-ms-public-api-error-code: + - DM_GWPipeline_Gateway_DataSourceAccessError status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/connections/28b2782b-2401-4172-9cbd-66b1ceeb46cd - response: - body: - string: '{"allowConnectionUsageInGateway": false, "allowUsageInUserControlledCode": - false, "id": "28b2782b-2401-4172-9cbd-66b1ceeb46cd", "displayName": "fabcli000001", - "connectivityType": "ShareableCloud", "connectionDetails": {"path": "mocked_sql_server_server.database.windows.net;mocked_sql_server_database", - "type": "SQL"}, "privacyLevel": "None", "credentialDetails": "mocked_credential_details"}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '304' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 21 Jan 2026 09:43:25 GMT - Pragma: - - no-cache - RequestId: - - 445802b6-a245-4edd-8381-6aa22c2995f6 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: '{"privacyLevel": "Organizational", "connectivityType": "ShareableCloud"}' - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '72' - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: PATCH - uri: https://api.fabric.microsoft.com/v1/connections/28b2782b-2401-4172-9cbd-66b1ceeb46cd - response: - body: - string: '{"allowConnectionUsageInGateway": false, "allowUsageInUserControlledCode": - false, "id": "28b2782b-2401-4172-9cbd-66b1ceeb46cd", "displayName": "fabcli000001", - "connectivityType": "ShareableCloud", "connectionDetails": {"path": "mocked_sql_server_server.database.windows.net;mocked_sql_server_database", - "type": "SQL"}, "privacyLevel": "Organizational", "credentialDetails": "mocked_credential_details"}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '313' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 21 Jan 2026 09:43:26 GMT - Pragma: - - no-cache - RequestId: - - 1e8895a5-5cab-4d77-8dbd-25a228c7873d - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/connections - response: - body: - string: '{"value": [{"allowConnectionUsageInGateway": false, "allowUsageInUserControlledCode": - false, "id": "28b2782b-2401-4172-9cbd-66b1ceeb46cd", "displayName": "fabcli000001", - "connectivityType": "ShareableCloud", "connectionDetails": {"path": "mocked_sql_server_server.database.windows.net;mocked_sql_server_database", - "type": "SQL"}, "privacyLevel": "Organizational", "credentialDetails": "mocked_credential_details"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '902' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 21 Jan 2026 09:43:28 GMT - Pragma: - - no-cache - RequestId: - - 0be9f6f0-11ab-43dd-9440-63a726f858b9 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/connections/28b2782b-2401-4172-9cbd-66b1ceeb46cd - response: - body: - string: '{"allowConnectionUsageInGateway": false, "allowUsageInUserControlledCode": - false, "id": "28b2782b-2401-4172-9cbd-66b1ceeb46cd", "displayName": "fabcli000001", - "connectivityType": "ShareableCloud", "connectionDetails": {"path": "mocked_sql_server_server.database.windows.net;mocked_sql_server_database", - "type": "SQL"}, "privacyLevel": "Organizational", "credentialDetails": "mocked_credential_details"}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '313' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 21 Jan 2026 09:43:29 GMT - Pragma: - - no-cache - RequestId: - - de640af2-aaf4-4717-930b-bf0027322553 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/connections - response: - body: - string: '{"value": [{"allowConnectionUsageInGateway": false, "allowUsageInUserControlledCode": - false, "id": "28b2782b-2401-4172-9cbd-66b1ceeb46cd", "displayName": "fabcli000001", - "connectivityType": "ShareableCloud", "connectionDetails": {"path": "mocked_sql_server_server.database.windows.net;mocked_sql_server_database", - "type": "SQL"}, "privacyLevel": "Organizational", "credentialDetails": "mocked_credential_details"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - '902' - Content-Type: - - application/json; charset=utf-8 - Date: - - Wed, 21 Jan 2026 09:43:30 GMT - Pragma: - - no-cache - RequestId: - - de8166dc-38e2-485f-908f-29482763b578 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.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.3.1 - method: DELETE - uri: https://api.fabric.microsoft.com/v1/connections/28b2782b-2401-4172-9cbd-66b1ceeb46cd - 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: - - Wed, 21 Jan 2026 09:43:31 GMT - Pragma: - - no-cache - RequestId: - - 0955682c-8e3b-4b80-b19e-235a5afdbdf4 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - 'true' - status: - code: 200 - message: OK + code: 400 + message: Bad Request version: 1 diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_cosmosdb_database_displayname_not_supported_failure.yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_cosmosdb_database_displayname_not_supported_failure.yaml index 3a9a51bae..d101ba771 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_cosmosdb_database_displayname_not_supported_failure.yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_cosmosdb_database_displayname_not_supported_failure.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": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2738' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:21:26 GMT + - Fri, 22 May 2026 09:01:10 GMT Pragma: - no-cache RequestId: - - aa9ba7c2-ede5-4db7-af7b-a2a529ec307e + - 4b067fe3-ff6b-4231-915f-66eb43c8dd11 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,12 +62,19 @@ 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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -75,15 +83,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '280' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:21:27 GMT + - Fri, 22 May 2026 09:01:11 GMT Pragma: - no-cache RequestId: - - ba59dd67-08a8-46e6-a976-9d995e278197 + - d651fd4a-17f6-4174-8a70-813ce66aa51b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,12 +117,19 @@ 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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -123,15 +138,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '280' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:21:28 GMT + - Fri, 22 May 2026 09:01:12 GMT Pragma: - no-cache RequestId: - - 4a53b969-6390-4560-a755-c8365ee2a417 + - 3ee19d34-3589-49c1-8ad7-ef5cdc30956b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -146,7 +161,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 +172,12 @@ interactions: - keep-alive Content-Length: - '81' - 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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/cosmosDbDatabases + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/cosmosDbDatabases response: body: string: 'null' @@ -178,15 +193,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:21:30 GMT + - Fri, 22 May 2026 09:01:13 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3225775e-7f3f-4ce7-a9e8-8b88bd3b2602 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7ce6c509-dd26-4cca-8f56-4edcf91b0697 Pragma: - no-cache RequestId: - - e7c6fcea-256b-4c47-aed1-c1d7dc644e71 + - 38059632-1814-42ab-8579-e0273472520b Retry-After: - '20' Strict-Transport-Security: @@ -200,7 +215,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 3225775e-7f3f-4ce7-a9e8-8b88bd3b2602 + - 7ce6c509-dd26-4cca-8f56-4edcf91b0697 status: code: 202 message: Accepted @@ -216,13 +231,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3225775e-7f3f-4ce7-a9e8-8b88bd3b2602 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7ce6c509-dd26-4cca-8f56-4edcf91b0697 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-04T07:21:30.0848824", - "lastUpdatedTimeUtc": "2026-02-04T07:21:38.1005213", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-22T09:01:13.6964767", + "lastUpdatedTimeUtc": "2026-05-22T09:01:20.0483386", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -232,17 +247,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '130' + - '132' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:21:50 GMT + - Fri, 22 May 2026 09:01:34 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3225775e-7f3f-4ce7-a9e8-8b88bd3b2602/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7ce6c509-dd26-4cca-8f56-4edcf91b0697/result Pragma: - no-cache RequestId: - - 4ad87f1d-17d4-406d-8692-b7824abc1df7 + - ded00dc7-1f3f-4f4c-9c67-0f601b913b61 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -250,7 +265,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 3225775e-7f3f-4ce7-a9e8-8b88bd3b2602 + - 7ce6c509-dd26-4cca-8f56-4edcf91b0697 status: code: 200 message: OK @@ -266,14 +281,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3225775e-7f3f-4ce7-a9e8-8b88bd3b2602/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7ce6c509-dd26-4cca-8f56-4edcf91b0697/result response: body: - string: '{"id": "df2dbdbe-50ed-4667-a4b0-6b9ef01887b1", "type": "CosmosDBDatabase", - "displayName": "fabcli000001", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}' + string: '{"id": "689fb362-b68d-435b-87e7-e406f907f052", "type": "CosmosDBDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId @@ -284,11 +298,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 04 Feb 2026 07:21:52 GMT + - Fri, 22 May 2026 09:01:36 GMT Pragma: - no-cache RequestId: - - f12bc846-2026-429b-b9e8-bc847c3ee924 + - 8915e4a3-8c15-411f-ad17-70342739a97a Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -312,14 +326,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": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -328,15 +343,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2738' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:21:53 GMT + - Fri, 22 May 2026 09:01:36 GMT Pragma: - no-cache RequestId: - - 95159b19-b29b-44e3-99d5-0f0b2f6183b0 + - b8f35350-481f-4c04-bc4f-c63cb4793e77 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -362,14 +377,23 @@ 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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "df2dbdbe-50ed-4667-a4b0-6b9ef01887b1", "type": "CosmosDBDatabase", - "displayName": "fabcli000001", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "6dffe3a2-a1c1-44c1-9556-bf615a937029", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "689fb362-b68d-435b-87e7-e406f907f052", "type": "CosmosDBDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -378,15 +402,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '181' + - '362' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:21:53 GMT + - Fri, 22 May 2026 09:01:37 GMT Pragma: - no-cache RequestId: - - a1acf2fa-5d26-4cf2-90e1-e18d78314694 + - a9a5f1dc-b438-468a-9bf1-2962c68feaba Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -412,14 +436,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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/cosmosDbDatabases/df2dbdbe-50ed-4667-a4b0-6b9ef01887b1 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/cosmosDbDatabases/689fb362-b68d-435b-87e7-e406f907f052 response: body: - string: '{"id": "df2dbdbe-50ed-4667-a4b0-6b9ef01887b1", "type": "CosmosDBDatabase", - "displayName": "fabcli000001", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}' + string: '{"id": "689fb362-b68d-435b-87e7-e406f907f052", "type": "CosmosDBDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -428,17 +451,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '170' + - '162' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:21:54 GMT + - Fri, 22 May 2026 09:01:38 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 0c93ac61-ca99-4578-b15e-d29bf3511dc7 + - 24aa9b60-16b0-4226-9532-92dced385313 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -466,14 +489,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/cosmosDbDatabases/df2dbdbe-50ed-4667-a4b0-6b9ef01887b1 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/cosmosDbDatabases/689fb362-b68d-435b-87e7-e406f907f052 response: body: - string: '{"requestId": "2813becf-5027-4c11-829a-f7fd81acd17a", "errorCode": + string: '{"requestId": "81319977-a191-496b-8ec1-7728428bd825", "errorCode": "CosmosDBDatabaseDisplayNameCannotBeChanged", "message": "The display name - of CosmosDBDatabase items cannot be changed"}' + of CosmosDBDatabase items cannot be changed", "isRetriable": false}' headers: Access-Control-Expose-Headers: - RequestId @@ -482,11 +505,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:21:56 GMT + - Fri, 22 May 2026 09:01:38 GMT Pragma: - no-cache RequestId: - - 2813becf-5027-4c11-829a-f7fd81acd17a + - 81319977-a191-496b-8ec1-7728428bd825 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -516,14 +539,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": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -532,15 +556,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2738' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:21:56 GMT + - Fri, 22 May 2026 09:01:40 GMT Pragma: - no-cache RequestId: - - c00c3897-c3c7-4ffb-b74b-abf82c710014 + - e5d7b709-93a4-4287-b9b8-b695a5455082 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -566,14 +590,23 @@ 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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "df2dbdbe-50ed-4667-a4b0-6b9ef01887b1", "type": "CosmosDBDatabase", - "displayName": "fabcli000001", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "6dffe3a2-a1c1-44c1-9556-bf615a937029", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "689fb362-b68d-435b-87e7-e406f907f052", "type": "CosmosDBDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -582,15 +615,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '181' + - '362' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:21:56 GMT + - Fri, 22 May 2026 09:01:41 GMT Pragma: - no-cache RequestId: - - 1bb17ecb-a6e3-4b39-b516-5896932ebd7f + - 454c0094-8bfc-4944-a76d-8eb86f8ba5be Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -618,9 +651,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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items/df2dbdbe-50ed-4667-a4b0-6b9ef01887b1 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/689fb362-b68d-435b-87e7-e406f907f052 response: body: string: '' @@ -636,11 +669,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 04 Feb 2026 07:21:58 GMT + - Fri, 22 May 2026 09:01:41 GMT Pragma: - no-cache RequestId: - - c6106f17-3d1c-4238-9359-bdd9b5f53260 + - 3d1181fa-9da4-41fb-856f-3a40aa3d6999 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_cosmosdb_database_metadata_success.yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_cosmosdb_database_metadata_success.yaml index 5b8589a7c..ff10b8799 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_cosmosdb_database_metadata_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_cosmosdb_database_metadata_success.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": "2f821edf-614b-4cf7-ba07-c789b53a050f", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2940' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 07:51:57 GMT + - Fri, 22 May 2026 09:00:34 GMT Pragma: - no-cache RequestId: - - 0a68cff9-210a-49c2-a6bc-ff388cbd5288 + - 3861860c-aba4-469f-b6b7-da4c0acdb172 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,12 +62,19 @@ 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/2f821edf-614b-4cf7-ba07-c789b53a050f/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -75,15 +83,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '280' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 07:51:58 GMT + - Fri, 22 May 2026 09:00:35 GMT Pragma: - no-cache RequestId: - - b6db026a-73fd-4133-ab16-e36a91401d4e + - 66ed58ad-4699-4575-af58-1a1a3aa08901 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,12 +117,19 @@ 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/2f821edf-614b-4cf7-ba07-c789b53a050f/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -123,15 +138,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '280' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 07:51:58 GMT + - Fri, 22 May 2026 09:00:35 GMT Pragma: - no-cache RequestId: - - 0dd08fa0-1878-4d31-83b4-99b12e4ee2a0 + - c9288e51-d651-4c22-bbb2-d77915cf5cb4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -146,7 +161,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 +172,12 @@ interactions: - keep-alive Content-Length: - '81' - 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/2f821edf-614b-4cf7-ba07-c789b53a050f/cosmosDbDatabases + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/cosmosDbDatabases response: body: string: 'null' @@ -178,15 +193,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 07:52:03 GMT + - Fri, 22 May 2026 09:00:37 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d2ac1801-a6f7-4429-95a7-94a23af4cd53 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d4dd0785-d64c-4ca3-9114-9d8d570b73fc Pragma: - no-cache RequestId: - - 913b88d2-918f-49ad-b315-23e9b3f230d2 + - 41c08f6b-4b35-46d5-8b21-a75b3f60b445 Retry-After: - '20' Strict-Transport-Security: @@ -200,7 +215,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - d2ac1801-a6f7-4429-95a7-94a23af4cd53 + - d4dd0785-d64c-4ca3-9114-9d8d570b73fc status: code: 202 message: Accepted @@ -216,13 +231,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d2ac1801-a6f7-4429-95a7-94a23af4cd53 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d4dd0785-d64c-4ca3-9114-9d8d570b73fc response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-11T07:52:01.1540194", - "lastUpdatedTimeUtc": "2026-02-11T07:52:11.6462973", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-22T09:00:36.9810636", + "lastUpdatedTimeUtc": "2026-05-22T09:00:46.5450411", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -236,13 +251,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 07:52:25 GMT + - Fri, 22 May 2026 09:00:58 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d2ac1801-a6f7-4429-95a7-94a23af4cd53/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d4dd0785-d64c-4ca3-9114-9d8d570b73fc/result Pragma: - no-cache RequestId: - - 82e0a3e5-99f8-447b-ad25-cec053fccfd7 + - 79c1b551-4fe9-4162-8785-70dd06eb9fdd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -250,7 +265,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - d2ac1801-a6f7-4429-95a7-94a23af4cd53 + - d4dd0785-d64c-4ca3-9114-9d8d570b73fc status: code: 200 message: OK @@ -266,14 +281,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d2ac1801-a6f7-4429-95a7-94a23af4cd53/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d4dd0785-d64c-4ca3-9114-9d8d570b73fc/result response: body: - string: '{"id": "ed8da6da-199e-47ac-b1ba-a0349911da00", "type": "CosmosDBDatabase", - "displayName": "fabcli000001", "workspaceId": - "2f821edf-614b-4cf7-ba07-c789b53a050f"}' + string: '{"id": "0fda102b-151e-4335-96a5-6948db9150dd", "type": "CosmosDBDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId @@ -284,11 +298,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 11 Feb 2026 07:52:25 GMT + - Fri, 22 May 2026 09:01:00 GMT Pragma: - no-cache RequestId: - - 457fe4ed-3c94-4578-9cac-0d5eb7c4c212 + - 8510185d-455d-4199-92e4-9626f60bb2e2 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -312,14 +326,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": "2f821edf-614b-4cf7-ba07-c789b53a050f", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -328,15 +343,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2940' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 07:52:26 GMT + - Fri, 22 May 2026 09:01:00 GMT Pragma: - no-cache RequestId: - - 8e3a7617-889f-4a35-8049-7c7b00a9241d + - d2ea3b58-ee18-4857-8865-e53dcbe8894e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -362,14 +377,21 @@ 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/2f821edf-614b-4cf7-ba07-c789b53a050f/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "ed8da6da-199e-47ac-b1ba-a0349911da00", "type": "CosmosDBDatabase", - "displayName": "fabcli000001", "workspaceId": - "2f821edf-614b-4cf7-ba07-c789b53a050f"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "0fda102b-151e-4335-96a5-6948db9150dd", "type": "CosmosDBDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -378,15 +400,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '182' + - '330' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 07:52:28 GMT + - Fri, 22 May 2026 09:01:01 GMT Pragma: - no-cache RequestId: - - 733d1915-46b1-4a50-8e09-f488817d7e64 + - 0c27f094-6291-402a-b10a-8a0963301499 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -412,14 +434,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/2f821edf-614b-4cf7-ba07-c789b53a050f/cosmosDbDatabases/ed8da6da-199e-47ac-b1ba-a0349911da00 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/cosmosDbDatabases/0fda102b-151e-4335-96a5-6948db9150dd response: body: - string: '{"id": "ed8da6da-199e-47ac-b1ba-a0349911da00", "type": "CosmosDBDatabase", - "displayName": "fabcli000001", "workspaceId": - "2f821edf-614b-4cf7-ba07-c789b53a050f"}' + string: '{"id": "0fda102b-151e-4335-96a5-6948db9150dd", "type": "CosmosDBDatabase", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -428,17 +449,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '171' + - '163' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 07:52:27 GMT + - Fri, 22 May 2026 09:01:02 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 131ac00d-4de0-4ee4-941a-dc86c01e1e75 + - 332c0519-1b63-4116-95a3-ad44c99823fd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -466,14 +487,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/2f821edf-614b-4cf7-ba07-c789b53a050f/cosmosDbDatabases/ed8da6da-199e-47ac-b1ba-a0349911da00 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/cosmosDbDatabases/0fda102b-151e-4335-96a5-6948db9150dd response: body: - string: '{"id": "ed8da6da-199e-47ac-b1ba-a0349911da00", "type": "CosmosDBDatabase", + string: '{"id": "0fda102b-151e-4335-96a5-6948db9150dd", "type": "CosmosDBDatabase", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "2f821edf-614b-4cf7-ba07-c789b53a050f"}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -482,17 +503,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '169' + - '170' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 07:52:31 GMT + - Fri, 22 May 2026 09:01:03 GMT ETag: - '""' Pragma: - no-cache RequestId: - - d904633d-11e4-4a1f-b008-860ad568c37e + - 2480d14e-bef3-4852-93c9-b8bd7fe4a372 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -518,14 +539,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": "2f821edf-614b-4cf7-ba07-c789b53a050f", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -534,15 +556,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2940' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 07:52:32 GMT + - Fri, 22 May 2026 09:01:04 GMT Pragma: - no-cache RequestId: - - 1fdb6b2b-b24f-4055-9e2b-efcdd1304817 + - dacc72eb-a5b2-4f01-b5f0-2a89c171c09d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -568,14 +590,24 @@ 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/2f821edf-614b-4cf7-ba07-c789b53a050f/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "ed8da6da-199e-47ac-b1ba-a0349911da00", "type": "CosmosDBDatabase", + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "ab1a07fb-02e9-4bb1-81f0-7221391ce3fa", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "0fda102b-151e-4335-96a5-6948db9150dd", "type": "CosmosDBDatabase", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "2f821edf-614b-4cf7-ba07-c789b53a050f"}]}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -584,15 +616,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '181' + - '370' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 07:52:33 GMT + - Fri, 22 May 2026 09:01:05 GMT Pragma: - no-cache RequestId: - - 5d6ab94f-cfe0-4f1f-89c5-dbbbffabe3ab + - 1bbadf85-9020-4662-80bf-b476905384a6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -618,14 +650,14 @@ 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/2f821edf-614b-4cf7-ba07-c789b53a050f/cosmosDbDatabases/ed8da6da-199e-47ac-b1ba-a0349911da00 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/cosmosDbDatabases/0fda102b-151e-4335-96a5-6948db9150dd response: body: - string: '{"id": "ed8da6da-199e-47ac-b1ba-a0349911da00", "type": "CosmosDBDatabase", + string: '{"id": "0fda102b-151e-4335-96a5-6948db9150dd", "type": "CosmosDBDatabase", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "2f821edf-614b-4cf7-ba07-c789b53a050f"}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -634,17 +666,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '169' + - '170' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 07:52:33 GMT + - Fri, 22 May 2026 09:01:05 GMT ETag: - '""' Pragma: - no-cache RequestId: - - c1094220-790e-4d6e-81f6-7ebec6803570 + - 13bb8b56-ba23-4576-bfd1-e468aea13dd6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -670,9 +702,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/2f821edf-614b-4cf7-ba07-c789b53a050f/items/ed8da6da-199e-47ac-b1ba-a0349911da00/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/0fda102b-151e-4335-96a5-6948db9150dd/connections response: body: string: '{"value": []}' @@ -688,11 +720,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 07:52:35 GMT + - Fri, 22 May 2026 09:01:07 GMT Pragma: - no-cache RequestId: - - 8ebf8728-e2a3-450f-87b3-398c905760f8 + - e09cb09d-e5b8-462e-afe9-7daec26c04ad Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -718,14 +750,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": "2f821edf-614b-4cf7-ba07-c789b53a050f", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -734,15 +767,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2940' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 07:52:35 GMT + - Fri, 22 May 2026 09:01:07 GMT Pragma: - no-cache RequestId: - - 41ca1474-3667-46b1-aac2-51dde9c431b7 + - dcb38c76-d69d-49d9-b91a-39c145a72057 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -768,16 +801,24 @@ 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/2f821edf-614b-4cf7-ba07-c789b53a050f/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "97b09031-369d-49fa-a6c7-5a2f2a95abdc", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "2f821edf-614b-4cf7-ba07-c789b53a050f"}, - {"id": "ed8da6da-199e-47ac-b1ba-a0349911da00", "type": "CosmosDBDatabase", + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "ab1a07fb-02e9-4bb1-81f0-7221391ce3fa", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "0fda102b-151e-4335-96a5-6948db9150dd", "type": "CosmosDBDatabase", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "2f821edf-614b-4cf7-ba07-c789b53a050f"}]}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -786,15 +827,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '230' + - '370' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 07:52:36 GMT + - Fri, 22 May 2026 09:01:08 GMT Pragma: - no-cache RequestId: - - 4327f54e-c009-463d-82a1-4b67f187ad2f + - 7d618416-02c6-4344-b4fb-5c1ac0f88d2d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -822,9 +863,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/2f821edf-614b-4cf7-ba07-c789b53a050f/items/ed8da6da-199e-47ac-b1ba-a0349911da00 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/0fda102b-151e-4335-96a5-6948db9150dd response: body: string: '' @@ -840,11 +881,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 11 Feb 2026 07:52:37 GMT + - Fri, 22 May 2026 09:01:09 GMT Pragma: - no-cache RequestId: - - 68e054ef-da14-40fe-8886-0640214b0510 + - 6a92b6b6-b153-4c92-9f1e-d7fb84779b12 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_domain_contributors_scope_success.yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_domain_contributors_scope_success.yaml index d912735d5..ce079d384 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_domain_contributors_scope_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_domain_contributors_scope_success.yaml @@ -11,7 +11,7 @@ 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/admin/domains response: @@ -29,11 +29,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 07:30:15 GMT + - Fri, 22 May 2026 09:04:30 GMT Pragma: - no-cache RequestId: - - 089eb3b6-21b5-49de-8907-36e7d764d10e + - 36fe70eb-1ee9-4fdb-a531-0c798875c9b5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,12 +61,12 @@ interactions: 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/admin/domains response: body: - string: '{"contributorsScope": "AllTenant", "id": "ae92e8ce-184b-480d-9bfb-21dbb8791590", + string: '{"contributorsScope": "AllTenant", "id": "2656a830-696f-4bae-949c-4fa13974b5fe", "displayName": "fabcli000001", "description": ""}' headers: Access-Control-Expose-Headers: @@ -76,17 +76,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '133' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 07:30:15 GMT + - Fri, 22 May 2026 09:04:31 GMT Location: - - https://api.fabric.microsoft.com/v1/admin/domains/ae92e8ce-184b-480d-9bfb-21dbb8791590 + - https://api.fabric.microsoft.com/v1/admin/domains/2656a830-696f-4bae-949c-4fa13974b5fe Pragma: - no-cache RequestId: - - 8326b970-b5a1-4b37-9051-7ddecc1552c1 + - af5e1563-cc1e-4ba6-9a0f-b5cc1c1e2a74 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -112,12 +112,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/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AllTenant", "id": "ae92e8ce-184b-480d-9bfb-21dbb8791590", + string: '{"domains": [{"contributorsScope": "AllTenant", "id": "2656a830-696f-4bae-949c-4fa13974b5fe", "displayName": "fabcli000001", "description": ""}]}' headers: Access-Control-Expose-Headers: @@ -127,15 +127,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '228' + - '226' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 07:30:16 GMT + - Fri, 22 May 2026 09:04:31 GMT Pragma: - no-cache RequestId: - - c5a475c1-8ae0-420c-9e80-43a19e1b11dd + - 08d9e7b9-a4c7-45c4-b1d4-1b8a8c3c1d08 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -161,12 +161,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/admin/domains/ae92e8ce-184b-480d-9bfb-21dbb8791590 + uri: https://api.fabric.microsoft.com/v1/admin/domains/2656a830-696f-4bae-949c-4fa13974b5fe response: body: - string: '{"contributorsScope": "AllTenant", "id": "ae92e8ce-184b-480d-9bfb-21dbb8791590", + string: '{"contributorsScope": "AllTenant", "id": "2656a830-696f-4bae-949c-4fa13974b5fe", "displayName": "fabcli000001", "description": ""}' headers: Access-Control-Expose-Headers: @@ -176,15 +176,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '133' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 07:30:17 GMT + - Fri, 22 May 2026 09:04:32 GMT Pragma: - no-cache RequestId: - - e1bdc881-0a7d-4a67-8395-63d7ecb7e1b9 + - 0714a6e9-2075-40a7-aacb-d457cb78c2ea Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -210,9 +210,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/admin/domains/ae92e8ce-184b-480d-9bfb-21dbb8791590/workspaces + uri: https://api.fabric.microsoft.com/v1/admin/domains/2656a830-696f-4bae-949c-4fa13974b5fe/workspaces response: body: string: '{"value": []}' @@ -228,11 +228,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 07:30:18 GMT + - Fri, 22 May 2026 09:04:33 GMT Pragma: - no-cache RequestId: - - 1fb8a879-b156-4cc0-bff7-763b61f4165c + - 1fb8ce52-fc60-47e4-816b-a7b256e31387 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -260,12 +260,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/admin/domains/ae92e8ce-184b-480d-9bfb-21dbb8791590 + uri: https://api.fabric.microsoft.com/v1/admin/domains/2656a830-696f-4bae-949c-4fa13974b5fe response: body: - string: '{"contributorsScope": "AdminsOnly", "id": "ae92e8ce-184b-480d-9bfb-21dbb8791590", + string: '{"contributorsScope": "AdminsOnly", "id": "2656a830-696f-4bae-949c-4fa13974b5fe", "displayName": "fabcli000001", "description": ""}' headers: Access-Control-Expose-Headers: @@ -275,15 +275,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '133' + - '134' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 07:30:18 GMT + - Fri, 22 May 2026 09:04:34 GMT Pragma: - no-cache RequestId: - - 1b27b5b4-0a0e-48ff-b828-d4e259237e28 + - 08df9342-4d53-46bc-b99d-e97bbfeaaf83 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -309,12 +309,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/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AdminsOnly", "id": "ae92e8ce-184b-480d-9bfb-21dbb8791590", + string: '{"domains": [{"contributorsScope": "AdminsOnly", "id": "2656a830-696f-4bae-949c-4fa13974b5fe", "displayName": "fabcli000001", "description": ""}]}' headers: Access-Control-Expose-Headers: @@ -328,11 +328,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 07:30:20 GMT + - Fri, 22 May 2026 09:04:35 GMT Pragma: - no-cache RequestId: - - 399c895c-dad3-49e7-b097-639b0166a45f + - 0a7e5235-4428-4e79-aa5e-7f9653f55228 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -358,12 +358,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/admin/domains/ae92e8ce-184b-480d-9bfb-21dbb8791590 + uri: https://api.fabric.microsoft.com/v1/admin/domains/2656a830-696f-4bae-949c-4fa13974b5fe response: body: - string: '{"contributorsScope": "AdminsOnly", "id": "ae92e8ce-184b-480d-9bfb-21dbb8791590", + string: '{"contributorsScope": "AdminsOnly", "id": "2656a830-696f-4bae-949c-4fa13974b5fe", "displayName": "fabcli000001", "description": ""}' headers: Access-Control-Expose-Headers: @@ -373,15 +373,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '133' + - '134' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 07:30:20 GMT + - Fri, 22 May 2026 09:04:35 GMT Pragma: - no-cache RequestId: - - 4ab6f356-dc91-4eec-9ea1-d3d10dbebf51 + - a416f42b-4731-457f-9770-025f7f4b7121 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -407,9 +407,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/admin/domains/ae92e8ce-184b-480d-9bfb-21dbb8791590/workspaces + uri: https://api.fabric.microsoft.com/v1/admin/domains/2656a830-696f-4bae-949c-4fa13974b5fe/workspaces response: body: string: '{"value": []}' @@ -425,11 +425,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 07:30:21 GMT + - Fri, 22 May 2026 09:04:36 GMT Pragma: - no-cache RequestId: - - bd23806e-d96f-4525-8dfe-4d3f4f986fe2 + - b690af0a-5c6c-4d2a-b410-ce76c573fe21 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -455,12 +455,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/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AdminsOnly", "id": "ae92e8ce-184b-480d-9bfb-21dbb8791590", + string: '{"domains": [{"contributorsScope": "AdminsOnly", "id": "2656a830-696f-4bae-949c-4fa13974b5fe", "displayName": "fabcli000001", "description": ""}]}' headers: Access-Control-Expose-Headers: @@ -474,11 +474,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 07:30:22 GMT + - Fri, 22 May 2026 09:04:37 GMT Pragma: - no-cache RequestId: - - 2b16f008-6b54-4b0f-ba12-52ee83251eb6 + - 3691576d-8a78-493a-8f60-6dba9d3b48a2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -506,9 +506,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/admin/domains/ae92e8ce-184b-480d-9bfb-21dbb8791590 + uri: https://api.fabric.microsoft.com/v1/admin/domains/2656a830-696f-4bae-949c-4fa13974b5fe response: body: string: '' @@ -524,11 +524,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 11 Feb 2026 07:30:22 GMT + - Fri, 22 May 2026 09:04:38 GMT Pragma: - no-cache RequestId: - - 40b06029-d6e7-4470-862c-f0aa0863681e + - 4a9db1df-1a14-4c4a-aac3-9dc214e6960f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_domain_invalid_query_failure.yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_domain_invalid_query_failure.yaml index a18e0835e..bb296e3e3 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_domain_invalid_query_failure.yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_domain_invalid_query_failure.yaml @@ -11,7 +11,7 @@ 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/admin/domains response: @@ -29,11 +29,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:24:47 GMT + - Fri, 22 May 2026 09:10:15 GMT Pragma: - no-cache RequestId: - - 2ee6b58d-6a78-4d42-9c6d-b54537ff7a6a + - 217f99b4-d2dc-4189-8e5e-8926bbe46d2b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,12 +61,12 @@ interactions: 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/admin/domains response: body: - string: '{"contributorsScope": "AllTenant", "id": "7b0db65d-d043-4369-808c-35aba01a1ccc", + string: '{"contributorsScope": "AllTenant", "id": "d5dbae34-2d9c-4f66-b075-f8badefca348", "displayName": "fabcli000001", "description": ""}' headers: Access-Control-Expose-Headers: @@ -76,17 +76,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '133' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:24:47 GMT + - Fri, 22 May 2026 09:10:16 GMT Location: - - https://api.fabric.microsoft.com/v1/admin/domains/7b0db65d-d043-4369-808c-35aba01a1ccc + - https://api.fabric.microsoft.com/v1/admin/domains/d5dbae34-2d9c-4f66-b075-f8badefca348 Pragma: - no-cache RequestId: - - 860f1319-0585-4e15-b9be-b36814bcfa83 + - 150ebcc0-d562-404c-8525-bafec3b32b8b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -112,12 +112,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/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AllTenant", "id": "7b0db65d-d043-4369-808c-35aba01a1ccc", + string: '{"domains": [{"contributorsScope": "AllTenant", "id": "d5dbae34-2d9c-4f66-b075-f8badefca348", "displayName": "fabcli000001", "description": ""}]}' headers: Access-Control-Expose-Headers: @@ -127,15 +127,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '225' + - '226' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:24:49 GMT + - Fri, 22 May 2026 09:10:16 GMT Pragma: - no-cache RequestId: - - 4bbffd6e-ca60-4c57-bfae-33e3aec5ebb2 + - ee3292ed-fdf4-4076-aacf-94c1971eebc0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -161,12 +161,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/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AllTenant", "id": "7b0db65d-d043-4369-808c-35aba01a1ccc", + string: '{"domains": [{"contributorsScope": "AllTenant", "id": "d5dbae34-2d9c-4f66-b075-f8badefca348", "displayName": "fabcli000001", "description": ""}]}' headers: Access-Control-Expose-Headers: @@ -176,15 +176,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '225' + - '226' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:24:50 GMT + - Fri, 22 May 2026 09:10:18 GMT Pragma: - no-cache RequestId: - - b02787bf-b626-4e3a-aad7-48073eb3e9e4 + - ba7a24f5-9106-435b-836a-b0f02de52a88 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -212,9 +212,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/admin/domains/7b0db65d-d043-4369-808c-35aba01a1ccc + uri: https://api.fabric.microsoft.com/v1/admin/domains/d5dbae34-2d9c-4f66-b075-f8badefca348 response: body: string: '' @@ -230,11 +230,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 29 Jan 2026 13:24:50 GMT + - Fri, 22 May 2026 09:10:19 GMT Pragma: - no-cache RequestId: - - 8eb7162a-0b3c-4a4f-85da-eb0f48c73cd1 + - 474c0433-f46f-4c97-a86c-7516f1a674a1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_domain_metadata_success[description].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_domain_metadata_success[description].yaml index 2bc605e47..7d1008ae5 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_domain_metadata_success[description].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_domain_metadata_success[description].yaml @@ -11,7 +11,7 @@ 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/admin/domains response: @@ -29,11 +29,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:35 GMT + - Fri, 22 May 2026 09:10:20 GMT Pragma: - no-cache RequestId: - - e9bf5aec-8e49-4e63-a72b-f30f7fa2551a + - c0b24eda-fcc2-4aac-809a-997bb5a3a834 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,12 +61,12 @@ interactions: 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/admin/domains response: body: - string: '{"contributorsScope": "AllTenant", "id": "e9143174-484b-4c57-a2d0-b7fcbbf2939b", + string: '{"contributorsScope": "AllTenant", "id": "3927ddb8-4aee-4ab7-952c-bc51abfd81fb", "displayName": "fabcli000001", "description": ""}' headers: Access-Control-Expose-Headers: @@ -76,17 +76,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '133' + - '132' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:37 GMT + - Fri, 22 May 2026 09:10:20 GMT Location: - - https://api.fabric.microsoft.com/v1/admin/domains/e9143174-484b-4c57-a2d0-b7fcbbf2939b + - https://api.fabric.microsoft.com/v1/admin/domains/3927ddb8-4aee-4ab7-952c-bc51abfd81fb Pragma: - no-cache RequestId: - - 65a00744-5f40-46fb-9ca8-ae664988d0f6 + - 22e6a83f-6c1e-4b88-9372-cd732a24480e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -112,12 +112,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/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AllTenant", "id": "e9143174-484b-4c57-a2d0-b7fcbbf2939b", + string: '{"domains": [{"contributorsScope": "AllTenant", "id": "3927ddb8-4aee-4ab7-952c-bc51abfd81fb", "displayName": "fabcli000001", "description": ""}]}' headers: Access-Control-Expose-Headers: @@ -127,15 +127,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '226' + - '225' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:37 GMT + - Fri, 22 May 2026 09:10:21 GMT Pragma: - no-cache RequestId: - - 25dba73d-79b4-4316-8aab-63bd7cbb6021 + - e3dd2548-8c89-4dc5-88ab-fe2f9a0a4952 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -161,12 +161,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/admin/domains/e9143174-484b-4c57-a2d0-b7fcbbf2939b + uri: https://api.fabric.microsoft.com/v1/admin/domains/3927ddb8-4aee-4ab7-952c-bc51abfd81fb response: body: - string: '{"contributorsScope": "AllTenant", "id": "e9143174-484b-4c57-a2d0-b7fcbbf2939b", + string: '{"contributorsScope": "AllTenant", "id": "3927ddb8-4aee-4ab7-952c-bc51abfd81fb", "displayName": "fabcli000001", "description": ""}' headers: Access-Control-Expose-Headers: @@ -176,15 +176,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '133' + - '132' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:37 GMT + - Fri, 22 May 2026 09:10:22 GMT Pragma: - no-cache RequestId: - - 8409c81d-3818-4874-86c1-4fbe8ecf238e + - e7ecea8b-2047-4cb5-8589-0976bd046d2f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -210,9 +210,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/admin/domains/e9143174-484b-4c57-a2d0-b7fcbbf2939b/workspaces + uri: https://api.fabric.microsoft.com/v1/admin/domains/3927ddb8-4aee-4ab7-952c-bc51abfd81fb/workspaces response: body: string: '{"value": []}' @@ -228,11 +228,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:38 GMT + - Fri, 22 May 2026 09:10:23 GMT Pragma: - no-cache RequestId: - - e80114ad-a23b-4588-abf6-91e8e1f70336 + - a5c1722c-149a-48b4-95ac-80d97f4a7bc6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -256,16 +256,16 @@ interactions: Connection: - keep-alive Content-Length: - - '41' + - '35' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/admin/domains/e9143174-484b-4c57-a2d0-b7fcbbf2939b + uri: https://api.fabric.microsoft.com/v1/admin/domains/3927ddb8-4aee-4ab7-952c-bc51abfd81fb response: body: - string: '{"contributorsScope": "AllTenant", "id": "e9143174-484b-4c57-a2d0-b7fcbbf2939b", + string: '{"contributorsScope": "AllTenant", "id": "3927ddb8-4aee-4ab7-952c-bc51abfd81fb", "displayName": "fabcli000001", "description": "fabcli000002"}' headers: Access-Control-Expose-Headers: @@ -279,11 +279,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:39 GMT + - Fri, 22 May 2026 09:10:23 GMT Pragma: - no-cache RequestId: - - a169fc1f-8c52-4636-9e12-06f94518f6ce + - 6a1a205b-ddd4-4592-91b1-03b083bc9ced Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -309,12 +309,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/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AllTenant", "id": "e9143174-484b-4c57-a2d0-b7fcbbf2939b", + string: '{"domains": [{"contributorsScope": "AllTenant", "id": "3927ddb8-4aee-4ab7-952c-bc51abfd81fb", "displayName": "fabcli000001", "description": "fabcli000002"}]}' headers: Access-Control-Expose-Headers: @@ -324,15 +324,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '237' + - '236' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:38 GMT + - Fri, 22 May 2026 09:10:24 GMT Pragma: - no-cache RequestId: - - 4667d2d7-0593-4030-ba9c-b00d168fad0d + - 8b6240e7-84b8-44d7-a200-121e401b00ef Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -358,12 +358,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/admin/domains/e9143174-484b-4c57-a2d0-b7fcbbf2939b + uri: https://api.fabric.microsoft.com/v1/admin/domains/3927ddb8-4aee-4ab7-952c-bc51abfd81fb response: body: - string: '{"contributorsScope": "AllTenant", "id": "e9143174-484b-4c57-a2d0-b7fcbbf2939b", + string: '{"contributorsScope": "AllTenant", "id": "3927ddb8-4aee-4ab7-952c-bc51abfd81fb", "displayName": "fabcli000001", "description": "fabcli000002"}' headers: Access-Control-Expose-Headers: @@ -377,11 +377,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:40 GMT + - Fri, 22 May 2026 09:10:25 GMT Pragma: - no-cache RequestId: - - 1f6e0186-30fb-4ba8-becd-dd302df89420 + - 847dd855-abc4-427f-b09d-c582c8a4e3c6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -407,9 +407,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/admin/domains/e9143174-484b-4c57-a2d0-b7fcbbf2939b/workspaces + uri: https://api.fabric.microsoft.com/v1/admin/domains/3927ddb8-4aee-4ab7-952c-bc51abfd81fb/workspaces response: body: string: '{"value": []}' @@ -425,11 +425,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:40 GMT + - Fri, 22 May 2026 09:10:26 GMT Pragma: - no-cache RequestId: - - a49f852b-7091-4505-b80e-1ab0815e9dd0 + - 7ad0f93b-9a2b-4f14-b7ee-8e27e7b23267 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -455,12 +455,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/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AllTenant", "id": "e9143174-484b-4c57-a2d0-b7fcbbf2939b", + string: '{"domains": [{"contributorsScope": "AllTenant", "id": "3927ddb8-4aee-4ab7-952c-bc51abfd81fb", "displayName": "fabcli000001", "description": "fabcli000002"}]}' headers: Access-Control-Expose-Headers: @@ -470,15 +470,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '237' + - '236' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:40 GMT + - Fri, 22 May 2026 09:10:27 GMT Pragma: - no-cache RequestId: - - d87837f0-aacb-4057-a81e-1e14311f1fe9 + - da6f157e-8ebe-4e5b-b431-f0ca82b4e6d0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -506,9 +506,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/admin/domains/e9143174-484b-4c57-a2d0-b7fcbbf2939b + uri: https://api.fabric.microsoft.com/v1/admin/domains/3927ddb8-4aee-4ab7-952c-bc51abfd81fb response: body: string: '' @@ -524,11 +524,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 31 Dec 2025 14:35:42 GMT + - Fri, 22 May 2026 09:10:28 GMT Pragma: - no-cache RequestId: - - 666228d8-a920-4897-91d2-989cdcdde034 + - cf644f62-5792-43cd-9e8b-dce109016675 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_domain_metadata_success[displayName].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_domain_metadata_success[displayName].yaml index 54f712647..7a81a06dc 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_domain_metadata_success[displayName].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_domain_metadata_success[displayName].yaml @@ -11,7 +11,7 @@ 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/admin/domains response: @@ -29,11 +29,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:42 GMT + - Fri, 22 May 2026 09:10:28 GMT Pragma: - no-cache RequestId: - - 2ed0db0e-2aa5-4399-b7b2-442a8b06af98 + - 5a5fc120-416b-429e-9b7c-ae4d064ce6b6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,12 +61,12 @@ interactions: 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/admin/domains response: body: - string: '{"contributorsScope": "AllTenant", "id": "95349897-ec23-4470-b567-4daa6192d06c", + string: '{"contributorsScope": "AllTenant", "id": "2a9587ff-fbbe-4994-b79c-212e51e1570a", "displayName": "fabcli000001", "description": ""}' headers: Access-Control-Expose-Headers: @@ -76,17 +76,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:43 GMT + - Fri, 22 May 2026 09:10:29 GMT Location: - - https://api.fabric.microsoft.com/v1/admin/domains/95349897-ec23-4470-b567-4daa6192d06c + - https://api.fabric.microsoft.com/v1/admin/domains/2a9587ff-fbbe-4994-b79c-212e51e1570a Pragma: - no-cache RequestId: - - 4f4b31f7-af56-4636-8417-ec5114793172 + - d1b40980-81a5-46e3-b62a-b6fb1fd63498 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -112,12 +112,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/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AllTenant", "id": "95349897-ec23-4470-b567-4daa6192d06c", + string: '{"domains": [{"contributorsScope": "AllTenant", "id": "2a9587ff-fbbe-4994-b79c-212e51e1570a", "displayName": "fabcli000001", "description": ""}]}' headers: Access-Control-Expose-Headers: @@ -127,15 +127,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '226' + - '225' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:43 GMT + - Fri, 22 May 2026 09:10:30 GMT Pragma: - no-cache RequestId: - - fb73a0dc-728a-48ac-b4ea-a162773e59e0 + - 5cb9f811-a2e9-4ff6-a0d2-3ba068339a88 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -161,12 +161,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/admin/domains/95349897-ec23-4470-b567-4daa6192d06c + uri: https://api.fabric.microsoft.com/v1/admin/domains/2a9587ff-fbbe-4994-b79c-212e51e1570a response: body: - string: '{"contributorsScope": "AllTenant", "id": "95349897-ec23-4470-b567-4daa6192d06c", + string: '{"contributorsScope": "AllTenant", "id": "2a9587ff-fbbe-4994-b79c-212e51e1570a", "displayName": "fabcli000001", "description": ""}' headers: Access-Control-Expose-Headers: @@ -176,15 +176,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:44 GMT + - Fri, 22 May 2026 09:10:31 GMT Pragma: - no-cache RequestId: - - 43fd7f54-5729-40d4-b4a0-b5539f17a498 + - d5282caa-84b1-4ac4-bd0e-8129e180921a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -210,9 +210,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/admin/domains/95349897-ec23-4470-b567-4daa6192d06c/workspaces + uri: https://api.fabric.microsoft.com/v1/admin/domains/2a9587ff-fbbe-4994-b79c-212e51e1570a/workspaces response: body: string: '{"value": []}' @@ -228,11 +228,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:44 GMT + - Fri, 22 May 2026 09:10:32 GMT Pragma: - no-cache RequestId: - - e536610a-7ba9-4109-b728-4156c887dc2e + - 103695a1-62b8-4db4-ac1e-9d52d61e0368 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -256,16 +256,16 @@ interactions: Connection: - keep-alive Content-Length: - - '41' + - '35' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/admin/domains/95349897-ec23-4470-b567-4daa6192d06c + uri: https://api.fabric.microsoft.com/v1/admin/domains/2a9587ff-fbbe-4994-b79c-212e51e1570a response: body: - string: '{"contributorsScope": "AllTenant", "id": "95349897-ec23-4470-b567-4daa6192d06c", + string: '{"contributorsScope": "AllTenant", "id": "2a9587ff-fbbe-4994-b79c-212e51e1570a", "displayName": "fabcli000002", "description": ""}' headers: Access-Control-Expose-Headers: @@ -275,15 +275,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '133' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:45 GMT + - Fri, 22 May 2026 09:10:33 GMT Pragma: - no-cache RequestId: - - 57fdbb79-55d2-4110-acf1-89faaddc49af + - d1c3c5e1-aa5c-4046-9a1a-3c988b9907c4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -309,12 +309,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/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AllTenant", "id": "95349897-ec23-4470-b567-4daa6192d06c", + string: '{"domains": [{"contributorsScope": "AllTenant", "id": "2a9587ff-fbbe-4994-b79c-212e51e1570a", "displayName": "fabcli000002", "description": ""}]}' headers: Access-Control-Expose-Headers: @@ -324,15 +324,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '225' + - '228' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:45 GMT + - Fri, 22 May 2026 09:10:33 GMT Pragma: - no-cache RequestId: - - 4c074567-a10b-453e-b1f4-26c0b9008ced + - 1ca6a5ed-3ec0-4bcd-bacc-b3f8ecb094f3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -358,12 +358,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/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AllTenant", "id": "95349897-ec23-4470-b567-4daa6192d06c", + string: '{"domains": [{"contributorsScope": "AllTenant", "id": "2a9587ff-fbbe-4994-b79c-212e51e1570a", "displayName": "fabcli000002", "description": ""}]}' headers: Access-Control-Expose-Headers: @@ -373,15 +373,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '225' + - '228' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:45 GMT + - Fri, 22 May 2026 09:10:34 GMT Pragma: - no-cache RequestId: - - 7213a2f1-e42d-4f86-bc0d-8a86327adf22 + - 7f9d4ef8-16da-48e9-aefc-83685d5b06be Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -407,12 +407,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/admin/domains/95349897-ec23-4470-b567-4daa6192d06c + uri: https://api.fabric.microsoft.com/v1/admin/domains/2a9587ff-fbbe-4994-b79c-212e51e1570a response: body: - string: '{"contributorsScope": "AllTenant", "id": "95349897-ec23-4470-b567-4daa6192d06c", + string: '{"contributorsScope": "AllTenant", "id": "2a9587ff-fbbe-4994-b79c-212e51e1570a", "displayName": "fabcli000002", "description": ""}' headers: Access-Control-Expose-Headers: @@ -422,15 +422,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '133' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:46 GMT + - Fri, 22 May 2026 09:10:35 GMT Pragma: - no-cache RequestId: - - ba49fbe3-032e-4316-8df0-cd80c8fe46dc + - 8dc08bca-57ac-43d3-8742-4d2a606edd1b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -456,9 +456,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/admin/domains/95349897-ec23-4470-b567-4daa6192d06c/workspaces + uri: https://api.fabric.microsoft.com/v1/admin/domains/2a9587ff-fbbe-4994-b79c-212e51e1570a/workspaces response: body: string: '{"value": []}' @@ -474,11 +474,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:46 GMT + - Fri, 22 May 2026 09:10:36 GMT Pragma: - no-cache RequestId: - - c9274ceb-8f06-452d-be34-6c3b9e4a8574 + - 4fa7dd89-6375-44f4-b786-2b1f8f557329 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -504,12 +504,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/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AllTenant", "id": "95349897-ec23-4470-b567-4daa6192d06c", + string: '{"domains": [{"contributorsScope": "AllTenant", "id": "2a9587ff-fbbe-4994-b79c-212e51e1570a", "displayName": "fabcli000002", "description": ""}]}' headers: Access-Control-Expose-Headers: @@ -519,15 +519,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '225' + - '228' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:47 GMT + - Fri, 22 May 2026 09:10:37 GMT Pragma: - no-cache RequestId: - - 14fec864-84eb-4b78-abb7-0b0827893465 + - d5fb24f1-93bc-4e90-9299-0bc80da26a76 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -553,12 +553,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/admin/domains/95349897-ec23-4470-b567-4daa6192d06c + uri: https://api.fabric.microsoft.com/v1/admin/domains/2a9587ff-fbbe-4994-b79c-212e51e1570a response: body: - string: '{"contributorsScope": "AllTenant", "id": "95349897-ec23-4470-b567-4daa6192d06c", + string: '{"contributorsScope": "AllTenant", "id": "2a9587ff-fbbe-4994-b79c-212e51e1570a", "displayName": "fabcli000002", "description": ""}' headers: Access-Control-Expose-Headers: @@ -568,15 +568,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '133' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:47 GMT + - Fri, 22 May 2026 09:10:38 GMT Pragma: - no-cache RequestId: - - 0c6fdc44-c47d-4f85-b770-1b422c9c8e70 + - 4c13a3e8-0c6b-47ed-8dc9-ed454bd8ef15 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -602,9 +602,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/admin/domains/95349897-ec23-4470-b567-4daa6192d06c/workspaces + uri: https://api.fabric.microsoft.com/v1/admin/domains/2a9587ff-fbbe-4994-b79c-212e51e1570a/workspaces response: body: string: '{"value": []}' @@ -620,11 +620,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:48 GMT + - Fri, 22 May 2026 09:10:38 GMT Pragma: - no-cache RequestId: - - 31c166f1-65a0-43b2-80b7-3ccd20ca87ae + - de82a5b2-1631-465d-aaa7-84710f7ec6e8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -648,16 +648,16 @@ interactions: Connection: - keep-alive Content-Length: - - '41' + - '35' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/admin/domains/95349897-ec23-4470-b567-4daa6192d06c + uri: https://api.fabric.microsoft.com/v1/admin/domains/2a9587ff-fbbe-4994-b79c-212e51e1570a response: body: - string: '{"contributorsScope": "AllTenant", "id": "95349897-ec23-4470-b567-4daa6192d06c", + string: '{"contributorsScope": "AllTenant", "id": "2a9587ff-fbbe-4994-b79c-212e51e1570a", "displayName": "fabcli000001", "description": ""}' headers: Access-Control-Expose-Headers: @@ -667,15 +667,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:48 GMT + - Fri, 22 May 2026 09:10:39 GMT Pragma: - no-cache RequestId: - - 95ee96a4-4793-470b-b39d-a5e71bc5bdba + - 5503710a-f745-4ef6-820d-882a99db7848 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -701,12 +701,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/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AllTenant", "id": "95349897-ec23-4470-b567-4daa6192d06c", + string: '{"domains": [{"contributorsScope": "AllTenant", "id": "2a9587ff-fbbe-4994-b79c-212e51e1570a", "displayName": "fabcli000001", "description": ""}]}' headers: Access-Control-Expose-Headers: @@ -716,15 +716,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '226' + - '225' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:48 GMT + - Fri, 22 May 2026 09:10:40 GMT Pragma: - no-cache RequestId: - - fa4e0041-9865-48f7-98fb-84f1d9ab5753 + - 511de58d-0694-4abd-9ffd-653909635ef1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -752,9 +752,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/admin/domains/95349897-ec23-4470-b567-4daa6192d06c + uri: https://api.fabric.microsoft.com/v1/admin/domains/2a9587ff-fbbe-4994-b79c-212e51e1570a response: body: string: '' @@ -770,11 +770,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 31 Dec 2025 14:35:48 GMT + - Fri, 22 May 2026 09:10:41 GMT Pragma: - no-cache RequestId: - - dc7269cf-397c-4d96-acfe-230221435702 + - 69f435ff-0142-4b26-a779-0849efbf002b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_domain_success[contributorsScope-AdminsOnly].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_domain_success[contributorsScope-AdminsOnly].yaml index 7e0198f3f..3e906331c 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_domain_success[contributorsScope-AdminsOnly].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_domain_success[contributorsScope-AdminsOnly].yaml @@ -11,7 +11,7 @@ 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/admin/domains response: @@ -29,11 +29,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:50 GMT + - Fri, 22 May 2026 09:10:42 GMT Pragma: - no-cache RequestId: - - bb95eb29-d207-4849-b40b-f3355c8960f5 + - 0d20d062-0712-42bd-8aca-0e0af444ef7f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,12 +61,12 @@ interactions: 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/admin/domains response: body: - string: '{"contributorsScope": "AllTenant", "id": "b4a913ca-7234-409b-ba05-7e1b4541e871", + string: '{"contributorsScope": "AllTenant", "id": "1f052045-5cb7-49f6-b3b6-89409de168c0", "displayName": "fabcli000001", "description": ""}' headers: Access-Control-Expose-Headers: @@ -80,13 +80,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:50 GMT + - Fri, 22 May 2026 09:10:43 GMT Location: - - https://api.fabric.microsoft.com/v1/admin/domains/b4a913ca-7234-409b-ba05-7e1b4541e871 + - https://api.fabric.microsoft.com/v1/admin/domains/1f052045-5cb7-49f6-b3b6-89409de168c0 Pragma: - no-cache RequestId: - - 26b04468-5050-4ea3-bdad-87617caa9492 + - f156e81e-44eb-4ebb-b128-7348c9bf2ee5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -112,12 +112,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/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AllTenant", "id": "b4a913ca-7234-409b-ba05-7e1b4541e871", + string: '{"domains": [{"contributorsScope": "AllTenant", "id": "1f052045-5cb7-49f6-b3b6-89409de168c0", "displayName": "fabcli000001", "description": ""}]}' headers: Access-Control-Expose-Headers: @@ -127,15 +127,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '229' + - '228' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:50 GMT + - Fri, 22 May 2026 09:10:43 GMT Pragma: - no-cache RequestId: - - 63c3869e-a372-465d-9fc1-6b43ab8c5101 + - ec3d0ba2-a94c-4a3c-afac-5fdec434c917 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -161,12 +161,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/admin/domains/b4a913ca-7234-409b-ba05-7e1b4541e871 + uri: https://api.fabric.microsoft.com/v1/admin/domains/1f052045-5cb7-49f6-b3b6-89409de168c0 response: body: - string: '{"contributorsScope": "AllTenant", "id": "b4a913ca-7234-409b-ba05-7e1b4541e871", + string: '{"contributorsScope": "AllTenant", "id": "1f052045-5cb7-49f6-b3b6-89409de168c0", "displayName": "fabcli000001", "description": ""}' headers: Access-Control-Expose-Headers: @@ -180,11 +180,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:50 GMT + - Fri, 22 May 2026 09:10:45 GMT Pragma: - no-cache RequestId: - - f7b30a10-86a0-4876-bbf4-d9844032e136 + - 63e9e082-b9b2-4218-aae4-6be8e1237f44 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -210,9 +210,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/admin/domains/b4a913ca-7234-409b-ba05-7e1b4541e871/workspaces + uri: https://api.fabric.microsoft.com/v1/admin/domains/1f052045-5cb7-49f6-b3b6-89409de168c0/workspaces response: body: string: '{"value": []}' @@ -228,11 +228,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:51 GMT + - Fri, 22 May 2026 09:10:45 GMT Pragma: - no-cache RequestId: - - 2a4a82ab-8302-42b9-8318-021c3c0e4ee9 + - 143294a0-d28d-4198-9210-da3d1f388306 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -256,16 +256,16 @@ interactions: Connection: - keep-alive Content-Length: - - '41' + - '35' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/admin/domains/b4a913ca-7234-409b-ba05-7e1b4541e871 + uri: https://api.fabric.microsoft.com/v1/admin/domains/1f052045-5cb7-49f6-b3b6-89409de168c0 response: body: - string: '{"contributorsScope": "AdminsOnly", "id": "b4a913ca-7234-409b-ba05-7e1b4541e871", + string: '{"contributorsScope": "AdminsOnly", "id": "1f052045-5cb7-49f6-b3b6-89409de168c0", "displayName": "fabcli000001", "description": ""}' headers: Access-Control-Expose-Headers: @@ -279,11 +279,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:51 GMT + - Fri, 22 May 2026 09:10:47 GMT Pragma: - no-cache RequestId: - - 06a69786-3c4f-49c6-b922-24e93ed496d2 + - f67bf546-8cf5-441e-8a31-6277ab67513a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -309,12 +309,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/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AdminsOnly", "id": "b4a913ca-7234-409b-ba05-7e1b4541e871", + string: '{"domains": [{"contributorsScope": "AdminsOnly", "id": "1f052045-5cb7-49f6-b3b6-89409de168c0", "displayName": "fabcli000001", "description": ""}]}' headers: Access-Control-Expose-Headers: @@ -324,15 +324,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '238' + - '239' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:51 GMT + - Fri, 22 May 2026 09:10:46 GMT Pragma: - no-cache RequestId: - - 7e6c51bb-9b7f-4ef0-be5f-7dbe75e59ded + - ffd97b44-67d3-46b8-a1e3-efbfcf2afbd8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -358,12 +358,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/admin/domains/b4a913ca-7234-409b-ba05-7e1b4541e871 + uri: https://api.fabric.microsoft.com/v1/admin/domains/1f052045-5cb7-49f6-b3b6-89409de168c0 response: body: - string: '{"contributorsScope": "AdminsOnly", "id": "b4a913ca-7234-409b-ba05-7e1b4541e871", + string: '{"contributorsScope": "AdminsOnly", "id": "1f052045-5cb7-49f6-b3b6-89409de168c0", "displayName": "fabcli000001", "description": ""}' headers: Access-Control-Expose-Headers: @@ -377,11 +377,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:52 GMT + - Fri, 22 May 2026 09:10:47 GMT Pragma: - no-cache RequestId: - - e59a9a6b-d89c-415c-8e86-3d05572f3965 + - b5d1c718-63de-44c6-b572-9d9a961f25d3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -407,9 +407,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/admin/domains/b4a913ca-7234-409b-ba05-7e1b4541e871/workspaces + uri: https://api.fabric.microsoft.com/v1/admin/domains/1f052045-5cb7-49f6-b3b6-89409de168c0/workspaces response: body: string: '{"value": []}' @@ -425,11 +425,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:52 GMT + - Fri, 22 May 2026 09:10:48 GMT Pragma: - no-cache RequestId: - - 5aca7574-3155-4234-97ed-cc849bdb958b + - a4220584-8a45-46b8-84cc-4e3c2eb05a52 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -455,12 +455,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/admin/domains response: body: - string: '{"domains": [{"contributorsScope": "AdminsOnly", "id": "b4a913ca-7234-409b-ba05-7e1b4541e871", + string: '{"domains": [{"contributorsScope": "AdminsOnly", "id": "1f052045-5cb7-49f6-b3b6-89409de168c0", "displayName": "fabcli000001", "description": ""}]}' headers: Access-Control-Expose-Headers: @@ -470,15 +470,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '238' + - '239' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:35:52 GMT + - Fri, 22 May 2026 09:10:48 GMT Pragma: - no-cache RequestId: - - 2262b51e-6422-4935-aeaa-1eccb6324397 + - 03390edc-9b43-4cca-97f6-2895c500d7e0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -506,9 +506,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/admin/domains/b4a913ca-7234-409b-ba05-7e1b4541e871 + uri: https://api.fabric.microsoft.com/v1/admin/domains/1f052045-5cb7-49f6-b3b6-89409de168c0 response: body: string: '' @@ -524,11 +524,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 31 Dec 2025 14:35:52 GMT + - Fri, 22 May 2026 09:10:49 GMT Pragma: - no-cache RequestId: - - c6deaff4-484a-4026-bfd9-8758f364326b + - afebaa69-2f2c-46fa-8029-87ae3080896b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_folder_success[displayName-randomFolder].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_folder_success[displayName-randomFolder].yaml index 9954a2719..de0cde6f4 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_folder_success[displayName-randomFolder].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_folder_success[displayName-randomFolder].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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:28 GMT + - Fri, 22 May 2026 09:15:55 GMT Pragma: - no-cache RequestId: - - b36a8105-4134-45b1-9f42-fa1b12b916e6 + - 2e492e75-ad7c-4c14-8752-18839012ffe5 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/81065bd8-e334-4715-b170-dedb4cd514e6/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/folders?recursive=True response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:29 GMT + - Fri, 22 May 2026 09:15:56 GMT Pragma: - no-cache RequestId: - - c08e4a6e-400d-45a9-a065-77a45b44e4b0 + - ea2105f1-7f22-4aa1-a3c0-af52c6682d6c 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/81065bd8-e334-4715-b170-dedb4cd514e6/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/folders?recursive=True response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:29 GMT + - Fri, 22 May 2026 09:15:56 GMT Pragma: - no-cache RequestId: - - 045ae734-42c3-4934-a491-d42f0afebd9f + - 4f965b09-be3c-4f6f-b243-7470a8399906 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -155,17 +156,17 @@ interactions: Connection: - keep-alive Content-Length: - - '68' + - '35' 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/81065bd8-e334-4715-b170-dedb4cd514e6/folders + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/folders response: body: - string: '{"id": "86ab326a-6eb5-495a-884d-bf9d3199695b", "displayName": "fabcli000001", - "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}' + string: '{"id": "eadce991-b020-4488-b8e1-23a98753fe28", "displayName": "fabcli000001", + "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -174,17 +175,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '133' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:30 GMT + - Fri, 22 May 2026 09:15:57 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/folders/86ab326a-6eb5-495a-884d-bf9d3199695b + - https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/folders/eadce991-b020-4488-b8e1-23a98753fe28 Pragma: - no-cache RequestId: - - cc0564a4-4c53-43c6-8341-3ad082a888f7 + - ff99ee5d-e153-48ec-8dce-9db571be39fd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -210,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -226,15 +228,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:30 GMT + - Fri, 22 May 2026 09:15:58 GMT Pragma: - no-cache RequestId: - - ce2c985f-dd34-4758-b1ce-1c829dbe4cee + - e3d0c527-1e88-40dd-b7fb-3cb9ffb66c8d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -260,13 +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/81065bd8-e334-4715-b170-dedb4cd514e6/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/folders?recursive=True response: body: - string: '{"value": [{"id": "86ab326a-6eb5-495a-884d-bf9d3199695b", "displayName": - "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "eadce991-b020-4488-b8e1-23a98753fe28", "displayName": + "fabcli000001", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -279,11 +281,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:30 GMT + - Fri, 22 May 2026 09:15:58 GMT Pragma: - no-cache RequestId: - - 093bbbd6-da73-4fb6-b944-f62fd0981eec + - 4b5918fa-e6b3-4469-9579-86bbcea6941a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -309,13 +311,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/81065bd8-e334-4715-b170-dedb4cd514e6/folders/86ab326a-6eb5-495a-884d-bf9d3199695b + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/folders/eadce991-b020-4488-b8e1-23a98753fe28 response: body: - string: '{"id": "86ab326a-6eb5-495a-884d-bf9d3199695b", "displayName": "fabcli000001", - "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}' + string: '{"id": "eadce991-b020-4488-b8e1-23a98753fe28", "displayName": "fabcli000001", + "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId @@ -324,15 +326,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '133' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:30 GMT + - Fri, 22 May 2026 09:16:00 GMT Pragma: - no-cache RequestId: - - 5cfcbeff-fa7e-450f-b208-05f16d9bd95e + - 01ef4264-27b1-42b7-b1af-1497e959aba0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -356,17 +358,17 @@ interactions: Connection: - keep-alive Content-Length: - - '37' + - '31' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/folders/86ab326a-6eb5-495a-884d-bf9d3199695b + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/folders/eadce991-b020-4488-b8e1-23a98753fe28 response: body: - string: '{"id": "86ab326a-6eb5-495a-884d-bf9d3199695b", "displayName": "randomFolder", - "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}' + string: '{"id": "eadce991-b020-4488-b8e1-23a98753fe28", "displayName": "randomFolder", + "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId @@ -375,15 +377,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '130' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:31 GMT + - Fri, 22 May 2026 09:16:01 GMT Pragma: - no-cache RequestId: - - 38ba0b02-5bcf-45aa-ace9-3de9c22aa45a + - 06e78491-4deb-4f9b-bb4c-e35e42118039 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -409,14 +411,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -425,15 +428,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:31 GMT + - Fri, 22 May 2026 09:16:02 GMT Pragma: - no-cache RequestId: - - 6c96206d-01fd-4dc6-aa5c-02885179759d + - 61d4be92-b9fa-413e-b042-0eacbccdad8a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -459,13 +462,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/81065bd8-e334-4715-b170-dedb4cd514e6/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/folders?recursive=True response: body: - string: '{"value": [{"id": "86ab326a-6eb5-495a-884d-bf9d3199695b", "displayName": - "randomFolder", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "eadce991-b020-4488-b8e1-23a98753fe28", "displayName": + "randomFolder", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -478,11 +481,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:32 GMT + - Fri, 22 May 2026 09:16:02 GMT Pragma: - no-cache RequestId: - - 22e6bf93-7bca-49a2-8805-68a83e35c6c3 + - 046792df-08f2-4eb8-8abf-c703abb4744d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -508,13 +511,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/81065bd8-e334-4715-b170-dedb4cd514e6/folders/86ab326a-6eb5-495a-884d-bf9d3199695b + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/folders/eadce991-b020-4488-b8e1-23a98753fe28 response: body: - string: '{"id": "86ab326a-6eb5-495a-884d-bf9d3199695b", "displayName": "randomFolder", - "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}' + string: '{"id": "eadce991-b020-4488-b8e1-23a98753fe28", "displayName": "randomFolder", + "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId @@ -523,15 +526,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '130' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:32 GMT + - Fri, 22 May 2026 09:16:03 GMT Pragma: - no-cache RequestId: - - 3b365547-9bd7-43f4-8142-336cc5f15cc7 + - 7aa40118-1e63-4141-9e66-e6aa1aa96f50 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -557,14 +560,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -573,15 +577,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:32 GMT + - Fri, 22 May 2026 09:16:03 GMT Pragma: - no-cache RequestId: - - 9e7c261c-000b-41ff-a87a-dc1670615bb3 + - 2a1c56ed-fb27-454e-926b-a97ab43d7fe4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -607,13 +611,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/81065bd8-e334-4715-b170-dedb4cd514e6/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/folders?recursive=True response: body: - string: '{"value": [{"id": "86ab326a-6eb5-495a-884d-bf9d3199695b", "displayName": - "randomFolder", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "eadce991-b020-4488-b8e1-23a98753fe28", "displayName": + "randomFolder", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -626,11 +630,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:32 GMT + - Fri, 22 May 2026 09:16:03 GMT Pragma: - no-cache RequestId: - - 6a135788-31ee-4099-8a37-ab3bd76c95aa + - 01b36683-4182-43f7-89d9-44b861d515bc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -656,13 +660,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/81065bd8-e334-4715-b170-dedb4cd514e6/folders/86ab326a-6eb5-495a-884d-bf9d3199695b + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/folders/eadce991-b020-4488-b8e1-23a98753fe28 response: body: - string: '{"id": "86ab326a-6eb5-495a-884d-bf9d3199695b", "displayName": "randomFolder", - "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}' + string: '{"id": "eadce991-b020-4488-b8e1-23a98753fe28", "displayName": "randomFolder", + "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId @@ -671,15 +675,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '130' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:33 GMT + - Fri, 22 May 2026 09:16:04 GMT Pragma: - no-cache RequestId: - - 827a1e8d-eb0f-4001-a88b-5db6bf9d6a5b + - 3d522a54-61ed-435d-aa22-d4b2ba9a09b9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -703,17 +707,17 @@ interactions: Connection: - keep-alive Content-Length: - - '41' + - '35' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/folders/86ab326a-6eb5-495a-884d-bf9d3199695b + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/folders/eadce991-b020-4488-b8e1-23a98753fe28 response: body: - string: '{"id": "86ab326a-6eb5-495a-884d-bf9d3199695b", "displayName": "fabcli000001", - "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}' + string: '{"id": "eadce991-b020-4488-b8e1-23a98753fe28", "displayName": "fabcli000001", + "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId @@ -722,15 +726,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '133' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:33 GMT + - Fri, 22 May 2026 09:16:05 GMT Pragma: - no-cache RequestId: - - 1caff488-217d-43f4-ad0b-59f984d7f742 + - 3efe69a9-50d3-420c-a89c-c7c13ad8310f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -756,14 +760,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -772,15 +777,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:33 GMT + - Fri, 22 May 2026 09:16:06 GMT Pragma: - no-cache RequestId: - - 89032635-8362-41bd-9e3d-eabb39f85ad9 + - ed2c3ac4-db84-4257-abbf-ca8a3c3454a2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -806,13 +811,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/81065bd8-e334-4715-b170-dedb4cd514e6/folders?recursive=True + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/folders?recursive=True response: body: - string: '{"value": [{"id": "86ab326a-6eb5-495a-884d-bf9d3199695b", "displayName": - "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "eadce991-b020-4488-b8e1-23a98753fe28", "displayName": + "fabcli000001", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -825,11 +830,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:34 GMT + - Fri, 22 May 2026 09:16:06 GMT Pragma: - no-cache RequestId: - - d135fc8d-d3e3-4c32-9806-ea020b9faa7f + - 032209e2-10a9-4c79-b5cb-900393b34781 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -857,9 +862,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/81065bd8-e334-4715-b170-dedb4cd514e6/folders/86ab326a-6eb5-495a-884d-bf9d3199695b + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/folders/eadce991-b020-4488-b8e1-23a98753fe28 response: body: string: '' @@ -875,11 +880,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 31 Dec 2025 14:38:34 GMT + - Fri, 22 May 2026 09:16:07 GMT Pragma: - no-cache RequestId: - - b1c35b0f-5e5d-474b-84a7-9237704847db + - 23788ec9-ae1c-4d6c-aec5-c9da7c019c06 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_gateway_duplicate_name_failure.yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_gateway_duplicate_name_failure.yaml index ae5a6e40a..ec5c0e8ce 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_gateway_duplicate_name_failure.yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_gateway_duplicate_name_failure.yaml @@ -11,7 +11,7 @@ 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/gateways response: @@ -25,15 +25,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1200' + - '1575' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:36:25 GMT + - Fri, 22 May 2026 09:13:08 GMT Pragma: - no-cache RequestId: - - 5d29b45b-7436-479c-9f89-ad1de9c6993d + - b7923956-4a3d-4f23-a98f-0094aceb4688 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -59,13 +59,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/capacities response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F32", "region": "Central US", "state": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '343' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:36:27 GMT + - Fri, 22 May 2026 09:13:14 GMT Pragma: - no-cache RequestId: - - 4c9cdf5c-0c19-420d-872a-140c0a20981b + - 49f7dd74-6e9c-41d9-a7a6-e1811bfa1b21 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-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions?api-version=2022-12-01 response: @@ -124,7 +124,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:36:29 GMT + - Fri, 22 May 2026 09:13:15 GMT Expires: - '-1' Pragma: @@ -150,7 +150,7 @@ 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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/virtualNetworks?api-version=2024-05-01 response: @@ -162,11 +162,11 @@ interactions: Cache-Control: - no-cache Content-Length: - - '2758' + - '2962' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:36:30 GMT + - Fri, 22 May 2026 09:13:15 GMT Expires: - '-1' Pragma: @@ -198,7 +198,7 @@ interactions: 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/gateways response: @@ -207,7 +207,7 @@ interactions: "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "938c71d4-31e4-41f7-87b5-2b76e4234ce5", + 30, "numberOfMemberGateways": 1, "id": "19112dbc-e827-40c0-b0ed-ddb08cecf3da", "type": "VirtualNetwork"}' headers: Access-Control-Expose-Headers: @@ -217,17 +217,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '291' + - '288' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:36:40 GMT + - Fri, 22 May 2026 09:13:27 GMT Location: - - https://api.fabric.microsoft.com/v1/gateways/938c71d4-31e4-41f7-87b5-2b76e4234ce5 + - https://api.fabric.microsoft.com/v1/gateways/19112dbc-e827-40c0-b0ed-ddb08cecf3da Pragma: - no-cache RequestId: - - c13a0ac8-73b5-4577-9ff1-28c8017b72ff + - 3d3701c1-8a63-4dbf-8f7b-1be47035298d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -253,7 +253,7 @@ 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/gateways response: @@ -262,7 +262,7 @@ interactions: "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "938c71d4-31e4-41f7-87b5-2b76e4234ce5", + 30, "numberOfMemberGateways": 1, "id": "19112dbc-e827-40c0-b0ed-ddb08cecf3da", "type": "VirtualNetwork"}]}' headers: Access-Control-Expose-Headers: @@ -272,15 +272,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1240' + - '1614' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:36:41 GMT + - Fri, 22 May 2026 09:13:28 GMT Pragma: - no-cache RequestId: - - af422172-4b59-4ee2-8517-d4063121bc04 + - ed59a313-73f9-4a3a-a192-ed088c30d53c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -306,13 +306,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/capacities response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F32", "region": "Central US", "state": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -322,15 +322,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '343' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:36:46 GMT + - Fri, 22 May 2026 09:13:34 GMT Pragma: - no-cache RequestId: - - c7453d00-7a5d-42fb-aeab-a202d02102d2 + - 4e801049-7fe7-482a-8547-3a5c4a860429 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -356,7 +356,7 @@ 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://management.azure.com/subscriptions?api-version=2022-12-01 response: @@ -371,7 +371,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:36:45 GMT + - Fri, 22 May 2026 09:13:35 GMT Expires: - '-1' Pragma: @@ -397,7 +397,7 @@ 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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/virtualNetworks?api-version=2024-05-01 response: @@ -409,11 +409,11 @@ interactions: Cache-Control: - no-cache Content-Length: - - '2758' + - '2962' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:36:46 GMT + - Fri, 22 May 2026 09:13:35 GMT Expires: - '-1' Pragma: @@ -445,7 +445,7 @@ interactions: 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/gateways response: @@ -454,7 +454,7 @@ interactions: "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "d664a08f-3360-431e-bf81-b9f7e2c7e461", + 30, "numberOfMemberGateways": 1, "id": "a544092c-72ad-4576-b8eb-ad5975aa489c", "type": "VirtualNetwork"}' headers: Access-Control-Expose-Headers: @@ -468,13 +468,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:36:58 GMT + - Fri, 22 May 2026 09:13:47 GMT Location: - - https://api.fabric.microsoft.com/v1/gateways/d664a08f-3360-431e-bf81-b9f7e2c7e461 + - https://api.fabric.microsoft.com/v1/gateways/a544092c-72ad-4576-b8eb-ad5975aa489c Pragma: - no-cache RequestId: - - e9293523-25b1-46f1-8a08-7ade0adf1d32 + - 0b15af15-c20f-4554-80e3-f739f5166b3b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -500,7 +500,7 @@ 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/gateways response: @@ -509,12 +509,12 @@ interactions: "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "938c71d4-31e4-41f7-87b5-2b76e4234ce5", + 30, "numberOfMemberGateways": 1, "id": "19112dbc-e827-40c0-b0ed-ddb08cecf3da", "type": "VirtualNetwork"}, {"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004", "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "d664a08f-3360-431e-bf81-b9f7e2c7e461", + 30, "numberOfMemberGateways": 1, "id": "a544092c-72ad-4576-b8eb-ad5975aa489c", "type": "VirtualNetwork"}]}' headers: Access-Control-Expose-Headers: @@ -524,15 +524,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1284' + - '1653' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:36:59 GMT + - Fri, 22 May 2026 09:13:49 GMT Pragma: - no-cache RequestId: - - d6af5aa0-f9a3-4488-9243-0992234e6372 + - e5933bff-d5bd-4a7a-9fb2-7a76aa819d76 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -558,16 +558,16 @@ 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/gateways/938c71d4-31e4-41f7-87b5-2b76e4234ce5 + uri: https://api.fabric.microsoft.com/v1/gateways/19112dbc-e827-40c0-b0ed-ddb08cecf3da response: body: string: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004", "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "938c71d4-31e4-41f7-87b5-2b76e4234ce5", + 30, "numberOfMemberGateways": 1, "id": "19112dbc-e827-40c0-b0ed-ddb08cecf3da", "type": "VirtualNetwork"}' headers: Access-Control-Expose-Headers: @@ -577,15 +577,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '291' + - '288' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:36:59 GMT + - Fri, 22 May 2026 09:13:49 GMT Pragma: - no-cache RequestId: - - 2e13cc51-f329-4648-9dff-3e76416ae301 + - c869cf44-80f9-4ec0-9b79-0269048d1752 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -609,18 +609,18 @@ interactions: Connection: - keep-alive Content-Length: - - '71' + - '61' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/gateways/938c71d4-31e4-41f7-87b5-2b76e4234ce5 + uri: https://api.fabric.microsoft.com/v1/gateways/19112dbc-e827-40c0-b0ed-ddb08cecf3da response: body: - string: '{"requestId": "924a5a82-32ec-4e4e-8223-3790356c9a2d", "errorCode": + string: '{"requestId": "1284c763-6a34-496c-9d12-a43926cc95d1", "errorCode": "DuplicateGatewayName", "message": "The gateway DisplayName input is already - being used by another gateway"}' + being used by another gateway", "isRetriable": false}' headers: Access-Control-Expose-Headers: - RequestId @@ -629,11 +629,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:01 GMT + - Fri, 22 May 2026 09:13:50 GMT Pragma: - no-cache RequestId: - - 924a5a82-32ec-4e4e-8223-3790356c9a2d + - 1284c763-6a34-496c-9d12-a43926cc95d1 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -663,7 +663,7 @@ 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/gateways response: @@ -672,12 +672,12 @@ interactions: "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "938c71d4-31e4-41f7-87b5-2b76e4234ce5", + 30, "numberOfMemberGateways": 1, "id": "19112dbc-e827-40c0-b0ed-ddb08cecf3da", "type": "VirtualNetwork"}, {"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004", "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "d664a08f-3360-431e-bf81-b9f7e2c7e461", + 30, "numberOfMemberGateways": 1, "id": "a544092c-72ad-4576-b8eb-ad5975aa489c", "type": "VirtualNetwork"}]}' headers: Access-Control-Expose-Headers: @@ -687,15 +687,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1284' + - '1653' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:01 GMT + - Fri, 22 May 2026 09:13:51 GMT Pragma: - no-cache RequestId: - - 6eec86cb-e869-4abe-bec4-a5b6762dc278 + - 488aa50d-94f8-4b3a-b9b3-a75a943add7a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -723,9 +723,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/gateways/938c71d4-31e4-41f7-87b5-2b76e4234ce5 + uri: https://api.fabric.microsoft.com/v1/gateways/19112dbc-e827-40c0-b0ed-ddb08cecf3da response: body: string: '' @@ -741,11 +741,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 31 Dec 2025 14:37:11 GMT + - Fri, 22 May 2026 09:13:54 GMT Pragma: - no-cache RequestId: - - 7b4cd276-6f0b-472c-ba7e-4e53343f3853 + - 59510dcc-830b-4ee4-aa2d-4056a7955dde Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -771,7 +771,7 @@ 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/gateways response: @@ -780,7 +780,7 @@ interactions: "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "d664a08f-3360-431e-bf81-b9f7e2c7e461", + 30, "numberOfMemberGateways": 1, "id": "a544092c-72ad-4576-b8eb-ad5975aa489c", "type": "VirtualNetwork"}]}' headers: Access-Control-Expose-Headers: @@ -790,15 +790,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1244' + - '1615' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:12 GMT + - Fri, 22 May 2026 09:13:55 GMT Pragma: - no-cache RequestId: - - 74b0938f-f286-44ed-8bf5-c79dcb7617ca + - 330b77a7-a60a-4bde-8b25-880938d1300f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -826,9 +826,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/gateways/d664a08f-3360-431e-bf81-b9f7e2c7e461 + uri: https://api.fabric.microsoft.com/v1/gateways/a544092c-72ad-4576-b8eb-ad5975aa489c response: body: string: '' @@ -844,11 +844,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 31 Dec 2025 14:37:14 GMT + - Fri, 22 May 2026 09:13:57 GMT Pragma: - no-cache RequestId: - - df61327a-bb78-4e1b-a0ad-b18ff8611e77 + - dc08f9f1-4196-496a-ab5a-b53dfd58ce32 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_gateway_virtualNetwork_capacityId_success.yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_gateway_virtualNetwork_capacityId_success.yaml index 6637e09ed..9fe142590 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_gateway_virtualNetwork_capacityId_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_gateway_virtualNetwork_capacityId_success.yaml @@ -11,7 +11,7 @@ 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/gateways response: @@ -25,15 +25,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1259' + - '1575' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:09:34 GMT + - Fri, 22 May 2026 09:12:33 GMT Pragma: - no-cache RequestId: - - 5cf4e4e0-647c-42fa-8d99-a80f2b9414d4 + - 116c83c4-db0b-46b5-a84a-8b788504002a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -59,13 +59,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/capacities response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F32", "region": "Central US", "state": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -79,11 +79,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:09:40 GMT + - Fri, 22 May 2026 09:12:38 GMT Pragma: - no-cache RequestId: - - 442dcc33-22ed-450e-87f9-9bf4584b1670 + - 0a4803e1-b2ef-49cc-b4f1-dc8f242a9dce 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-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions?api-version=2022-12-01 response: @@ -124,7 +124,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:09:41 GMT + - Fri, 22 May 2026 09:12:39 GMT Expires: - '-1' Pragma: @@ -150,7 +150,7 @@ 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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/virtualNetworks?api-version=2024-05-01 response: @@ -162,11 +162,11 @@ interactions: Cache-Control: - no-cache Content-Length: - - '2758' + - '2962' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:09:43 GMT + - Fri, 22 May 2026 09:12:39 GMT Expires: - '-1' Pragma: @@ -198,7 +198,7 @@ interactions: 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/gateways response: @@ -207,7 +207,7 @@ interactions: "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "f1152eab-8ae0-4150-8d6e-96ce8a9ecd81", + 30, "numberOfMemberGateways": 1, "id": "1ab24730-8f4a-40cc-a412-8e844d1fe23b", "type": "VirtualNetwork"}' headers: Access-Control-Expose-Headers: @@ -221,13 +221,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:09:57 GMT + - Fri, 22 May 2026 09:12:50 GMT Location: - - https://api.fabric.microsoft.com/v1/gateways/f1152eab-8ae0-4150-8d6e-96ce8a9ecd81 + - https://api.fabric.microsoft.com/v1/gateways/1ab24730-8f4a-40cc-a412-8e844d1fe23b Pragma: - no-cache RequestId: - - 25522f4b-4add-4cd1-9383-d47458aab95f + - 89c2d873-a0ed-4a86-b94c-f319f0102f7d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -253,7 +253,7 @@ 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/gateways response: @@ -262,7 +262,7 @@ interactions: "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "f1152eab-8ae0-4150-8d6e-96ce8a9ecd81", + 30, "numberOfMemberGateways": 1, "id": "1ab24730-8f4a-40cc-a412-8e844d1fe23b", "type": "VirtualNetwork"}]}' headers: Access-Control-Expose-Headers: @@ -272,15 +272,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1300' + - '1615' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:09:59 GMT + - Fri, 22 May 2026 09:12:52 GMT Pragma: - no-cache RequestId: - - c779bb7e-1e96-4cde-97ac-a1a416704613 + - f2ee6a8c-b28d-4e29-89cc-ae227476d003 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -306,16 +306,16 @@ 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/gateways/f1152eab-8ae0-4150-8d6e-96ce8a9ecd81 + uri: https://api.fabric.microsoft.com/v1/gateways/1ab24730-8f4a-40cc-a412-8e844d1fe23b response: body: string: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004", "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "f1152eab-8ae0-4150-8d6e-96ce8a9ecd81", + 30, "numberOfMemberGateways": 1, "id": "1ab24730-8f4a-40cc-a412-8e844d1fe23b", "type": "VirtualNetwork"}' headers: Access-Control-Expose-Headers: @@ -329,11 +329,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:10:01 GMT + - Fri, 22 May 2026 09:12:53 GMT Pragma: - no-cache RequestId: - - a49d67ff-4026-4a1e-b8f4-664ae0438ecd + - e4caf805-440d-41e4-a89d-8660ff06d82a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -361,16 +361,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/gateways/f1152eab-8ae0-4150-8d6e-96ce8a9ecd81 + uri: https://api.fabric.microsoft.com/v1/gateways/1ab24730-8f4a-40cc-a412-8e844d1fe23b response: body: string: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004", "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "f1152eab-8ae0-4150-8d6e-96ce8a9ecd81", + 30, "numberOfMemberGateways": 1, "id": "1ab24730-8f4a-40cc-a412-8e844d1fe23b", "type": "VirtualNetwork"}' headers: Access-Control-Expose-Headers: @@ -384,11 +384,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:10:12 GMT + - Fri, 22 May 2026 09:13:02 GMT Pragma: - no-cache RequestId: - - 5ffc69b7-ee68-4423-a2a3-0110c90bf8e8 + - 92fd4640-3127-4b83-92bb-ab2608ce4c75 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -414,7 +414,7 @@ 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/gateways response: @@ -423,7 +423,7 @@ interactions: "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "f1152eab-8ae0-4150-8d6e-96ce8a9ecd81", + 30, "numberOfMemberGateways": 1, "id": "1ab24730-8f4a-40cc-a412-8e844d1fe23b", "type": "VirtualNetwork"}]}' headers: Access-Control-Expose-Headers: @@ -433,15 +433,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1300' + - '1615' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:10:13 GMT + - Fri, 22 May 2026 09:13:03 GMT Pragma: - no-cache RequestId: - - 07f8047c-3554-4e16-8601-3e6d7e608005 + - 928d19d5-5dc7-489f-b607-fbf812aee513 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -467,16 +467,16 @@ 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/gateways/f1152eab-8ae0-4150-8d6e-96ce8a9ecd81 + uri: https://api.fabric.microsoft.com/v1/gateways/1ab24730-8f4a-40cc-a412-8e844d1fe23b response: body: string: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004", "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "f1152eab-8ae0-4150-8d6e-96ce8a9ecd81", + 30, "numberOfMemberGateways": 1, "id": "1ab24730-8f4a-40cc-a412-8e844d1fe23b", "type": "VirtualNetwork"}' headers: Access-Control-Expose-Headers: @@ -490,11 +490,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:10:15 GMT + - Fri, 22 May 2026 09:13:04 GMT Pragma: - no-cache RequestId: - - 8461dfb5-afc8-4188-b6bc-fd596f11c544 + - 2514803b-708d-4a20-88b4-aa82b851c97f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -520,7 +520,7 @@ 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/gateways response: @@ -529,7 +529,7 @@ interactions: "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "f1152eab-8ae0-4150-8d6e-96ce8a9ecd81", + 30, "numberOfMemberGateways": 1, "id": "1ab24730-8f4a-40cc-a412-8e844d1fe23b", "type": "VirtualNetwork"}]}' headers: Access-Control-Expose-Headers: @@ -539,15 +539,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1300' + - '1615' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:10:16 GMT + - Fri, 22 May 2026 09:13:06 GMT Pragma: - no-cache RequestId: - - ad4d3459-1c80-4e30-9753-1ec80cf0c716 + - 7bc942a2-99e5-47dc-8d56-63039271e4c2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -575,9 +575,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/gateways/f1152eab-8ae0-4150-8d6e-96ce8a9ecd81 + uri: https://api.fabric.microsoft.com/v1/gateways/1ab24730-8f4a-40cc-a412-8e844d1fe23b response: body: string: '' @@ -593,11 +593,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 20 Jan 2026 12:10:18 GMT + - Fri, 22 May 2026 09:13:07 GMT Pragma: - no-cache RequestId: - - ebac870a-2e5e-45cc-b796-ec9dc4ef79ec + - 95cbb472-2ce1-4e74-b1a5-37d513262a49 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_gateway_virtualNetwork_success[displayName-None].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_gateway_virtualNetwork_success[displayName-None].yaml index 664f29ad9..8923b3424 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_gateway_virtualNetwork_success[displayName-None].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_gateway_virtualNetwork_success[displayName-None].yaml @@ -11,7 +11,7 @@ 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/gateways response: @@ -25,15 +25,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1262' + - '1575' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 09:38:31 GMT + - Fri, 22 May 2026 09:12:00 GMT Pragma: - no-cache RequestId: - - 542265fa-49e6-47bd-bad8-f423c83727f9 + - 2b351a33-2aae-4e54-9fd1-82da4882f7cb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -59,13 +59,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/capacities response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F32", "region": "Central US", "state": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 09:38:38 GMT + - Fri, 22 May 2026 09:12:04 GMT Pragma: - no-cache RequestId: - - 38dc1e10-2a53-4ad7-81d1-fdc823c9e1b3 + - 792045b0-e9c2-4a73-8936-201e3888d950 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-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions?api-version=2022-12-01 response: @@ -124,7 +124,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 09:38:39 GMT + - Fri, 22 May 2026 09:12:05 GMT Expires: - '-1' Pragma: @@ -150,7 +150,7 @@ 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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/virtualNetworks?api-version=2024-05-01 response: @@ -162,11 +162,11 @@ interactions: Cache-Control: - no-cache Content-Length: - - '2758' + - '2962' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 09:38:40 GMT + - Fri, 22 May 2026 09:12:05 GMT Expires: - '-1' Pragma: @@ -198,7 +198,7 @@ interactions: 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/gateways response: @@ -207,7 +207,7 @@ interactions: "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "b3d6d7e4-3372-47ee-8994-4a56fbb99c3f", + 30, "numberOfMemberGateways": 1, "id": "34a08b19-a2eb-4942-869d-27d468cec7fe", "type": "VirtualNetwork"}' headers: Access-Control-Expose-Headers: @@ -217,17 +217,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '290' + - '289' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 09:38:57 GMT + - Fri, 22 May 2026 09:12:18 GMT Location: - - https://api.fabric.microsoft.com/v1/gateways/b3d6d7e4-3372-47ee-8994-4a56fbb99c3f + - https://api.fabric.microsoft.com/v1/gateways/34a08b19-a2eb-4942-869d-27d468cec7fe Pragma: - no-cache RequestId: - - 0b0da843-2521-4714-8401-461ea057d118 + - 2aaf5de4-2230-417d-8bcb-9e5de53d4261 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -253,7 +253,7 @@ 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/gateways response: @@ -262,7 +262,7 @@ interactions: "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "b3d6d7e4-3372-47ee-8994-4a56fbb99c3f", + 30, "numberOfMemberGateways": 1, "id": "34a08b19-a2eb-4942-869d-27d468cec7fe", "type": "VirtualNetwork"}]}' headers: Access-Control-Expose-Headers: @@ -272,15 +272,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1304' + - '1615' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 09:38:59 GMT + - Fri, 22 May 2026 09:12:18 GMT Pragma: - no-cache RequestId: - - b6d7ae17-c01e-40a5-805e-783801165f01 + - bd60cc61-2c19-4606-9657-557eefae8888 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -306,16 +306,16 @@ 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/gateways/b3d6d7e4-3372-47ee-8994-4a56fbb99c3f + uri: https://api.fabric.microsoft.com/v1/gateways/34a08b19-a2eb-4942-869d-27d468cec7fe response: body: string: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004", "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "b3d6d7e4-3372-47ee-8994-4a56fbb99c3f", + 30, "numberOfMemberGateways": 1, "id": "34a08b19-a2eb-4942-869d-27d468cec7fe", "type": "VirtualNetwork"}' headers: Access-Control-Expose-Headers: @@ -325,15 +325,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '290' + - '289' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 09:38:59 GMT + - Fri, 22 May 2026 09:12:20 GMT Pragma: - no-cache RequestId: - - ad661853-2f4c-47b8-af1e-900ba8bcb8f1 + - 6d902c67-154d-421d-aa9d-93e45eacae64 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -361,16 +361,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/gateways/b3d6d7e4-3372-47ee-8994-4a56fbb99c3f + uri: https://api.fabric.microsoft.com/v1/gateways/34a08b19-a2eb-4942-869d-27d468cec7fe response: body: string: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004", "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "b3d6d7e4-3372-47ee-8994-4a56fbb99c3f", + 30, "numberOfMemberGateways": 1, "id": "34a08b19-a2eb-4942-869d-27d468cec7fe", "type": "VirtualNetwork"}' headers: Access-Control-Expose-Headers: @@ -380,15 +380,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '290' + - '289' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 09:39:02 GMT + - Fri, 22 May 2026 09:12:22 GMT Pragma: - no-cache RequestId: - - c0ee9e8f-9645-4eca-a4c4-9596411db39d + - 13f8d3e9-5916-4317-92ef-0be3a354dc7a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -414,7 +414,7 @@ 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/gateways response: @@ -423,7 +423,7 @@ interactions: "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "b3d6d7e4-3372-47ee-8994-4a56fbb99c3f", + 30, "numberOfMemberGateways": 1, "id": "34a08b19-a2eb-4942-869d-27d468cec7fe", "type": "VirtualNetwork"}]}' headers: Access-Control-Expose-Headers: @@ -433,15 +433,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1303' + - '1619' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 09:39:05 GMT + - Fri, 22 May 2026 09:12:23 GMT Pragma: - no-cache RequestId: - - aff57473-f4be-48dd-b1e7-3f769a3a285b + - 3fac1e7a-4301-4c25-92a8-c196dea5ba5c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -467,7 +467,7 @@ 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/gateways response: @@ -476,7 +476,7 @@ interactions: "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "b3d6d7e4-3372-47ee-8994-4a56fbb99c3f", + 30, "numberOfMemberGateways": 1, "id": "34a08b19-a2eb-4942-869d-27d468cec7fe", "type": "VirtualNetwork"}]}' headers: Access-Control-Expose-Headers: @@ -486,15 +486,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1303' + - '1619' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 09:39:06 GMT + - Fri, 22 May 2026 09:12:24 GMT Pragma: - no-cache RequestId: - - af8900a9-0e17-4527-9e86-e6851d5ed782 + - 2df17b3c-11a5-475e-bc74-a3ef5e2a1a21 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -520,16 +520,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/gateways/b3d6d7e4-3372-47ee-8994-4a56fbb99c3f + uri: https://api.fabric.microsoft.com/v1/gateways/34a08b19-a2eb-4942-869d-27d468cec7fe response: body: string: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004", "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "b3d6d7e4-3372-47ee-8994-4a56fbb99c3f", + 30, "numberOfMemberGateways": 1, "id": "34a08b19-a2eb-4942-869d-27d468cec7fe", "type": "VirtualNetwork"}' headers: Access-Control-Expose-Headers: @@ -539,15 +539,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '290' + - '289' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 09:39:08 GMT + - Fri, 22 May 2026 09:12:26 GMT Pragma: - no-cache RequestId: - - 2c52380f-d84e-49aa-b8d7-5d1941686264 + - 968bb38f-2db1-4c55-ae58-3ccafa879298 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -573,7 +573,7 @@ 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/gateways response: @@ -582,7 +582,7 @@ interactions: "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "b3d6d7e4-3372-47ee-8994-4a56fbb99c3f", + 30, "numberOfMemberGateways": 1, "id": "34a08b19-a2eb-4942-869d-27d468cec7fe", "type": "VirtualNetwork"}]}' headers: Access-Control-Expose-Headers: @@ -592,15 +592,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1303' + - '1619' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 09:39:09 GMT + - Fri, 22 May 2026 09:12:27 GMT Pragma: - no-cache RequestId: - - 09b537d6-86ce-4c8a-80e6-5934f484b424 + - 09e8e2b8-d47a-403e-a3aa-2a8656405485 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -626,16 +626,16 @@ 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/gateways/b3d6d7e4-3372-47ee-8994-4a56fbb99c3f + uri: https://api.fabric.microsoft.com/v1/gateways/34a08b19-a2eb-4942-869d-27d468cec7fe response: body: string: '{"displayName": "fabcli000002", "capacityId": "00000000-0000-0000-0000-000000000004", "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "b3d6d7e4-3372-47ee-8994-4a56fbb99c3f", + 30, "numberOfMemberGateways": 1, "id": "34a08b19-a2eb-4942-869d-27d468cec7fe", "type": "VirtualNetwork"}' headers: Access-Control-Expose-Headers: @@ -645,15 +645,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '290' + - '289' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 09:39:12 GMT + - Fri, 22 May 2026 09:12:28 GMT Pragma: - no-cache RequestId: - - c4549f6c-4c60-4311-885c-e7e868d9986a + - 483ee776-f867-46ca-a86a-34b6c3ae7b31 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -681,16 +681,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/gateways/b3d6d7e4-3372-47ee-8994-4a56fbb99c3f + uri: https://api.fabric.microsoft.com/v1/gateways/34a08b19-a2eb-4942-869d-27d468cec7fe response: body: string: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004", "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "b3d6d7e4-3372-47ee-8994-4a56fbb99c3f", + 30, "numberOfMemberGateways": 1, "id": "34a08b19-a2eb-4942-869d-27d468cec7fe", "type": "VirtualNetwork"}' headers: Access-Control-Expose-Headers: @@ -700,15 +700,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '290' + - '289' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 09:39:13 GMT + - Fri, 22 May 2026 09:12:29 GMT Pragma: - no-cache RequestId: - - 9eecda00-ca47-4643-9890-7b6921f85de4 + - 0c7389eb-b673-4c96-bc68-fbe5652b57ab Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -734,7 +734,7 @@ 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/gateways response: @@ -743,7 +743,7 @@ interactions: "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "b3d6d7e4-3372-47ee-8994-4a56fbb99c3f", + 30, "numberOfMemberGateways": 1, "id": "34a08b19-a2eb-4942-869d-27d468cec7fe", "type": "VirtualNetwork"}]}' headers: Access-Control-Expose-Headers: @@ -753,15 +753,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1304' + - '1615' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 09:39:14 GMT + - Fri, 22 May 2026 09:12:30 GMT Pragma: - no-cache RequestId: - - 69a4cd07-5a24-465d-87ad-eab118e99fe2 + - ab797d6f-85a8-4f27-b799-2dd3042c3ef6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -789,9 +789,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/gateways/b3d6d7e4-3372-47ee-8994-4a56fbb99c3f + uri: https://api.fabric.microsoft.com/v1/gateways/34a08b19-a2eb-4942-869d-27d468cec7fe response: body: string: '' @@ -807,11 +807,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 21 Jan 2026 09:39:16 GMT + - Fri, 22 May 2026 09:12:31 GMT Pragma: - no-cache RequestId: - - 3438a205-e6b2-4865-953f-61368978c882 + - c1f445e1-563f-4edb-8364-bd262bd2fe6e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_gateway_virtualNetwork_success[inactivityMinutesBeforeSleep-60].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_gateway_virtualNetwork_success[inactivityMinutesBeforeSleep-60].yaml index 11f45ff54..2b50b6042 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_gateway_virtualNetwork_success[inactivityMinutesBeforeSleep-60].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_gateway_virtualNetwork_success[inactivityMinutesBeforeSleep-60].yaml @@ -11,7 +11,7 @@ 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/gateways response: @@ -25,15 +25,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1259' + - '1575' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:03:21 GMT + - Fri, 22 May 2026 09:11:28 GMT Pragma: - no-cache RequestId: - - 57da9cfe-f9b3-4550-aba3-ebced0fafad9 + - 4da92b23-ab16-40be-9a84-5fc13205036b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -59,13 +59,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/capacities response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F32", "region": "Central US", "state": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '425' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:03:27 GMT + - Fri, 22 May 2026 09:11:33 GMT Pragma: - no-cache RequestId: - - 657b7e93-d9e2-407a-82f0-a013de470ec1 + - c3abd003-77d9-4c3b-a45c-b86abc4fdaa0 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-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions?api-version=2022-12-01 response: @@ -124,7 +124,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:03:29 GMT + - Fri, 22 May 2026 09:11:33 GMT Expires: - '-1' Pragma: @@ -150,7 +150,7 @@ 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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/virtualNetworks?api-version=2024-05-01 response: @@ -162,11 +162,11 @@ interactions: Cache-Control: - no-cache Content-Length: - - '2758' + - '2962' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:03:29 GMT + - Fri, 22 May 2026 09:11:34 GMT Expires: - '-1' Pragma: @@ -198,7 +198,7 @@ interactions: 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/gateways response: @@ -207,7 +207,7 @@ interactions: "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "d616901d-c1aa-4195-9c36-a09f9b3cc32c", + 30, "numberOfMemberGateways": 1, "id": "cb95f74f-5b2e-4319-b25c-16db5d47444e", "type": "VirtualNetwork"}' headers: Access-Control-Expose-Headers: @@ -217,17 +217,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '291' + - '290' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:03:42 GMT + - Fri, 22 May 2026 09:11:49 GMT Location: - - https://api.fabric.microsoft.com/v1/gateways/d616901d-c1aa-4195-9c36-a09f9b3cc32c + - https://api.fabric.microsoft.com/v1/gateways/cb95f74f-5b2e-4319-b25c-16db5d47444e Pragma: - no-cache RequestId: - - 6badb1a6-e042-403c-a6d2-3c8da3a04116 + - 176aec7a-73c0-4844-8b0e-f03c7fcfdfd9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -253,7 +253,7 @@ 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/gateways response: @@ -262,7 +262,7 @@ interactions: "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "d616901d-c1aa-4195-9c36-a09f9b3cc32c", + 30, "numberOfMemberGateways": 1, "id": "cb95f74f-5b2e-4319-b25c-16db5d47444e", "type": "VirtualNetwork"}]}' headers: Access-Control-Expose-Headers: @@ -272,15 +272,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1302' + - '1613' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:03:44 GMT + - Fri, 22 May 2026 09:11:51 GMT Pragma: - no-cache RequestId: - - 2bdfb855-0326-4f4d-ac69-0dff1cb2d1a9 + - 10833e8e-a0e1-46e9-aea1-40ae88e91de9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -306,16 +306,16 @@ 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/gateways/d616901d-c1aa-4195-9c36-a09f9b3cc32c + uri: https://api.fabric.microsoft.com/v1/gateways/cb95f74f-5b2e-4319-b25c-16db5d47444e response: body: string: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004", "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "d616901d-c1aa-4195-9c36-a09f9b3cc32c", + 30, "numberOfMemberGateways": 1, "id": "cb95f74f-5b2e-4319-b25c-16db5d47444e", "type": "VirtualNetwork"}' headers: Access-Control-Expose-Headers: @@ -325,15 +325,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '291' + - '290' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:03:46 GMT + - Fri, 22 May 2026 09:11:52 GMT Pragma: - no-cache RequestId: - - b755acb2-48ed-4bb5-9aa1-3e1e9a2785a7 + - 94b0e273-c419-47ce-832c-923b7aa275ad Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -361,16 +361,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/gateways/d616901d-c1aa-4195-9c36-a09f9b3cc32c + uri: https://api.fabric.microsoft.com/v1/gateways/cb95f74f-5b2e-4319-b25c-16db5d47444e response: body: string: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004", "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 60, "numberOfMemberGateways": 1, "id": "d616901d-c1aa-4195-9c36-a09f9b3cc32c", + 60, "numberOfMemberGateways": 1, "id": "cb95f74f-5b2e-4319-b25c-16db5d47444e", "type": "VirtualNetwork"}' headers: Access-Control-Expose-Headers: @@ -380,15 +380,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '291' + - '290' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:03:48 GMT + - Fri, 22 May 2026 09:11:54 GMT Pragma: - no-cache RequestId: - - 1438d881-e1e4-4d07-9779-d6044cd71480 + - 7fc1845f-09b1-41f7-904f-4c12bf9a8de1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -414,7 +414,7 @@ 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/gateways response: @@ -423,7 +423,7 @@ interactions: "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 60, "numberOfMemberGateways": 1, "id": "d616901d-c1aa-4195-9c36-a09f9b3cc32c", + 60, "numberOfMemberGateways": 1, "id": "cb95f74f-5b2e-4319-b25c-16db5d47444e", "type": "VirtualNetwork"}]}' headers: Access-Control-Expose-Headers: @@ -433,15 +433,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1305' + - '1616' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:03:50 GMT + - Fri, 22 May 2026 09:11:55 GMT Pragma: - no-cache RequestId: - - 6b4fad32-31cc-4385-a060-62476f21ef13 + - 960b9781-2317-42e2-95d1-2add3848f0f4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -467,16 +467,16 @@ 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/gateways/d616901d-c1aa-4195-9c36-a09f9b3cc32c + uri: https://api.fabric.microsoft.com/v1/gateways/cb95f74f-5b2e-4319-b25c-16db5d47444e response: body: string: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004", "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 60, "numberOfMemberGateways": 1, "id": "d616901d-c1aa-4195-9c36-a09f9b3cc32c", + 60, "numberOfMemberGateways": 1, "id": "cb95f74f-5b2e-4319-b25c-16db5d47444e", "type": "VirtualNetwork"}' headers: Access-Control-Expose-Headers: @@ -486,15 +486,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '291' + - '290' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:03:52 GMT + - Fri, 22 May 2026 09:11:57 GMT Pragma: - no-cache RequestId: - - ffb9f2f1-046a-4d0c-9aab-214808211d4c + - 20eeb2f2-6010-4d9a-8f1e-25c56258731a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -520,7 +520,7 @@ 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/gateways response: @@ -529,7 +529,7 @@ interactions: "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 60, "numberOfMemberGateways": 1, "id": "d616901d-c1aa-4195-9c36-a09f9b3cc32c", + 60, "numberOfMemberGateways": 1, "id": "cb95f74f-5b2e-4319-b25c-16db5d47444e", "type": "VirtualNetwork"}]}' headers: Access-Control-Expose-Headers: @@ -539,15 +539,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1305' + - '1616' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:03:53 GMT + - Fri, 22 May 2026 09:11:57 GMT Pragma: - no-cache RequestId: - - 68555eeb-f039-48aa-bd4d-661857630ec6 + - e5d74438-53b7-43ac-82d3-da89181f7314 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -575,9 +575,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/gateways/d616901d-c1aa-4195-9c36-a09f9b3cc32c + uri: https://api.fabric.microsoft.com/v1/gateways/cb95f74f-5b2e-4319-b25c-16db5d47444e response: body: string: '' @@ -593,11 +593,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 20 Jan 2026 12:03:56 GMT + - Fri, 22 May 2026 09:11:59 GMT Pragma: - no-cache RequestId: - - 63c4c6b7-1dfd-4f7e-8a0b-41c14ce5ae60 + - 9ec26372-004d-4002-ba46-a3e050975bdb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_gateway_virtualNetwork_success[numberOfMemberGateways-2].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_gateway_virtualNetwork_success[numberOfMemberGateways-2].yaml index ceb436f44..2484b8506 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_gateway_virtualNetwork_success[numberOfMemberGateways-2].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_gateway_virtualNetwork_success[numberOfMemberGateways-2].yaml @@ -11,7 +11,7 @@ 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/gateways response: @@ -25,15 +25,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1259' + - '1575' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:02:44 GMT + - Fri, 22 May 2026 09:10:54 GMT Pragma: - no-cache RequestId: - - deed64c6-baed-43cf-bd6e-85fe76fa468a + - 5afc0c5d-ab0d-475f-8437-3666437cc93d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -59,13 +59,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/capacities response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F32", "region": "Central US", "state": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -75,15 +75,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '424' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:02:48 GMT + - Fri, 22 May 2026 09:10:59 GMT Pragma: - no-cache RequestId: - - 9bf38367-49f2-4adc-a8e5-f5731c65b875 + - dc287759-c8d2-42e9-adb6-43f19da45532 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-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: GET uri: https://management.azure.com/subscriptions?api-version=2022-12-01 response: @@ -124,7 +124,7 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:02:50 GMT + - Fri, 22 May 2026 09:11:00 GMT Expires: - '-1' Pragma: @@ -150,7 +150,7 @@ 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://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/virtualNetworks?api-version=2024-05-01 response: @@ -162,11 +162,11 @@ interactions: Cache-Control: - no-cache Content-Length: - - '2758' + - '2962' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:02:52 GMT + - Fri, 22 May 2026 09:11:01 GMT Expires: - '-1' Pragma: @@ -198,7 +198,7 @@ interactions: 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/gateways response: @@ -207,7 +207,7 @@ interactions: "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "c08147ae-a498-466d-a53d-4077fb318741", + 30, "numberOfMemberGateways": 1, "id": "1a194887-9734-481a-9756-0bb14a120fd0", "type": "VirtualNetwork"}' headers: Access-Control-Expose-Headers: @@ -217,17 +217,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '289' + - '286' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:03:06 GMT + - Fri, 22 May 2026 09:11:18 GMT Location: - - https://api.fabric.microsoft.com/v1/gateways/c08147ae-a498-466d-a53d-4077fb318741 + - https://api.fabric.microsoft.com/v1/gateways/1a194887-9734-481a-9756-0bb14a120fd0 Pragma: - no-cache RequestId: - - a6be980d-b2d0-4075-b04d-d4f556c5f3c4 + - 3ff1ae13-e336-4045-938d-ce4a20bbb1b7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -253,7 +253,7 @@ 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/gateways response: @@ -262,7 +262,7 @@ interactions: "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "c08147ae-a498-466d-a53d-4077fb318741", + 30, "numberOfMemberGateways": 1, "id": "1a194887-9734-481a-9756-0bb14a120fd0", "type": "VirtualNetwork"}]}' headers: Access-Control-Expose-Headers: @@ -272,15 +272,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1301' + - '1614' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:03:07 GMT + - Fri, 22 May 2026 09:11:19 GMT Pragma: - no-cache RequestId: - - 685186de-ade0-421f-abda-15045ad2b6c1 + - 31fb0ad0-b154-4b42-82d4-151fa7b19813 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -306,16 +306,16 @@ 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/gateways/c08147ae-a498-466d-a53d-4077fb318741 + uri: https://api.fabric.microsoft.com/v1/gateways/1a194887-9734-481a-9756-0bb14a120fd0 response: body: string: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004", "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 1, "id": "c08147ae-a498-466d-a53d-4077fb318741", + 30, "numberOfMemberGateways": 1, "id": "1a194887-9734-481a-9756-0bb14a120fd0", "type": "VirtualNetwork"}' headers: Access-Control-Expose-Headers: @@ -325,15 +325,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '289' + - '286' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:03:09 GMT + - Fri, 22 May 2026 09:11:20 GMT Pragma: - no-cache RequestId: - - f534924e-230e-4915-80ce-937c3bdee289 + - 4174c1a5-995c-4c97-ae1d-1e2e40ef748d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -361,16 +361,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/gateways/c08147ae-a498-466d-a53d-4077fb318741 + uri: https://api.fabric.microsoft.com/v1/gateways/1a194887-9734-481a-9756-0bb14a120fd0 response: body: string: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004", "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 2, "id": "c08147ae-a498-466d-a53d-4077fb318741", + 30, "numberOfMemberGateways": 2, "id": "1a194887-9734-481a-9756-0bb14a120fd0", "type": "VirtualNetwork"}' headers: Access-Control-Expose-Headers: @@ -380,15 +380,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '289' + - '286' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:03:11 GMT + - Fri, 22 May 2026 09:11:22 GMT Pragma: - no-cache RequestId: - - f28949a1-afca-47b0-aad9-1e4ddfdbebc4 + - 8b47fe86-f025-469b-ac80-120161ff3bfe Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -414,7 +414,7 @@ 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/gateways response: @@ -423,7 +423,7 @@ interactions: "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 2, "id": "c08147ae-a498-466d-a53d-4077fb318741", + 30, "numberOfMemberGateways": 2, "id": "1a194887-9734-481a-9756-0bb14a120fd0", "type": "VirtualNetwork"}]}' headers: Access-Control-Expose-Headers: @@ -433,15 +433,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1304' + - '1618' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:03:13 GMT + - Fri, 22 May 2026 09:11:23 GMT Pragma: - no-cache RequestId: - - b168f8af-5f65-4771-bb52-473c893763ea + - 98517b48-395b-433d-af69-bf104452a5bd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -467,16 +467,16 @@ 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/gateways/c08147ae-a498-466d-a53d-4077fb318741 + uri: https://api.fabric.microsoft.com/v1/gateways/1a194887-9734-481a-9756-0bb14a120fd0 response: body: string: '{"displayName": "fabcli000001", "capacityId": "00000000-0000-0000-0000-000000000004", "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 2, "id": "c08147ae-a498-466d-a53d-4077fb318741", + 30, "numberOfMemberGateways": 2, "id": "1a194887-9734-481a-9756-0bb14a120fd0", "type": "VirtualNetwork"}' headers: Access-Control-Expose-Headers: @@ -486,15 +486,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '289' + - '286' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:03:15 GMT + - Fri, 22 May 2026 09:11:25 GMT Pragma: - no-cache RequestId: - - e74f73bb-53b6-4ebc-a169-15296fd971ca + - 016baf48-7bf9-4f4f-a67c-0ad953bcdc14 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -520,7 +520,7 @@ 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/gateways response: @@ -529,7 +529,7 @@ interactions: "virtualNetworkAzureResource": {"virtualNetworkName": "mocked_fabriccli_vnet_name", "subnetName": "mocked_fabriccli_vnet_subnet", "resourceGroupName": "mocked_fabriccli_resource_group", "subscriptionId": "00000000-0000-0000-0000-000000000000"}, "inactivityMinutesBeforeSleep": - 30, "numberOfMemberGateways": 2, "id": "c08147ae-a498-466d-a53d-4077fb318741", + 30, "numberOfMemberGateways": 2, "id": "1a194887-9734-481a-9756-0bb14a120fd0", "type": "VirtualNetwork"}]}' headers: Access-Control-Expose-Headers: @@ -539,15 +539,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1304' + - '1618' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 20 Jan 2026 12:03:17 GMT + - Fri, 22 May 2026 09:11:26 GMT Pragma: - no-cache RequestId: - - eedd040d-dc85-412b-a341-e5fdc64b0cf1 + - bb38df38-e69b-4ce9-99c0-1cb602bb4227 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -575,9 +575,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/gateways/c08147ae-a498-466d-a53d-4077fb318741 + uri: https://api.fabric.microsoft.com/v1/gateways/1a194887-9734-481a-9756-0bb14a120fd0 response: body: string: '' @@ -593,11 +593,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 20 Jan 2026 12:03:19 GMT + - Fri, 22 May 2026 09:11:28 GMT Pragma: - no-cache RequestId: - - 1076e3ea-98a1-4edc-9543-5f3e02395cda + - ee4b85d0-9a1a-40ac-baa6-b8220b78f2f9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_invalid_query_failure.yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_invalid_query_failure.yaml index 35415b158..101e8eab1 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_invalid_query_failure.yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_invalid_query_failure.yaml @@ -17,11 +17,9 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "b557663e-d428-400c-88d3-3000e8fc9237", + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "c89f9280-455e-4eef-9062-e33dce08be60", "displayName": "fabriccli_WorkspacePerTestclass_000001", - "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -30,15 +28,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2761' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:17:04 GMT + - Fri, 22 May 2026 08:49:27 GMT Pragma: - no-cache RequestId: - - 0f4a480c-3def-4355-9aa9-d0fc8f867c3a + - 5f4792a5-12cb-422b-9563-a2ad4a1f4c0f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -66,7 +64,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/c89f9280-455e-4eef-9062-e33dce08be60/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: string: '{"value": []}' @@ -82,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:17:05 GMT + - Fri, 22 May 2026 08:49:28 GMT Pragma: - no-cache RequestId: - - 618909be-7f0f-442a-b066-79b5d070b8f4 + - f090b60a-006a-4238-b261-7d42fab7bd16 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -114,7 +112,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/c89f9280-455e-4eef-9062-e33dce08be60/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: string: '{"value": []}' @@ -130,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:17:05 GMT + - Fri, 22 May 2026 08:49:30 GMT Pragma: - no-cache RequestId: - - c56f1cbb-ae22-4a8a-a1b3-e8bf7fb6af3d + - 96ca27b6-e775-487f-af8e-601a42e3c1fc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -164,11 +162,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/c89f9280-455e-4eef-9062-e33dce08be60/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/lakehouses response: body: - string: '{"id": "20774288-9948-49ab-a230-5b744ce6f994", "type": "Lakehouse", - "displayName": "fabcli000001", "description": "", "workspaceId": "c89f9280-455e-4eef-9062-e33dce08be60"}' + string: '{"id": "03fb904b-1e1a-437a-b56d-b2f60abdd245", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -177,17 +175,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '156' + - '157' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:17:10 GMT + - Fri, 22 May 2026 08:49:34 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 55a3ca2e-fbc9-472a-ad35-46c4dd89cae1 + - 9c8e67a7-7c73-4d51-9b1e-a289d6eeb779 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -219,11 +217,9 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "b557663e-d428-400c-88d3-3000e8fc9237", + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "c89f9280-455e-4eef-9062-e33dce08be60", "displayName": "fabriccli_WorkspacePerTestclass_000001", - "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -232,15 +228,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2761' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:17:11 GMT + - Fri, 22 May 2026 08:49:35 GMT Pragma: - no-cache RequestId: - - 2ad61652-6306-4e49-9afc-e818e9c85826 + - f014fd36-0e24-47ac-b9f5-7184df7e389b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -268,11 +264,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/c89f9280-455e-4eef-9062-e33dce08be60/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "20774288-9948-49ab-a230-5b744ce6f994", "type": "Lakehouse", - "displayName": "fabcli000001", "description": "", "workspaceId": "c89f9280-455e-4eef-9062-e33dce08be60"}]}' + string: '{"value": [{"id": "03fb904b-1e1a-437a-b56d-b2f60abdd245", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -281,15 +277,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '168' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:17:12 GMT + - Fri, 22 May 2026 08:49:36 GMT Pragma: - no-cache RequestId: - - f14d30b4-6063-4447-a989-88d3dc8f8cb9 + - a916989e-870e-46f0-85a6-48a71c445239 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -321,11 +317,9 @@ interactions: response: body: string: '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "b557663e-d428-400c-88d3-3000e8fc9237", + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", - "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "c89f9280-455e-4eef-9062-e33dce08be60", "displayName": "fabriccli_WorkspacePerTestclass_000001", - "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -334,15 +328,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2761' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:17:12 GMT + - Fri, 22 May 2026 08:49:37 GMT Pragma: - no-cache RequestId: - - 58ba7eb2-385a-4b04-b92c-294533ec672f + - b95207d1-647b-4ffb-9267-9c5af1fe976d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -370,11 +364,11 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/c89f9280-455e-4eef-9062-e33dce08be60/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "20774288-9948-49ab-a230-5b744ce6f994", "type": "Lakehouse", - "displayName": "fabcli000001", "description": "", "workspaceId": "c89f9280-455e-4eef-9062-e33dce08be60"}]}' + string: '{"value": [{"id": "03fb904b-1e1a-437a-b56d-b2f60abdd245", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -383,15 +377,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '168' Content-Type: - application/json; charset=utf-8 Date: - - Fri, 22 May 2026 08:17:14 GMT + - Fri, 22 May 2026 08:49:37 GMT Pragma: - no-cache RequestId: - - 4c2be373-4c61-44b9-96b4-499d6056c5b5 + - b49c4998-c405-4934-aa91-29000500b70b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -421,7 +415,7 @@ interactions: User-Agent: - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/c89f9280-455e-4eef-9062-e33dce08be60/items/20774288-9948-49ab-a230-5b744ce6f994 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/03fb904b-1e1a-437a-b56d-b2f60abdd245 response: body: string: '' @@ -437,11 +431,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Fri, 22 May 2026 08:17:14 GMT + - Fri, 22 May 2026 08:49:38 GMT Pragma: - no-cache RequestId: - - 5bcc34ca-6fd3-4730-884e-02f68bfd5b56 + - 8203f55b-7026-43ee-a78f-042ba8170c1b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-DataPipeline].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-DataPipeline].yaml index 4cac5f34a..e393808c3 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-DataPipeline].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-DataPipeline].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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:04:39 GMT + - Fri, 22 May 2026 08:50:55 GMT Pragma: - no-cache RequestId: - - 5dad2a63-6cd5-4067-b1b1-57274c074bc7 + - 8d4b60f2-2258-47a1-aef4-f7c0a8a4a5fb 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:04:39 GMT + - Fri, 22 May 2026 08:50:56 GMT Pragma: - no-cache RequestId: - - b5c8d7fe-5e01-4319-a71f-31e707383731 + - 69896f98-49fb-4794-8573-53a2553a8a96 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:04:40 GMT + - Fri, 22 May 2026 08:50:57 GMT Pragma: - no-cache RequestId: - - 25dfb59a-097e-4e96-a0d2-de159331b1e0 + - 29a0475a-45eb-4b42-98d0-506eb1a8dae0 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.3.1 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/dataPipelines + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/dataPipelines response: body: - string: '{"id": "6980994a-b39a-42d7-a202-2a73fdd21bbe", "type": "DataPipeline", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "2c2b105b-fc7a-495f-8091-e1fd5f11458c", "type": "DataPipeline", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +175,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '160' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:04:46 GMT + - Fri, 22 May 2026 08:51:04 GMT ETag: - '""' Pragma: - no-cache RequestId: - - aaed0009-ea7e-4461-b195-3ef95dcb986e + - 6c688f4a-8b54-4f56-880e-4c759e37658f 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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:04:47 GMT + - Fri, 22 May 2026 08:51:04 GMT Pragma: - no-cache RequestId: - - b3de622b-8c2c-4bb9-994d-48d42cf0e85c + - a0bc29fb-0988-4b4a-9f50-f35436fb467c 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "6980994a-b39a-42d7-a202-2a73fdd21bbe", "type": "DataPipeline", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "2c2b105b-fc7a-495f-8091-e1fd5f11458c", "type": "DataPipeline", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +277,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '177' + - '170' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:04:48 GMT + - Fri, 22 May 2026 08:51:05 GMT Pragma: - no-cache RequestId: - - ad9ad173-0081-4514-8850-0320a045af31 + - c01d8869-490c-4977-bb4b-19e8956d0b38 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.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/dataPipelines/6980994a-b39a-42d7-a202-2a73fdd21bbe + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/dataPipelines/2c2b105b-fc7a-495f-8091-e1fd5f11458c response: body: - string: '{"id": "6980994a-b39a-42d7-a202-2a73fdd21bbe", "type": "DataPipeline", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "2c2b105b-fc7a-495f-8091-e1fd5f11458c", "type": "DataPipeline", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -328,17 +326,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '160' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:04:48 GMT + - Fri, 22 May 2026 08:51:06 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 4cc86aee-3617-465b-8362-200ebf33db20 + - c7ad84c6-6dab-42e3-80b0-3bf95e953418 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.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/dataPipelines/6980994a-b39a-42d7-a202-2a73fdd21bbe + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/dataPipelines/2c2b105b-fc7a-495f-8091-e1fd5f11458c response: body: - string: '{"id": "6980994a-b39a-42d7-a202-2a73fdd21bbe", "type": "DataPipeline", + string: '{"id": "2c2b105b-fc7a-495f-8091-e1fd5f11458c", "type": "DataPipeline", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -382,17 +380,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '168' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:04:50 GMT + - Fri, 22 May 2026 08:51:09 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 7737d700-347a-4caa-8577-815663a54aeb + - d759b4a2-5bad-4af1-b472-2fed6d7680f5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -418,14 +416,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -434,15 +433,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:04:50 GMT + - Fri, 22 May 2026 08:51:10 GMT Pragma: - no-cache RequestId: - - f502b170-348b-4799-b91a-e9e27e2dadeb + - b65bd80d-5a21-4637-a7a4-b4d9b147652b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -468,14 +467,14 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "6980994a-b39a-42d7-a202-2a73fdd21bbe", "type": "DataPipeline", + string: '{"value": [{"id": "2c2b105b-fc7a-495f-8091-e1fd5f11458c", "type": "DataPipeline", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -484,15 +483,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '177' + - '180' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:04:52 GMT + - Fri, 22 May 2026 08:51:11 GMT Pragma: - no-cache RequestId: - - 1b24c767-0d8b-4a54-84ed-83801f3df1c1 + - 6d28b1ec-9796-4b7a-abe1-b7ead839bda4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -518,14 +517,14 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/dataPipelines/6980994a-b39a-42d7-a202-2a73fdd21bbe + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/dataPipelines/2c2b105b-fc7a-495f-8091-e1fd5f11458c response: body: - string: '{"id": "6980994a-b39a-42d7-a202-2a73fdd21bbe", "type": "DataPipeline", + string: '{"id": "2c2b105b-fc7a-495f-8091-e1fd5f11458c", "type": "DataPipeline", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -534,17 +533,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '168' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:04:52 GMT + - Fri, 22 May 2026 08:51:11 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 779feaed-a867-40c4-b179-011b87f89f7c + - 71309fa6-09ff-43f4-a86c-e735f9bdb83b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -570,9 +569,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/6980994a-b39a-42d7-a202-2a73fdd21bbe/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/2c2b105b-fc7a-495f-8091-e1fd5f11458c/connections response: body: string: '{"value": []}' @@ -588,11 +587,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:04:53 GMT + - Fri, 22 May 2026 08:51:13 GMT Pragma: - no-cache RequestId: - - bae5dcbc-6f74-408c-8775-44596db179f7 + - 6c9b8bc3-3923-44ab-a98a-57d557283685 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -618,9 +617,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/6980994a-b39a-42d7-a202-2a73fdd21bbe/jobs/Pipeline/schedules + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/2c2b105b-fc7a-495f-8091-e1fd5f11458c/jobs/Pipeline/schedules response: body: string: '{"value": []}' @@ -636,11 +635,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:04:53 GMT + - Fri, 22 May 2026 08:51:14 GMT Pragma: - no-cache RequestId: - - 992e09ca-f6b9-438e-97bc-edfbae8c63f0 + - 5600faca-ad1d-48c2-ab66-4a121de3d028 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -666,14 +665,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -682,15 +682,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:04:55 GMT + - Fri, 22 May 2026 08:51:14 GMT Pragma: - no-cache RequestId: - - 6a3fc049-f6ac-4c2a-a056-63ff1b90ffc6 + - 6c7ade33-96ef-47d7-94d3-3d1cda59a9e6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -716,14 +716,14 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "6980994a-b39a-42d7-a202-2a73fdd21bbe", "type": "DataPipeline", + string: '{"value": [{"id": "2c2b105b-fc7a-495f-8091-e1fd5f11458c", "type": "DataPipeline", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -732,15 +732,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '177' + - '180' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:04:54 GMT + - Fri, 22 May 2026 08:51:15 GMT Pragma: - no-cache RequestId: - - ed3aa29e-a214-476b-a8d6-eeaf851c1684 + - bcec8cdb-9e75-4475-b9c9-acf47e839678 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -768,9 +768,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/6980994a-b39a-42d7-a202-2a73fdd21bbe + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/2c2b105b-fc7a-495f-8091-e1fd5f11458c response: body: string: '' @@ -786,11 +786,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 29 Jan 2026 10:04:56 GMT + - Fri, 22 May 2026 08:51:16 GMT Pragma: - no-cache RequestId: - - 680cce5d-c4bb-4219-a5e5-54fe36e0e82a + - 344c28de-5e5e-4fef-a0ca-c0e8b889bb22 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-DigitalTwinBuilder].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-DigitalTwinBuilder].yaml index 46813d048..d6458871c 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-DigitalTwinBuilder].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-DigitalTwinBuilder].yaml @@ -11,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": "9b9b7432-90cd-4ae2-9702-5d97c233784c", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2047' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:29:39 GMT + - Fri, 22 May 2026 08:54:33 GMT Pragma: - no-cache RequestId: - - 072c7fe7-2cef-420c-97b7-dba4d61f4bd4 + - 910389d6-7a3a-452d-928d-fe11e460b325 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/9b9b7432-90cd-4ae2-9702-5d97c233784c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:29:39 GMT + - Fri, 22 May 2026 08:54:34 GMT Pragma: - no-cache RequestId: - - 41851d8f-7afe-45d7-af68-ad6f34a6803e + - 00cb02e1-d4d6-40c4-ac61-2c2ef096a876 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/9b9b7432-90cd-4ae2-9702-5d97c233784c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:29:40 GMT + - Fri, 22 May 2026 08:54:35 GMT Pragma: - no-cache RequestId: - - 43798f49-3255-4722-b729-a142b4d8de49 + - c84c4ee6-bb48-44c7-b112-2a149ff450d0 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": "DigitalTwinBuilder", "folderId": null}' + body: '{"displayName": "fabcli000001", "type": "DigitalTwinBuilder", "folderId": + null}' headers: Accept: - '*/*' @@ -156,13 +158,12 @@ 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/9b9b7432-90cd-4ae2-9702-5d97c233784c/digitalTwinBuilders + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/digitalTwinBuilders response: body: string: 'null' @@ -178,15 +179,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:29:43 GMT + - Fri, 22 May 2026 08:54:37 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7affb468-3b29-402f-9f26-3091a5a2e2f7 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3dd1c26b-0fdb-4212-8280-796b0d024daf Pragma: - no-cache RequestId: - - 61f2fd43-0c59-431a-8851-111649a83050 + - b2034c3f-b963-4300-972f-5eb6cf3de57d Retry-After: - '20' Strict-Transport-Security: @@ -200,7 +201,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 7affb468-3b29-402f-9f26-3091a5a2e2f7 + - 3dd1c26b-0fdb-4212-8280-796b0d024daf 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/7affb468-3b29-402f-9f26-3091a5a2e2f7 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3dd1c26b-0fdb-4212-8280-796b0d024daf response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:29:41.7996365", - "lastUpdatedTimeUtc": "2026-03-31T09:29:49.9546908", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-22T08:54:35.9981382", + "lastUpdatedTimeUtc": "2026-05-22T08:54:43.4387055", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -232,17 +233,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '133' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:04 GMT + - Fri, 22 May 2026 08:54:58 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7affb468-3b29-402f-9f26-3091a5a2e2f7/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3dd1c26b-0fdb-4212-8280-796b0d024daf/result Pragma: - no-cache RequestId: - - a94e2e55-e988-42a5-8bae-c535bdbabc6d + - d95265e5-f0fd-42ec-a282-228fbe24bd3e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -250,7 +251,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 7affb468-3b29-402f-9f26-3091a5a2e2f7 + - 3dd1c26b-0fdb-4212-8280-796b0d024daf 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/7affb468-3b29-402f-9f26-3091a5a2e2f7/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3dd1c26b-0fdb-4212-8280-796b0d024daf/result response: body: - string: '{"id": "6ca92fb9-0f1c-486d-bf7a-9eb783c7d813", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "workspaceId": - "9b9b7432-90cd-4ae2-9702-5d97c233784c"}' + string: '{"id": "29a9cee8-1af4-4d44-ab92-5f861f088259", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId @@ -284,11 +284,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 31 Mar 2026 09:30:05 GMT + - Fri, 22 May 2026 08:54:58 GMT Pragma: - no-cache RequestId: - - ad3b59dc-01e2-4009-b347-41467aca80f8 + - af52edb7-50a3-47e0-8775-021e267b673e 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": "9b9b7432-90cd-4ae2-9702-5d97c233784c", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2047' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:06 GMT + - Fri, 22 May 2026 08:55:00 GMT Pragma: - no-cache RequestId: - - d2bb6527-47ca-4b37-9123-d293ce7aefb6 + - 56a6f9b1-8a9d-42b0-afff-2a8353555108 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -362,20 +363,19 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "02b473d6-b687-4f79-a0af-0d6bd295742d", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, - {"id": "6ca92fb9-0f1c-486d-bf7a-9eb783c7d813", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "workspaceId": - "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "c867e21e-e44d-4821-821b-70dd3fae45ad", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "bfa2dd9c-7425-4067-b098-b87cfefd81ba", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "29a9cee8-1af4-4d44-ab92-5f861f088259", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "db677534-5d49-4673-9f24-5ba3afa7c623", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -384,15 +384,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '318' + - '303' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:06 GMT + - Fri, 22 May 2026 08:55:00 GMT Pragma: - no-cache RequestId: - - 84786823-89b6-43b8-8172-b05c94b301ab + - 0bd75367-c33f-4865-9a61-c4db0ddce4a7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -418,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/9b9b7432-90cd-4ae2-9702-5d97c233784c/digitalTwinBuilders/6ca92fb9-0f1c-486d-bf7a-9eb783c7d813 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/digitalTwinBuilders/29a9cee8-1af4-4d44-ab92-5f861f088259 response: body: - string: '{"id": "6ca92fb9-0f1c-486d-bf7a-9eb783c7d813", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "workspaceId": - "9b9b7432-90cd-4ae2-9702-5d97c233784c"}' + string: '{"id": "29a9cee8-1af4-4d44-ab92-5f861f088259", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -434,17 +433,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '165' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:08 GMT + - Fri, 22 May 2026 08:55:01 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 99ecf2d3-8426-4430-9fbb-67a890997f9f + - bb66dd98-87cd-4157-b6ba-cacb270c2e91 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -472,14 +471,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/digitalTwinBuilders/6ca92fb9-0f1c-486d-bf7a-9eb783c7d813 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/digitalTwinBuilders/29a9cee8-1af4-4d44-ab92-5f861f088259 response: body: - string: '{"id": "6ca92fb9-0f1c-486d-bf7a-9eb783c7d813", "type": "DigitalTwinBuilder", + string: '{"id": "29a9cee8-1af4-4d44-ab92-5f861f088259", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "9b9b7432-90cd-4ae2-9702-5d97c233784c"}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -492,13 +491,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:09 GMT + - Fri, 22 May 2026 08:55:03 GMT ETag: - '""' Pragma: - no-cache RequestId: - - f82054f2-9c80-43a7-b59d-0ece1546c5eb + - 7406ab15-1c57-42a0-8cc5-0da6a8cda3ad Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -524,14 +523,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": "9b9b7432-90cd-4ae2-9702-5d97c233784c", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -540,15 +540,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2047' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:10 GMT + - Fri, 22 May 2026 08:55:03 GMT Pragma: - no-cache RequestId: - - 90ad34c3-09d4-4707-ba4d-6e7e1ec19cc7 + - 672d11ac-f675-4f83-9dc8-3c5bc05d450e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -574,20 +574,20 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "02b473d6-b687-4f79-a0af-0d6bd295742d", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, - {"id": "6ca92fb9-0f1c-486d-bf7a-9eb783c7d813", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "29a9cee8-1af4-4d44-ab92-5f861f088259", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "c867e21e-e44d-4821-821b-70dd3fae45ad", + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "bfa2dd9c-7425-4067-b098-b87cfefd81ba", + "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, {"id": "db677534-5d49-4673-9f24-5ba3afa7c623", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}]}' + "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -596,15 +596,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '318' + - '317' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:10 GMT + - Fri, 22 May 2026 08:55:05 GMT Pragma: - no-cache RequestId: - - 24ca7b9d-7958-408c-a6be-81d8511be742 + - d3a692fc-1182-4be7-83d0-26c068e26bb3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -630,14 +630,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://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/digitalTwinBuilders/6ca92fb9-0f1c-486d-bf7a-9eb783c7d813 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/digitalTwinBuilders/29a9cee8-1af4-4d44-ab92-5f861f088259 response: body: - string: '{"id": "6ca92fb9-0f1c-486d-bf7a-9eb783c7d813", "type": "DigitalTwinBuilder", + string: '{"id": "29a9cee8-1af4-4d44-ab92-5f861f088259", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "9b9b7432-90cd-4ae2-9702-5d97c233784c"}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -650,13 +650,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:11 GMT + - Fri, 22 May 2026 08:55:05 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 57d95bde-1180-4b82-be70-adb44aaa97c3 + - 586cb1fe-fb48-4340-87a6-3a04ea1ccb8e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -682,9 +682,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/9b9b7432-90cd-4ae2-9702-5d97c233784c/items/6ca92fb9-0f1c-486d-bf7a-9eb783c7d813/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/29a9cee8-1af4-4d44-ab92-5f861f088259/connections response: body: string: '{"value": []}' @@ -700,11 +700,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:12 GMT + - Fri, 22 May 2026 08:55:06 GMT Pragma: - no-cache RequestId: - - fe27873f-87da-4358-8af5-62f51894114b + - 5c4f27ed-577a-4e60-aca7-528381b94aea Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -730,14 +730,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": "9b9b7432-90cd-4ae2-9702-5d97c233784c", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -746,15 +747,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2047' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:13 GMT + - Fri, 22 May 2026 08:55:08 GMT Pragma: - no-cache RequestId: - - a20a33dc-cbb6-4d0d-9b74-fea93a2f5f9c + - 15c1e519-b25b-4fec-9596-b32e43da1313 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -780,20 +781,20 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "02b473d6-b687-4f79-a0af-0d6bd295742d", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, - {"id": "6ca92fb9-0f1c-486d-bf7a-9eb783c7d813", "type": "DigitalTwinBuilder", + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "29a9cee8-1af4-4d44-ab92-5f861f088259", "type": "DigitalTwinBuilder", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "c867e21e-e44d-4821-821b-70dd3fae45ad", + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "bfa2dd9c-7425-4067-b098-b87cfefd81ba", + "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, {"id": "db677534-5d49-4673-9f24-5ba3afa7c623", "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}]}' + "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -802,15 +803,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '318' + - '317' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:14 GMT + - Fri, 22 May 2026 08:55:08 GMT Pragma: - no-cache RequestId: - - 70331bc4-0e94-4d2d-9107-1205fadb45b7 + - ba9ab6f3-42d9-4c0b-be7a-57e0d30c07c0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -838,9 +839,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/9b9b7432-90cd-4ae2-9702-5d97c233784c/items/6ca92fb9-0f1c-486d-bf7a-9eb783c7d813 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/29a9cee8-1af4-4d44-ab92-5f861f088259 response: body: string: '' @@ -856,11 +857,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 31 Mar 2026 09:30:14 GMT + - Fri, 22 May 2026 08:55:08 GMT Pragma: - no-cache RequestId: - - 75abea99-7c87-4dce-a6ea-bb76e70833e0 + - ed8d198b-370d-4f44-a155-d04bc168484b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-Environment].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-Environment].yaml index 9e09fe1ab..a2b59e98a 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-Environment].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "c8386e3b-fc56-45d5-81a8-60a8b098df7e", + "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: - - '2305' + - '2797' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:04:57 GMT + - Fri, 22 May 2026 09:17:16 GMT Pragma: - no-cache RequestId: - - cd717be6-f6c5-4d62-9863-a2fb2f71d82e + - a963a04d-7bba-41da-80de-cea66176d365 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/c8386e3b-fc56-45d5-81a8-60a8b098df7e/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:04:57 GMT + - Fri, 22 May 2026 09:17:17 GMT Pragma: - no-cache RequestId: - - b7efcf5a-6be3-4a87-9cc1-861418d7072e + - 0fcf52a0-de77-4635-8abb-4905002f471c 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/c8386e3b-fc56-45d5-81a8-60a8b098df7e/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:04:58 GMT + - Fri, 22 May 2026 09:17:18 GMT Pragma: - no-cache RequestId: - - 504a3896-dc0a-4371-880b-2a3deab80060 + - a95331ec-584c-45f4-96c9-aed218375839 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/fa27f57f-70d6-4009-872b-f7e7149c5026/environments + uri: https://api.fabric.microsoft.com/v1/workspaces/c8386e3b-fc56-45d5-81a8-60a8b098df7e/environments response: body: - string: '{"id": "117175c0-6389-4781-b456-b1cccad5d43f", "type": "Environment", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "10628138-75e0-480a-8826-526b3e1e08f0", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "c8386e3b-fc56-45d5-81a8-60a8b098df7e"}' 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: - - Thu, 29 Jan 2026 10:05:00 GMT + - Fri, 22 May 2026 09:17:21 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 90720f7b-f7dc-498b-97a7-ce77ea415871 + - d94d23d9-5d4a-459a-ad4a-50cf6d0f73c5 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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "c8386e3b-fc56-45d5-81a8-60a8b098df7e", + "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: - - '2305' + - '2797' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:02 GMT + - Fri, 22 May 2026 09:17:23 GMT Pragma: - no-cache RequestId: - - cad65c55-4835-4081-ba63-ce3e6dee9deb + - 5e238c70-675e-4613-bc99-3528d97e0d5b 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/c8386e3b-fc56-45d5-81a8-60a8b098df7e/items response: body: - string: '{"value": [{"id": "117175c0-6389-4781-b456-b1cccad5d43f", "type": "Environment", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "10628138-75e0-480a-8826-526b3e1e08f0", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "c8386e3b-fc56-45d5-81a8-60a8b098df7e"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +277,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '170' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:03 GMT + - Fri, 22 May 2026 09:17:23 GMT Pragma: - no-cache RequestId: - - b4af9ced-a91c-4c52-b887-e57822437c7a + - 770a9934-3f1d-4c09-8559-cf937f89ead8 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/fa27f57f-70d6-4009-872b-f7e7149c5026/environments/117175c0-6389-4781-b456-b1cccad5d43f + uri: https://api.fabric.microsoft.com/v1/workspaces/c8386e3b-fc56-45d5-81a8-60a8b098df7e/environments/10628138-75e0-480a-8826-526b3e1e08f0 response: body: - string: '{"id": "117175c0-6389-4781-b456-b1cccad5d43f", "type": "Environment", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026", "properties": {"publishDetails": {"state": - "Success", "targetVersion": "f370cdc5-ea37-4c31-9196-17889eed06d4", "startTime": - "2026-01-29T10:05:01.1241024Z", "endTime": "2026-01-29T10:05:01.1241024Z", + string: '{"id": "10628138-75e0-480a-8826-526b3e1e08f0", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "c8386e3b-fc56-45d5-81a8-60a8b098df7e", + "properties": {"publishDetails": {"state": "Success", "targetVersion": "5028be5c-366c-423f-8966-e55d8f574ed3", + "startTime": "2026-05-22T09:17:22.1891602Z", "endTime": "2026-05-22T09:17:22.1891602Z", "componentPublishInfo": {"sparkSettings": {"state": "Success"}, "sparkLibraries": {"state": "Success"}}}}}' headers: @@ -332,17 +330,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '316' + - '305' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:03 GMT + - Fri, 22 May 2026 09:17:25 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 0447f8a2-f530-4f01-8af6-142fc078516c + - d0e38236-da9b-467f-b863-bab0bce6ba30 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -370,16 +368,16 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/environments/117175c0-6389-4781-b456-b1cccad5d43f + uri: https://api.fabric.microsoft.com/v1/workspaces/c8386e3b-fc56-45d5-81a8-60a8b098df7e/environments/10628138-75e0-480a-8826-526b3e1e08f0 response: body: - string: '{"id": "117175c0-6389-4781-b456-b1cccad5d43f", "type": "Environment", + string: '{"id": "10628138-75e0-480a-8826-526b3e1e08f0", "type": "Environment", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026", "properties": {"publishDetails": {"state": - "Success", "targetVersion": "f370cdc5-ea37-4c31-9196-17889eed06d4", "startTime": - "2026-01-29T10:05:01.1241024Z", "endTime": "2026-01-29T10:05:01.1241024Z", + "c8386e3b-fc56-45d5-81a8-60a8b098df7e", "properties": {"publishDetails": {"state": + "Success", "targetVersion": "5028be5c-366c-423f-8966-e55d8f574ed3", "startTime": + "2026-05-22T09:17:22.1891602Z", "endTime": "2026-05-22T09:17:22.1891602Z", "componentPublishInfo": {"sparkSettings": {"state": "Success"}, "sparkLibraries": {"state": "Success"}}}}}' headers: @@ -390,17 +388,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '311' + - '312' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:04 GMT + - Fri, 22 May 2026 09:17:25 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 72e869bc-d916-416e-95cb-b7e8123b0c19 + - 22784d57-4473-4862-80ce-9de7784ed4f4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -426,14 +424,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "c8386e3b-fc56-45d5-81a8-60a8b098df7e", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -442,15 +441,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2797' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:05 GMT + - Fri, 22 May 2026 09:17:27 GMT Pragma: - no-cache RequestId: - - bc119452-1c7b-4873-b965-637d6015e5e0 + - f0951f19-d99a-481f-92cc-72d81c055caf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -476,14 +475,14 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/c8386e3b-fc56-45d5-81a8-60a8b098df7e/items response: body: - string: '{"value": [{"id": "117175c0-6389-4781-b456-b1cccad5d43f", "type": "Environment", + string: '{"value": [{"id": "10628138-75e0-480a-8826-526b3e1e08f0", "type": "Environment", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + "c8386e3b-fc56-45d5-81a8-60a8b098df7e"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -496,11 +495,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:06 GMT + - Fri, 22 May 2026 09:17:27 GMT Pragma: - no-cache RequestId: - - 26082037-4442-4ddd-bed0-2784f058cdf5 + - c9456407-de3c-4ad5-87a3-6c7736bdca19 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -526,16 +525,16 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/environments/117175c0-6389-4781-b456-b1cccad5d43f + uri: https://api.fabric.microsoft.com/v1/workspaces/c8386e3b-fc56-45d5-81a8-60a8b098df7e/environments/10628138-75e0-480a-8826-526b3e1e08f0 response: body: - string: '{"id": "117175c0-6389-4781-b456-b1cccad5d43f", "type": "Environment", + string: '{"id": "10628138-75e0-480a-8826-526b3e1e08f0", "type": "Environment", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026", "properties": {"publishDetails": {"state": - "Success", "targetVersion": "f370cdc5-ea37-4c31-9196-17889eed06d4", "startTime": - "2026-01-29T10:05:01.1241024Z", "endTime": "2026-01-29T10:05:01.1241024Z", + "c8386e3b-fc56-45d5-81a8-60a8b098df7e", "properties": {"publishDetails": {"state": + "Success", "targetVersion": "5028be5c-366c-423f-8966-e55d8f574ed3", "startTime": + "2026-05-22T09:17:22.1891602Z", "endTime": "2026-05-22T09:17:22.1891602Z", "componentPublishInfo": {"sparkSettings": {"state": "Success"}, "sparkLibraries": {"state": "Success"}}}}}' headers: @@ -546,17 +545,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '311' + - '312' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:07 GMT + - Fri, 22 May 2026 09:17:28 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 12e231c3-1624-4f72-acf3-25cc7126c56c + - 6c46c67f-98e3-4712-8dbe-c9b91e39c0ac Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -582,9 +581,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/117175c0-6389-4781-b456-b1cccad5d43f/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/c8386e3b-fc56-45d5-81a8-60a8b098df7e/items/10628138-75e0-480a-8826-526b3e1e08f0/connections response: body: string: '{"value": []}' @@ -600,11 +599,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:07 GMT + - Fri, 22 May 2026 09:17:29 GMT Pragma: - no-cache RequestId: - - 5098fca2-7034-46c2-aa8f-f7469ac6d5aa + - 6f33b172-940d-4fa9-a76c-f5fb7eb6e1ec Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -630,25 +629,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/fa27f57f-70d6-4009-872b-f7e7149c5026/environments/117175c0-6389-4781-b456-b1cccad5d43f/libraries + uri: https://api.fabric.microsoft.com/v1/workspaces/c8386e3b-fc56-45d5-81a8-60a8b098df7e/environments/10628138-75e0-480a-8826-526b3e1e08f0/libraries response: body: - string: '{"requestId": "b0bbd9cc-c90a-4158-96a4-20a612395753", "errorCode": + string: '{"requestId": "2b4be936-5585-4035-9743-4ada0fb0f4f6", "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 10:05:09 GMT + - Fri, 22 May 2026 09:17:30 GMT RequestId: - - b0bbd9cc-c90a-4158-96a4-20a612395753 + - 2b4be936-5585-4035-9743-4ada0fb0f4f6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -676,25 +675,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/fa27f57f-70d6-4009-872b-f7e7149c5026/environments/117175c0-6389-4781-b456-b1cccad5d43f/staging/libraries + uri: https://api.fabric.microsoft.com/v1/workspaces/c8386e3b-fc56-45d5-81a8-60a8b098df7e/environments/10628138-75e0-480a-8826-526b3e1e08f0/staging/libraries response: body: - string: '{"requestId": "9e79c7a7-1f2c-4564-97dd-148a6ca5a205", "errorCode": + string: '{"requestId": "bf7d9cbc-a216-4d07-ab8a-e2c9a33e5b78", "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 10:05:09 GMT + - Fri, 22 May 2026 09:17:32 GMT RequestId: - - 9e79c7a7-1f2c-4564-97dd-148a6ca5a205 + - bf7d9cbc-a216-4d07-ab8a-e2c9a33e5b78 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -722,9 +721,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/fa27f57f-70d6-4009-872b-f7e7149c5026/environments/117175c0-6389-4781-b456-b1cccad5d43f/sparkcompute + uri: https://api.fabric.microsoft.com/v1/workspaces/c8386e3b-fc56-45d5-81a8-60a8b098df7e/environments/10628138-75e0-480a-8826-526b3e1e08f0/sparkcompute response: body: string: '{"instancePool": {"name": "Starter Pool", "type": "Workspace", "id": @@ -740,9 +739,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:10 GMT + - Fri, 22 May 2026 09:17:32 GMT RequestId: - - cf25c0e1-9fb7-42a4-b2c5-5c8b352fdb01 + - f2eeba5c-34e5-43c9-8866-fd3e0c77cf01 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -768,9 +767,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/fa27f57f-70d6-4009-872b-f7e7149c5026/environments/117175c0-6389-4781-b456-b1cccad5d43f/staging/sparkcompute + uri: https://api.fabric.microsoft.com/v1/workspaces/c8386e3b-fc56-45d5-81a8-60a8b098df7e/environments/10628138-75e0-480a-8826-526b3e1e08f0/staging/sparkcompute response: body: string: '{"instancePool": {"name": "Starter Pool", "type": "Workspace", "id": @@ -786,9 +785,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:10 GMT + - Fri, 22 May 2026 09:17:33 GMT RequestId: - - 317b09fa-824a-44a6-974b-26b3bb234745 + - e01f5146-3c2c-4320-a22b-928be7f56a5f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -814,14 +813,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "c8386e3b-fc56-45d5-81a8-60a8b098df7e", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -830,15 +830,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2797' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:12 GMT + - Fri, 22 May 2026 09:17:34 GMT Pragma: - no-cache RequestId: - - ba541bf2-1e65-4620-84f7-59bf98cca637 + - ad4d9693-3a1b-4a06-b315-79b83e14a5cb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -864,14 +864,14 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/c8386e3b-fc56-45d5-81a8-60a8b098df7e/items response: body: - string: '{"value": [{"id": "117175c0-6389-4781-b456-b1cccad5d43f", "type": "Environment", + string: '{"value": [{"id": "10628138-75e0-480a-8826-526b3e1e08f0", "type": "Environment", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + "c8386e3b-fc56-45d5-81a8-60a8b098df7e"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -884,11 +884,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:12 GMT + - Fri, 22 May 2026 09:17:34 GMT Pragma: - no-cache RequestId: - - f950adea-52d7-4059-9c9c-67c7af7976cb + - 88024909-6b47-49f5-a305-ce381a2d8008 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -916,9 +916,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/117175c0-6389-4781-b456-b1cccad5d43f + uri: https://api.fabric.microsoft.com/v1/workspaces/c8386e3b-fc56-45d5-81a8-60a8b098df7e/items/10628138-75e0-480a-8826-526b3e1e08f0 response: body: string: '' @@ -934,11 +934,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 29 Jan 2026 10:05:13 GMT + - Fri, 22 May 2026 09:17:35 GMT Pragma: - no-cache RequestId: - - cdfb3728-158c-4fa8-a563-7d3607faa2a3 + - e7dba1c5-2194-4b87-825d-e8eb6badba04 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-Eventstream].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-Eventstream].yaml index c51c5b3b5..8b6eeab71 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-Eventstream].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-Eventstream].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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:14 GMT + - Fri, 22 May 2026 08:51:27 GMT Pragma: - no-cache RequestId: - - 545dd645-0d5c-4112-a913-67ecce08b5e2 + - 2d899f7e-48ff-4fcd-831e-4670b03f8fcc 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:15 GMT + - Fri, 22 May 2026 08:51:27 GMT Pragma: - no-cache RequestId: - - 8316a1c9-cfb2-4348-b93b-e9cea9638eb4 + - 28bf2f23-e188-436a-8249-07d8b0ef6923 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:15 GMT + - Fri, 22 May 2026 08:51:29 GMT Pragma: - no-cache RequestId: - - ff2d809e-9c70-461e-a0cd-b24a134133f6 + - 66437c4a-488a-4d68-aa85-a3b25edc488c 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.3.1 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/eventstreams + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/eventstreams response: body: string: 'null' @@ -178,15 +178,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:17 GMT + - Fri, 22 May 2026 08:51:30 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3ebbfdfe-024d-4d70-8838-4c16c297711b + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/808c7e8a-b5be-4d15-a4b5-5f9777b107df Pragma: - no-cache RequestId: - - 8ea48637-a7aa-4905-bfd9-0592eb5e71ca + - d4159a8e-e090-4f36-8874-a9000da96d46 Retry-After: - '20' Strict-Transport-Security: @@ -200,7 +200,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 3ebbfdfe-024d-4d70-8838-4c16c297711b + - 808c7e8a-b5be-4d15-a4b5-5f9777b107df status: code: 202 message: Accepted @@ -216,13 +216,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3ebbfdfe-024d-4d70-8838-4c16c297711b + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/808c7e8a-b5be-4d15-a4b5-5f9777b107df response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-01-29T10:05:17.2027034", - "lastUpdatedTimeUtc": "2026-01-29T10:05:22.2668019", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-22T08:51:30.3437599", + "lastUpdatedTimeUtc": "2026-05-22T08:51:32.7642561", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -232,17 +232,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '130' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:39 GMT + - Fri, 22 May 2026 08:51:50 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3ebbfdfe-024d-4d70-8838-4c16c297711b/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/808c7e8a-b5be-4d15-a4b5-5f9777b107df/result Pragma: - no-cache RequestId: - - 2e66350b-8968-4690-b273-cb36da457164 + - c6c49baf-1026-4733-9d6c-1580809bc057 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -250,7 +250,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 3ebbfdfe-024d-4d70-8838-4c16c297711b + - 808c7e8a-b5be-4d15-a4b5-5f9777b107df status: code: 200 message: OK @@ -266,14 +266,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/3ebbfdfe-024d-4d70-8838-4c16c297711b/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/808c7e8a-b5be-4d15-a4b5-5f9777b107df/result response: body: - string: '{"id": "f691f643-d4c8-45b7-8baa-4ac0b877886c", "type": "Eventstream", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "91c1be76-ca78-4776-962e-b1bb47362d79", "type": "Eventstream", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId @@ -284,11 +283,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jan 2026 10:05:39 GMT + - Fri, 22 May 2026 08:51:51 GMT Pragma: - no-cache RequestId: - - 5e3c995c-6f14-45cc-9fc9-ca6fefb34307 + - 8951e79d-9f7c-49f9-b349-acf1edc5a520 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.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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:40 GMT + - Fri, 22 May 2026 08:51:52 GMT Pragma: - no-cache RequestId: - - 7be5e509-a4d4-4619-98c4-58a9f208f1ec + - 86de7485-c280-46c0-a78c-07b0743b9fa5 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.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "f691f643-d4c8-45b7-8baa-4ac0b877886c", "type": "Eventstream", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "91c1be76-ca78-4776-962e-b1bb47362d79", "type": "Eventstream", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -378,15 +377,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '170' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:41 GMT + - Fri, 22 May 2026 08:51:53 GMT Pragma: - no-cache RequestId: - - 69dd082f-ddf5-4e72-b40e-cf8a1afeb80e + - f65f73d6-9ba5-4acb-a26f-315b17f85068 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.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/eventstreams/f691f643-d4c8-45b7-8baa-4ac0b877886c + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/eventstreams/91c1be76-ca78-4776-962e-b1bb47362d79 response: body: - string: '{"id": "f691f643-d4c8-45b7-8baa-4ac0b877886c", "type": "Eventstream", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "91c1be76-ca78-4776-962e-b1bb47362d79", "type": "Eventstream", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -428,17 +426,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '170' + - '159' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:42 GMT + - Fri, 22 May 2026 08:51:54 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 7dcb9b1b-858f-4cfc-8dea-286573bbbe7a + - 77463f64-7e19-4cdc-9d5f-74c70a6abd3e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -466,14 +464,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/eventstreams/f691f643-d4c8-45b7-8baa-4ac0b877886c + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/eventstreams/91c1be76-ca78-4776-962e-b1bb47362d79 response: body: - string: '{"id": "f691f643-d4c8-45b7-8baa-4ac0b877886c", "type": "Eventstream", + string: '{"id": "91c1be76-ca78-4776-962e-b1bb47362d79", "type": "Eventstream", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -482,17 +480,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:42 GMT + - Fri, 22 May 2026 08:51:55 GMT ETag: - '""' Pragma: - no-cache RequestId: - - b9ef0c73-e4a4-4cf6-9f03-0ba70ab73001 + - 208ed39d-6fea-4751-a134-6ea7ee9b85b9 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.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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:43 GMT + - Fri, 22 May 2026 08:51:56 GMT Pragma: - no-cache RequestId: - - e146b196-e85f-4465-84f3-3b67765bcde0 + - 2c246948-e86a-468f-ac78-f0eeac124a13 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -568,14 +567,14 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "f691f643-d4c8-45b7-8baa-4ac0b877886c", "type": "Eventstream", + string: '{"value": [{"id": "91c1be76-ca78-4776-962e-b1bb47362d79", "type": "Eventstream", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -584,15 +583,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '178' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:43 GMT + - Fri, 22 May 2026 08:51:57 GMT Pragma: - no-cache RequestId: - - bc536f6e-b128-4cb1-99d1-5fed8bf56cff + - f9752551-bc75-42ce-b511-e89f721ad420 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -618,14 +617,14 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/eventstreams/f691f643-d4c8-45b7-8baa-4ac0b877886c + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/eventstreams/91c1be76-ca78-4776-962e-b1bb47362d79 response: body: - string: '{"id": "f691f643-d4c8-45b7-8baa-4ac0b877886c", "type": "Eventstream", + string: '{"id": "91c1be76-ca78-4776-962e-b1bb47362d79", "type": "Eventstream", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -634,17 +633,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:44 GMT + - Fri, 22 May 2026 08:51:58 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 71de0070-1bff-4bf0-a979-e5d53803a7b8 + - 2a81b180-ec15-4dac-8c65-858c61200bd1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -670,9 +669,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/f691f643-d4c8-45b7-8baa-4ac0b877886c/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/91c1be76-ca78-4776-962e-b1bb47362d79/connections response: body: string: '{"value": []}' @@ -688,11 +687,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:45 GMT + - Fri, 22 May 2026 08:51:58 GMT Pragma: - no-cache RequestId: - - b97c3044-9caf-494a-af05-3ba4ea5c2110 + - 0cf611fd-778d-4ef4-be9d-72ec8114e35c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -718,14 +717,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -734,15 +734,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:46 GMT + - Fri, 22 May 2026 08:51:59 GMT Pragma: - no-cache RequestId: - - 689be3ad-7edb-4b91-9483-80ce4b2ad472 + - b7d8ea70-a6f2-48f1-a855-3c5ceb5effc0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -768,14 +768,14 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "f691f643-d4c8-45b7-8baa-4ac0b877886c", "type": "Eventstream", + string: '{"value": [{"id": "91c1be76-ca78-4776-962e-b1bb47362d79", "type": "Eventstream", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -784,15 +784,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '178' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:46 GMT + - Fri, 22 May 2026 08:51:59 GMT Pragma: - no-cache RequestId: - - 8bd40017-4e2c-457b-8b2f-0616c59bf1d8 + - 54b040cb-b001-49cf-ac42-7313c84f90cc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -820,9 +820,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/f691f643-d4c8-45b7-8baa-4ac0b877886c + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/91c1be76-ca78-4776-962e-b1bb47362d79 response: body: string: '' @@ -838,11 +838,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 29 Jan 2026 10:05:47 GMT + - Fri, 22 May 2026 08:52:00 GMT Pragma: - no-cache RequestId: - - 2c50bee8-2227-46c3-b315-5cfc87d359d7 + - 57a4e2d6-2140-42e9-a718-0e9826318ece Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-KQLDashboard].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-KQLDashboard].yaml index c56710741..7058b0e68 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-KQLDashboard].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-KQLDashboard].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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:48 GMT + - Fri, 22 May 2026 08:52:01 GMT Pragma: - no-cache RequestId: - - 8b29a7f0-8767-45be-80d2-86bf0fe10604 + - 24745301-2517-4fcf-963e-27adf85c1cfc 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:48 GMT + - Fri, 22 May 2026 08:52:03 GMT Pragma: - no-cache RequestId: - - f64c3157-cf76-4869-9384-dd1dff1835fd + - 2a9370fc-4cec-4105-bb47-e45f97a4689f 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:49 GMT + - Fri, 22 May 2026 08:52:03 GMT Pragma: - no-cache RequestId: - - f8e689d1-c693-492a-802e-c5b59193fbcc + - ee5b251d-c034-4999-a927-8dddf12a6563 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.3.1 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/kqlDashboards + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/kqlDashboards response: body: - string: '{"id": "cdf30190-9198-4dc7-94b6-f65ffb9a3a90", "type": "KQLDashboard", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "59dca8ed-6ff6-4022-8256-34b8d762ba35", "type": "KQLDashboard", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +175,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '171' + - '161' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:52 GMT + - Fri, 22 May 2026 08:52:05 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 3e467c81-7ba3-46cf-bcc3-8cbacc1fd83f + - 45fbb3ca-d5b1-487a-9174-cea28844d11e 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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:52 GMT + - Fri, 22 May 2026 08:52:06 GMT Pragma: - no-cache RequestId: - - e27b072f-db32-468a-b9e3-92727184d301 + - 5a5d3b28-b241-47f3-869d-3540bdb947ee 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "cdf30190-9198-4dc7-94b6-f65ffb9a3a90", "type": "KQLDashboard", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "59dca8ed-6ff6-4022-8256-34b8d762ba35", "type": "KQLDashboard", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +277,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '179' + - '172' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:53 GMT + - Fri, 22 May 2026 08:52:07 GMT Pragma: - no-cache RequestId: - - 15a0e860-6363-45a4-af3a-aff95b46658d + - f1734fb6-e5a5-4db1-94b6-c16b40050221 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.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/kqlDashboards/cdf30190-9198-4dc7-94b6-f65ffb9a3a90 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/kqlDashboards/59dca8ed-6ff6-4022-8256-34b8d762ba35 response: body: - string: '{"id": "cdf30190-9198-4dc7-94b6-f65ffb9a3a90", "type": "KQLDashboard", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "59dca8ed-6ff6-4022-8256-34b8d762ba35", "type": "KQLDashboard", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -328,17 +326,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '171' + - '161' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:54 GMT + - Fri, 22 May 2026 08:52:08 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 067f96a5-e66a-4151-9d5f-125b08df4e54 + - d7387e6c-dd0c-4f82-a5f9-611cb5ce83ff 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.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/kqlDashboards/cdf30190-9198-4dc7-94b6-f65ffb9a3a90 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/kqlDashboards/59dca8ed-6ff6-4022-8256-34b8d762ba35 response: body: - string: '{"id": "cdf30190-9198-4dc7-94b6-f65ffb9a3a90", "type": "KQLDashboard", + string: '{"id": "59dca8ed-6ff6-4022-8256-34b8d762ba35", "type": "KQLDashboard", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -382,17 +380,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '170' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:54 GMT + - Fri, 22 May 2026 08:52:09 GMT ETag: - '""' Pragma: - no-cache RequestId: - - f0fc2922-5387-4f80-8031-7871a429e5ac + - c253069d-a0e4-42cb-9b97-b33e96786687 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -418,14 +416,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -434,15 +433,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:55 GMT + - Fri, 22 May 2026 08:52:10 GMT Pragma: - no-cache RequestId: - - 7621b14a-953f-4f1d-a354-4546137bb406 + - 2f142e60-0e5a-4861-8975-bf5a3b27ae09 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -468,14 +467,14 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "cdf30190-9198-4dc7-94b6-f65ffb9a3a90", "type": "KQLDashboard", + string: '{"value": [{"id": "59dca8ed-6ff6-4022-8256-34b8d762ba35", "type": "KQLDashboard", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -484,15 +483,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '181' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:56 GMT + - Fri, 22 May 2026 08:52:10 GMT Pragma: - no-cache RequestId: - - 6b3d8fb4-88d6-4349-9c23-935574a6215e + - 19837703-52ca-4958-b502-a8ac5844921b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -518,14 +517,14 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/kqlDashboards/cdf30190-9198-4dc7-94b6-f65ffb9a3a90 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/kqlDashboards/59dca8ed-6ff6-4022-8256-34b8d762ba35 response: body: - string: '{"id": "cdf30190-9198-4dc7-94b6-f65ffb9a3a90", "type": "KQLDashboard", + string: '{"id": "59dca8ed-6ff6-4022-8256-34b8d762ba35", "type": "KQLDashboard", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -534,17 +533,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '170' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:57 GMT + - Fri, 22 May 2026 08:52:11 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 1b52ca67-806c-4b56-b93e-0f55eab14f70 + - ba4d8fdc-f24b-4c34-993f-20e6cf2868b3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -570,9 +569,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/cdf30190-9198-4dc7-94b6-f65ffb9a3a90/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/59dca8ed-6ff6-4022-8256-34b8d762ba35/connections response: body: string: '{"value": []}' @@ -588,11 +587,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:58 GMT + - Fri, 22 May 2026 08:52:13 GMT Pragma: - no-cache RequestId: - - b816e5d2-3126-422b-bbfb-1ae4f29118fe + - 99d42c96-09be-4618-8ab1-909f3491e87a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -618,14 +617,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -634,15 +634,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:59 GMT + - Fri, 22 May 2026 08:52:13 GMT Pragma: - no-cache RequestId: - - 8dbdf17b-989e-40d6-b145-487a114cde2e + - 2965ce91-8e65-429a-bdbf-f1044dec515e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -668,14 +668,14 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "cdf30190-9198-4dc7-94b6-f65ffb9a3a90", "type": "KQLDashboard", + string: '{"value": [{"id": "59dca8ed-6ff6-4022-8256-34b8d762ba35", "type": "KQLDashboard", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -684,15 +684,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '181' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:05:59 GMT + - Fri, 22 May 2026 08:52:14 GMT Pragma: - no-cache RequestId: - - 3dea3fa6-e55b-4f4b-9669-fdb94348613b + - 3504f149-a8e7-401f-8bf8-8e1d5daea7d5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -720,9 +720,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/cdf30190-9198-4dc7-94b6-f65ffb9a3a90 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/59dca8ed-6ff6-4022-8256-34b8d762ba35 response: body: string: '' @@ -738,11 +738,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 29 Jan 2026 10:06:00 GMT + - Fri, 22 May 2026 08:52:14 GMT Pragma: - no-cache RequestId: - - fb9bf342-9a06-4eb8-9cba-2e69cdff3aac + - 3048f064-4b06-490e-b30c-e12c51c5eba1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-KQLQueryset].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-KQLQueryset].yaml index abaf1557f..9082b7814 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-KQLQueryset].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-KQLQueryset].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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:01 GMT + - Fri, 22 May 2026 08:52:16 GMT Pragma: - no-cache RequestId: - - 48be8f0d-e196-4afb-a04f-800e3f1f4027 + - b7b1828d-647d-4232-8485-6269428b3ca0 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:01 GMT + - Fri, 22 May 2026 08:52:16 GMT Pragma: - no-cache RequestId: - - 40c16a44-61b7-4ba7-86d1-b62a13106f3c + - eb8ea169-355c-414d-a020-028d612fb673 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:02 GMT + - Fri, 22 May 2026 08:52:17 GMT Pragma: - no-cache RequestId: - - 4e16f92e-5236-4564-bfb7-b756bde447fe + - eb667f63-f772-45a9-9351-a4ffebe109bc 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/fa27f57f-70d6-4009-872b-f7e7149c5026/kqlQuerysets + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/kqlQuerysets response: body: - string: '{"id": "b9f80066-344d-4656-9a10-55e349824a3c", "type": "KQLQueryset", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "2a06e196-fa68-4bc6-8d90-69329e790806", "type": "KQLQueryset", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +175,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '169' + - '160' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:04 GMT + - Fri, 22 May 2026 08:52:19 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 3a185898-0556-4dca-afb8-a2377e5f61e0 + - 6562d88c-2855-44dd-98d3-96c1ae1c3b8b 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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:05 GMT + - Fri, 22 May 2026 08:52:20 GMT Pragma: - no-cache RequestId: - - b28a22a1-6031-46ad-8f01-c6ebe9c3f4fd + - 540fc317-4e37-4882-b73b-2277c7004215 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "b9f80066-344d-4656-9a10-55e349824a3c", "type": "KQLQueryset", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "2a06e196-fa68-4bc6-8d90-69329e790806", "type": "KQLQueryset", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +277,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '179' + - '171' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:05 GMT + - Fri, 22 May 2026 08:52:21 GMT Pragma: - no-cache RequestId: - - 53ce7cb3-52c5-4087-9901-eed4c004a53c + - 483c0bb7-74e0-4e7e-93e5-bab691c02160 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.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/kqlQuerysets/b9f80066-344d-4656-9a10-55e349824a3c + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/kqlQuerysets/2a06e196-fa68-4bc6-8d90-69329e790806 response: body: - string: '{"id": "b9f80066-344d-4656-9a10-55e349824a3c", "type": "KQLQueryset", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "2a06e196-fa68-4bc6-8d90-69329e790806", "type": "KQLQueryset", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -328,17 +326,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '169' + - '160' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:07 GMT + - Fri, 22 May 2026 08:52:22 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 36655de8-4eef-4e6b-a82e-41dacbb09b5e + - 34624c10-2a69-4452-a55f-b0f2b146a5a8 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.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/kqlQuerysets/b9f80066-344d-4656-9a10-55e349824a3c + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/kqlQuerysets/2a06e196-fa68-4bc6-8d90-69329e790806 response: body: - string: '{"id": "b9f80066-344d-4656-9a10-55e349824a3c", "type": "KQLQueryset", + string: '{"id": "2a06e196-fa68-4bc6-8d90-69329e790806", "type": "KQLQueryset", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -382,17 +380,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '170' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:07 GMT + - Fri, 22 May 2026 08:52:23 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 8094cf16-3012-4ce3-8978-c8eacfe33237 + - e8ec7d06-dda3-4afe-bea8-5cdd1d15c7f1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -418,14 +416,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -434,15 +433,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:07 GMT + - Fri, 22 May 2026 08:52:23 GMT Pragma: - no-cache RequestId: - - 5d3edb27-6059-4387-8440-b283667a5141 + - bedb8b8c-4082-41a5-ba70-a134b0dfd636 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -468,14 +467,14 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "b9f80066-344d-4656-9a10-55e349824a3c", "type": "KQLQueryset", + string: '{"value": [{"id": "2a06e196-fa68-4bc6-8d90-69329e790806", "type": "KQLQueryset", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -484,15 +483,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '181' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:08 GMT + - Fri, 22 May 2026 08:52:23 GMT Pragma: - no-cache RequestId: - - 1d5313f3-f10d-4174-ba56-251f957d1b90 + - 4258f6c7-36fa-445b-9344-45d7d14b519e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -518,14 +517,14 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/kqlQuerysets/b9f80066-344d-4656-9a10-55e349824a3c + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/kqlQuerysets/2a06e196-fa68-4bc6-8d90-69329e790806 response: body: - string: '{"id": "b9f80066-344d-4656-9a10-55e349824a3c", "type": "KQLQueryset", + string: '{"id": "2a06e196-fa68-4bc6-8d90-69329e790806", "type": "KQLQueryset", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -534,17 +533,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '170' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:09 GMT + - Fri, 22 May 2026 08:52:25 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 2e4dd169-e992-4282-9e1b-a1e9c4f694d5 + - d46c3611-a27f-490b-bf79-c17b69b70852 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -570,9 +569,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/b9f80066-344d-4656-9a10-55e349824a3c/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/2a06e196-fa68-4bc6-8d90-69329e790806/connections response: body: string: '{"value": []}' @@ -588,11 +587,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:10 GMT + - Fri, 22 May 2026 08:52:26 GMT Pragma: - no-cache RequestId: - - ee0a41e1-4d3d-4cf3-b38c-d432726154a0 + - 785e818c-4e37-4b28-abb4-f1dbf65e7672 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -618,14 +617,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -634,15 +634,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:10 GMT + - Fri, 22 May 2026 08:52:27 GMT Pragma: - no-cache RequestId: - - 41f52439-8463-4efa-b582-929b327c993e + - 466cf6bd-d3c6-4e74-9bf2-2384939e4e74 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -668,14 +668,14 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "b9f80066-344d-4656-9a10-55e349824a3c", "type": "KQLQueryset", + string: '{"value": [{"id": "2a06e196-fa68-4bc6-8d90-69329e790806", "type": "KQLQueryset", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -684,15 +684,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '181' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:10 GMT + - Fri, 22 May 2026 08:52:27 GMT Pragma: - no-cache RequestId: - - 7058d1d0-9b48-418a-8015-736331b2412b + - ce27f5e7-52b3-4bb1-bb49-eda783e4cda6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -720,9 +720,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/b9f80066-344d-4656-9a10-55e349824a3c + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/2a06e196-fa68-4bc6-8d90-69329e790806 response: body: string: '' @@ -738,11 +738,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 29 Jan 2026 10:06:11 GMT + - Fri, 22 May 2026 08:52:27 GMT Pragma: - no-cache RequestId: - - 9f7ee874-5eb8-4ad4-93ad-d7e729a4f2be + - a5bbd05b-9d01-4b45-b20a-4774814e0ce8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-MLExperiment].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-MLExperiment].yaml index 2d1bd75a6..9abdb8190 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-MLExperiment].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-MLExperiment].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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:12 GMT + - Fri, 22 May 2026 08:52:28 GMT Pragma: - no-cache RequestId: - - 58f06fd8-6a0d-4841-a1b2-27d7f1da47a0 + - 3501d155-b683-4d20-852c-038f8d56f51b 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:13 GMT + - Fri, 22 May 2026 08:52:29 GMT Pragma: - no-cache RequestId: - - 43d0fd34-757a-4c8f-acdd-edbfea326daa + - b2fc9dd3-958e-4390-b35a-52d96575c9c8 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:14 GMT + - Fri, 22 May 2026 08:52:29 GMT Pragma: - no-cache RequestId: - - 4c3b35f7-56e1-4700-bc9e-611a0af29fec + - 7601805c-997c-4922-a2f5-c7fd540c56f8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -156,13 +157,12 @@ interactions: - keep-alive Content-Length: - '77' - 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/fa27f57f-70d6-4009-872b-f7e7149c5026/mlExperiments + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/mlExperiments response: body: string: 'null' @@ -178,15 +178,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:15 GMT + - Fri, 22 May 2026 08:52:30 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/609827ae-50e0-4ff5-bdee-688c6df731a0 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/38b98f7e-2bc9-49c1-8486-0bd85af5a580 Pragma: - no-cache RequestId: - - 79c509bf-a686-425c-b77b-695a1ded0700 + - 94b4395e-8edf-4f7b-9796-4d5507831cbc Retry-After: - '20' Strict-Transport-Security: @@ -200,7 +200,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 609827ae-50e0-4ff5-bdee-688c6df731a0 + - 38b98f7e-2bc9-49c1-8486-0bd85af5a580 status: code: 202 message: Accepted @@ -216,13 +216,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/609827ae-50e0-4ff5-bdee-688c6df731a0 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/38b98f7e-2bc9-49c1-8486-0bd85af5a580 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-01-29T10:06:15.4969328", - "lastUpdatedTimeUtc": "2026-01-29T10:06:16.3250688", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-22T08:52:30.3678146", + "lastUpdatedTimeUtc": "2026-05-22T08:52:31.4631527", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -236,13 +236,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:36 GMT + - Fri, 22 May 2026 08:52:51 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/609827ae-50e0-4ff5-bdee-688c6df731a0/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/38b98f7e-2bc9-49c1-8486-0bd85af5a580/result Pragma: - no-cache RequestId: - - ff42f23e-bb56-4ccd-92d8-d6aac11e4055 + - 33c13a3b-224b-4e0f-b8f8-927cf4325691 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -250,7 +250,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 609827ae-50e0-4ff5-bdee-688c6df731a0 + - 38b98f7e-2bc9-49c1-8486-0bd85af5a580 status: code: 200 message: OK @@ -266,14 +266,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/609827ae-50e0-4ff5-bdee-688c6df731a0/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/38b98f7e-2bc9-49c1-8486-0bd85af5a580/result response: body: - string: '{"id": "7383d5fc-b3ed-485b-9381-f9ba3e5b9bfa", "type": "MLExperiment", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "d2e93eb0-e060-4aae-906a-e385de03777c", "type": "MLExperiment", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId @@ -284,11 +283,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jan 2026 10:06:37 GMT + - Fri, 22 May 2026 08:52:52 GMT Pragma: - no-cache RequestId: - - 97a40575-14ab-44b9-8355-7fd6000e6a29 + - e10ab69f-57fd-47d7-b9ab-0b6dccca0f04 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.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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:37 GMT + - Fri, 22 May 2026 08:52:52 GMT Pragma: - no-cache RequestId: - - e3f08115-8acb-46c3-800c-01f8396d469f + - d5f0a441-fe22-4a27-a28f-c6b4fbba0f63 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.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "7383d5fc-b3ed-485b-9381-f9ba3e5b9bfa", "type": "MLExperiment", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "d2e93eb0-e060-4aae-906a-e385de03777c", "type": "MLExperiment", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -378,15 +377,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '179' + - '171' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:39 GMT + - Fri, 22 May 2026 08:52:54 GMT Pragma: - no-cache RequestId: - - 5b84e609-3eda-4bde-9fe6-82026b867fa2 + - 7e89be0f-f386-4186-82fb-633410c8d2ed Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -412,15 +411,14 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/mlExperiments/7383d5fc-b3ed-485b-9381-f9ba3e5b9bfa + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/mlExperiments/d2e93eb0-e060-4aae-906a-e385de03777c response: body: - string: '{"id": "7383d5fc-b3ed-485b-9381-f9ba3e5b9bfa", "type": "MLExperiment", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026", "properties": {"mlFlowExperimentId": - "7383d5fc-b3ed-485b-9381-f9ba3e5b9bfa"}}' + string: '{"id": "d2e93eb0-e060-4aae-906a-e385de03777c", "type": "MLExperiment", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "properties": {"mlFlowExperimentId": "d2e93eb0-e060-4aae-906a-e385de03777c"}}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -429,17 +427,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '195' + - '184' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:39 GMT + - Fri, 22 May 2026 08:52:55 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 0331fd51-1d07-4387-946c-0752444c8760 + - 6d124488-d129-4c49-bc38-1e6f489db774 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -467,15 +465,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/mlExperiments/7383d5fc-b3ed-485b-9381-f9ba3e5b9bfa + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/mlExperiments/d2e93eb0-e060-4aae-906a-e385de03777c response: body: - string: '{"id": "7383d5fc-b3ed-485b-9381-f9ba3e5b9bfa", "type": "MLExperiment", + string: '{"id": "d2e93eb0-e060-4aae-906a-e385de03777c", "type": "MLExperiment", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026", "properties": {"mlFlowExperimentId": - "7383d5fc-b3ed-485b-9381-f9ba3e5b9bfa"}}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534", "properties": {"mlFlowExperimentId": + "d2e93eb0-e060-4aae-906a-e385de03777c"}}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -484,17 +482,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '193' + - '191' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:40 GMT + - Fri, 22 May 2026 08:52:55 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 8a938d2b-60cb-420e-b15f-97fe95c869f9 + - 9b8219a3-80b2-4688-bf0d-0abf836d2485 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -520,14 +518,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -536,15 +535,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:40 GMT + - Fri, 22 May 2026 08:52:56 GMT Pragma: - no-cache RequestId: - - b5c5ef4c-5dbe-4a09-bee8-8a47bacca2bb + - d6639d22-b98e-42d6-bc94-b43b940e77e0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -570,14 +569,14 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "7383d5fc-b3ed-485b-9381-f9ba3e5b9bfa", "type": "MLExperiment", + string: '{"value": [{"id": "d2e93eb0-e060-4aae-906a-e385de03777c", "type": "MLExperiment", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -586,15 +585,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '179' + - '180' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:41 GMT + - Fri, 22 May 2026 08:52:57 GMT Pragma: - no-cache RequestId: - - 22751bff-7c71-4af3-977e-10712d69c0e9 + - 611baaa5-57ce-4722-b7fc-c668f479f09a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -620,15 +619,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/fa27f57f-70d6-4009-872b-f7e7149c5026/mlExperiments/7383d5fc-b3ed-485b-9381-f9ba3e5b9bfa + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/mlExperiments/d2e93eb0-e060-4aae-906a-e385de03777c response: body: - string: '{"id": "7383d5fc-b3ed-485b-9381-f9ba3e5b9bfa", "type": "MLExperiment", + string: '{"id": "d2e93eb0-e060-4aae-906a-e385de03777c", "type": "MLExperiment", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026", "properties": {"mlFlowExperimentId": - "7383d5fc-b3ed-485b-9381-f9ba3e5b9bfa"}}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534", "properties": {"mlFlowExperimentId": + "d2e93eb0-e060-4aae-906a-e385de03777c"}}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -637,17 +636,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '193' + - '191' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:42 GMT + - Fri, 22 May 2026 08:52:58 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 59face8c-046b-43cd-9889-20943e5101c0 + - 739a54b9-232c-42d3-b640-a3e81372c210 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -673,9 +672,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/7383d5fc-b3ed-485b-9381-f9ba3e5b9bfa/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/d2e93eb0-e060-4aae-906a-e385de03777c/connections response: body: string: '{"value": []}' @@ -691,11 +690,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:43 GMT + - Fri, 22 May 2026 08:52:59 GMT Pragma: - no-cache RequestId: - - db266823-0658-43c6-bb9c-62280e36d488 + - 9357377b-c553-43fa-ac02-b4cc4b43ff1b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -721,14 +720,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -737,15 +737,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:43 GMT + - Fri, 22 May 2026 08:53:00 GMT Pragma: - no-cache RequestId: - - 95003dca-3d29-48f6-ad12-18f05a6e82c4 + - 21e6b0ef-6604-4f6a-8593-0e7db8acc3e3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -771,14 +771,14 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "7383d5fc-b3ed-485b-9381-f9ba3e5b9bfa", "type": "MLExperiment", + string: '{"value": [{"id": "d2e93eb0-e060-4aae-906a-e385de03777c", "type": "MLExperiment", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -787,15 +787,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '179' + - '180' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:45 GMT + - Fri, 22 May 2026 08:53:00 GMT Pragma: - no-cache RequestId: - - 8ff29c3d-0af3-4d1f-af53-4ec39419873d + - 225e6c62-2966-4ee3-b0c6-1feee48b8037 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -823,9 +823,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/7383d5fc-b3ed-485b-9381-f9ba3e5b9bfa + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/d2e93eb0-e060-4aae-906a-e385de03777c response: body: string: '' @@ -841,11 +841,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 29 Jan 2026 10:06:46 GMT + - Fri, 22 May 2026 08:53:01 GMT Pragma: - no-cache RequestId: - - 3e7f83e8-58e8-4548-b76e-dee0ce42a95c + - 0ed59dc2-531b-4f6e-935d-de9119a8e40d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-Map].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-Map].yaml index 2769e4d63..d56cb1673 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-Map].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-Map].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.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": "7f856733-0681-4bf0-b46f-fe3a6240864b", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '1595' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:04:49 GMT + - Fri, 22 May 2026 08:54:22 GMT Pragma: - no-cache RequestId: - - d7549ab8-7a54-4731-8a79-eba2dee2bc7a + - f5fcd042-a0ae-43c7-903b-b3435d019948 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.4.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/7f856733-0681-4bf0-b46f-fe3a6240864b/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:04:50 GMT + - Fri, 22 May 2026 08:54:22 GMT Pragma: - no-cache RequestId: - - c48cae5d-3336-4e45-a7f8-b251e1c22d2c + - f096523c-4e6b-44ad-87b3-b608a8e519a8 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.4.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/7f856733-0681-4bf0-b46f-fe3a6240864b/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:04:52 GMT + - Fri, 22 May 2026 08:54:24 GMT Pragma: - no-cache RequestId: - - 495efe68-8718-49ad-990c-3e114a15b391 + - e8998a88-e352-46cd-bb18-39b850520105 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -156,17 +157,16 @@ interactions: - keep-alive Content-Length: - '68' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/7f856733-0681-4bf0-b46f-fe3a6240864b/maps + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/maps response: body: - string: '{"id": "d3f928ef-81be-4bd4-bfa8-772757a99b3a", "type": "Map", "displayName": - "fabcli000001", "workspaceId": "7f856733-0681-4bf0-b46f-fe3a6240864b"}' + string: '{"id": "1afb40e0-fa81-4762-9184-fdf268145853", "type": "Map", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -175,17 +175,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '164' + - '153' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:04:54 GMT + - Fri, 22 May 2026 08:54:26 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 4ee1db48-ef1e-44a1-8919-eb0719bda68a + - a71afc56-75e3-4f72-af1b-8106a0c36c0e 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.4.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": "7f856733-0681-4bf0-b46f-fe3a6240864b", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '1595' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:04:55 GMT + - Fri, 22 May 2026 08:54:27 GMT Pragma: - no-cache RequestId: - - 7383f31d-42ab-4ca1-bb58-7df0bc3f4b5f + - 798a27e8-9cae-4981-a483-cdf460c0b9a4 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.4.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/7f856733-0681-4bf0-b46f-fe3a6240864b/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "d3f928ef-81be-4bd4-bfa8-772757a99b3a", "type": "Map", - "displayName": "fabcli000001", "workspaceId": - "7f856733-0681-4bf0-b46f-fe3a6240864b"}]}' + string: '{"value": [{"id": "1afb40e0-fa81-4762-9184-fdf268145853", "type": "Map", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -277,15 +277,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '175' + - '163' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:04:56 GMT + - Fri, 22 May 2026 08:54:27 GMT Pragma: - no-cache RequestId: - - effc8aac-eb07-4bfa-90f3-bea0cb25aeaa + - 4226ac6c-8308-4f13-b7b7-b167155afc2e 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.4.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/7f856733-0681-4bf0-b46f-fe3a6240864b/maps/d3f928ef-81be-4bd4-bfa8-772757a99b3a + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/maps/1afb40e0-fa81-4762-9184-fdf268145853 response: body: - string: '{"id": "d3f928ef-81be-4bd4-bfa8-772757a99b3a", "type": "Map", "displayName": - "fabcli000001", "workspaceId": "7f856733-0681-4bf0-b46f-fe3a6240864b"}' + string: '{"id": "1afb40e0-fa81-4762-9184-fdf268145853", "type": "Map", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -326,17 +326,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '164' + - '153' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:04:57 GMT + - Fri, 22 May 2026 08:54:28 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 58c40681-c972-4c49-9c22-9a569c506f36 + - 261d26c8-d2f5-499e-b136-e4dbe0322436 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.4.0 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/7f856733-0681-4bf0-b46f-fe3a6240864b/maps/d3f928ef-81be-4bd4-bfa8-772757a99b3a + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/maps/1afb40e0-fa81-4762-9184-fdf268145853 response: body: - string: '{"id": "d3f928ef-81be-4bd4-bfa8-772757a99b3a", "type": "Map", "displayName": - "fabcli000001", "description": "fabcli000002", "workspaceId": "7f856733-0681-4bf0-b46f-fe3a6240864b"}' + string: '{"id": "1afb40e0-fa81-4762-9184-fdf268145853", "type": "Map", "displayName": + "fabcli000001", "description": "fabcli000002", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -383,13 +383,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:04:58 GMT + - Fri, 22 May 2026 08:54:29 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 5442a5c5-fe2a-4a66-9c8a-274852bbb147 + - f902fefa-c06e-43e7-b992-5b6303b13214 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -415,14 +415,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.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": "7f856733-0681-4bf0-b46f-fe3a6240864b", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -431,15 +432,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:04:59 GMT + - Fri, 22 May 2026 08:54:29 GMT Pragma: - no-cache RequestId: - - 93ac672a-06e3-4ac5-99c7-d06ff35ce1c3 + - 1b8cb81a-d66f-4958-8771-0738748cdba4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -465,14 +466,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/7f856733-0681-4bf0-b46f-fe3a6240864b/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "d3f928ef-81be-4bd4-bfa8-772757a99b3a", "type": "Map", + string: '{"value": [{"id": "1afb40e0-fa81-4762-9184-fdf268145853", "type": "Map", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "7f856733-0681-4bf0-b46f-fe3a6240864b"}]}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -485,11 +486,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:05:01 GMT + - Fri, 22 May 2026 08:54:31 GMT Pragma: - no-cache RequestId: - - 31534cf8-eeaf-469e-af35-bc002e361e17 + - 1e34d2da-e889-46a7-9e40-09c2e920f21c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -515,13 +516,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/7f856733-0681-4bf0-b46f-fe3a6240864b/maps/d3f928ef-81be-4bd4-bfa8-772757a99b3a + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/maps/1afb40e0-fa81-4762-9184-fdf268145853 response: body: - string: '{"id": "d3f928ef-81be-4bd4-bfa8-772757a99b3a", "type": "Map", "displayName": - "fabcli000001", "description": "fabcli000002", "workspaceId": "7f856733-0681-4bf0-b46f-fe3a6240864b"}' + string: '{"id": "1afb40e0-fa81-4762-9184-fdf268145853", "type": "Map", "displayName": + "fabcli000001", "description": "fabcli000002", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -534,13 +535,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:05:02 GMT + - Fri, 22 May 2026 08:54:31 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 0aaf0650-3eb7-406a-a0ed-b393bb45abc6 + - f0d0bc95-e511-408d-806f-68a51a43a99c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -566,9 +567,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/7f856733-0681-4bf0-b46f-fe3a6240864b/items/d3f928ef-81be-4bd4-bfa8-772757a99b3a/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/1afb40e0-fa81-4762-9184-fdf268145853/connections response: body: string: '{"value": []}' @@ -584,11 +585,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:05:02 GMT + - Fri, 22 May 2026 08:54:31 GMT Pragma: - no-cache RequestId: - - d977e6aa-fdc2-47d2-b12f-5f1b32ab59ea + - e403c83d-2268-4f54-bb3c-82626465e508 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -614,14 +615,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.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": "7f856733-0681-4bf0-b46f-fe3a6240864b", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -630,15 +632,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:05:03 GMT + - Fri, 22 May 2026 08:54:32 GMT Pragma: - no-cache RequestId: - - c7cf13ee-eef6-4474-ac49-9554999c87de + - daca30ad-6b7d-4735-a9b8-c6e4c5ebee78 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -664,14 +666,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/7f856733-0681-4bf0-b46f-fe3a6240864b/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "d3f928ef-81be-4bd4-bfa8-772757a99b3a", "type": "Map", + string: '{"value": [{"id": "1afb40e0-fa81-4762-9184-fdf268145853", "type": "Map", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "7f856733-0681-4bf0-b46f-fe3a6240864b"}]}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -684,11 +686,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:05:03 GMT + - Fri, 22 May 2026 08:54:32 GMT Pragma: - no-cache RequestId: - - ccff8c8a-9180-49d9-a788-c2a955d73510 + - 565be23e-32b3-44b7-aec9-42966ae539e3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -716,9 +718,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/7f856733-0681-4bf0-b46f-fe3a6240864b/items/d3f928ef-81be-4bd4-bfa8-772757a99b3a + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/1afb40e0-fa81-4762-9184-fdf268145853 response: body: string: '' @@ -734,11 +736,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 19 Mar 2026 09:05:04 GMT + - Fri, 22 May 2026 08:54:33 GMT Pragma: - no-cache RequestId: - - f0b365b2-52ec-4287-9bad-8478d2178654 + - 04a3d857-14c8-40b9-9cc9-f749b520fe4d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-Notebook].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-Notebook].yaml index 71fd23a7b..75d598a32 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-Notebook].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-Notebook].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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:46 GMT + - Fri, 22 May 2026 08:53:02 GMT Pragma: - no-cache RequestId: - - 5ae7c33f-a734-47a8-8035-7f3903f828d1 + - 6988b2ef-7f1b-4e64-87d0-545db4a98076 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:46 GMT + - Fri, 22 May 2026 08:53:02 GMT Pragma: - no-cache RequestId: - - 826c0c25-43a2-4864-b87c-ea0120d1821e + - c6ed047a-efb5-4548-85c0-30ca384727fc 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:47 GMT + - Fri, 22 May 2026 08:53:04 GMT Pragma: - no-cache RequestId: - - b6627407-ad91-406b-b54f-5f06c3363f9d + - 8e3c3185-c135-4c28-b499-2bf087c6d405 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.3.1 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/notebooks + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/notebooks response: body: string: 'null' @@ -178,15 +180,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:06:48 GMT + - Fri, 22 May 2026 08:53:05 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/57350421-6cc4-45b4-a386-c82c84083f6e + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e623f2ec-61e1-4bac-970d-4869940484b9 Pragma: - no-cache RequestId: - - 9ea7ecbd-5baf-4b30-976b-927b95d0738e + - 0567eacb-ad6a-40ae-9df2-b8d5f47e061d Retry-After: - '20' Strict-Transport-Security: @@ -200,7 +202,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 57350421-6cc4-45b4-a386-c82c84083f6e + - e623f2ec-61e1-4bac-970d-4869940484b9 status: code: 202 message: Accepted @@ -216,13 +218,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/57350421-6cc4-45b4-a386-c82c84083f6e + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e623f2ec-61e1-4bac-970d-4869940484b9 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-01-29T10:06:48.9108803", - "lastUpdatedTimeUtc": "2026-01-29T10:06:50.2242196", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-22T08:53:05.8549841", + "lastUpdatedTimeUtc": "2026-05-22T08:53:07.100329", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -232,17 +234,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:09 GMT + - Fri, 22 May 2026 08:53:26 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/57350421-6cc4-45b4-a386-c82c84083f6e/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e623f2ec-61e1-4bac-970d-4869940484b9/result Pragma: - no-cache RequestId: - - d6e8786e-1b89-43fa-9460-e604535d95c4 + - 0db9454d-1d40-445d-8494-ff8ee8d1c8e8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -250,7 +252,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 57350421-6cc4-45b4-a386-c82c84083f6e + - e623f2ec-61e1-4bac-970d-4869940484b9 status: code: 200 message: OK @@ -266,14 +268,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/57350421-6cc4-45b4-a386-c82c84083f6e/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/e623f2ec-61e1-4bac-970d-4869940484b9/result response: body: - string: '{"id": "b429728e-4ed0-4cce-9e56-12a4ac4b00f1", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "d7c2591b-7e07-4729-a454-5b48c2f1afd0", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId @@ -284,11 +285,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jan 2026 10:07:10 GMT + - Fri, 22 May 2026 08:53:27 GMT Pragma: - no-cache RequestId: - - 59d5ab59-1be7-4030-994d-e91b842f1932 + - 79f771dd-212a-4ef2-92af-8e28c2d33e30 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.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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:11 GMT + - Fri, 22 May 2026 08:53:28 GMT Pragma: - no-cache RequestId: - - 556beb13-4910-45cf-93c9-58d441850bf0 + - e6226466-6171-43f1-95d8-ff18adb9325d 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.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "b429728e-4ed0-4cce-9e56-12a4ac4b00f1", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "d7c2591b-7e07-4729-a454-5b48c2f1afd0", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -378,15 +379,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '174' + - '167' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:12 GMT + - Fri, 22 May 2026 08:53:28 GMT Pragma: - no-cache RequestId: - - 22854f23-ec33-4862-93b8-abd928191971 + - fff30cf3-22ad-48a1-84bb-259d278f9b54 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.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/notebooks/b429728e-4ed0-4cce-9e56-12a4ac4b00f1 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/notebooks/d7c2591b-7e07-4729-a454-5b48c2f1afd0 response: body: - string: '{"id": "b429728e-4ed0-4cce-9e56-12a4ac4b00f1", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "d7c2591b-7e07-4729-a454-5b48c2f1afd0", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -428,17 +428,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '164' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:13 GMT + - Fri, 22 May 2026 08:53:30 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 1fd2f93a-0a36-496c-a155-66eb6412b8af + - 8aab7ead-ff07-4204-b42c-6b99437c7610 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -466,14 +466,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/notebooks/b429728e-4ed0-4cce-9e56-12a4ac4b00f1 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/notebooks/d7c2591b-7e07-4729-a454-5b48c2f1afd0 response: body: - string: '{"id": "b429728e-4ed0-4cce-9e56-12a4ac4b00f1", "type": "Notebook", + string: '{"id": "d7c2591b-7e07-4729-a454-5b48c2f1afd0", "type": "Notebook", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -482,17 +482,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '160' + - '164' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:13 GMT + - Fri, 22 May 2026 08:53:30 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 53b56a57-aec2-4b7e-a70f-a30331acb00f + - 35db2886-c0aa-404e-ab23-d6b58a3f6010 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -518,14 +518,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -534,15 +535,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:14 GMT + - Fri, 22 May 2026 08:53:31 GMT Pragma: - no-cache RequestId: - - a8008f24-81da-4346-b903-d2dc1b7a6936 + - 72a0ef79-fe34-40d7-8aa3-a2301b77dcba Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -568,14 +569,14 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "b429728e-4ed0-4cce-9e56-12a4ac4b00f1", "type": "Notebook", + string: '{"value": [{"id": "d7c2591b-7e07-4729-a454-5b48c2f1afd0", "type": "Notebook", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -584,15 +585,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '174' + - '175' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:14 GMT + - Fri, 22 May 2026 08:53:32 GMT Pragma: - no-cache RequestId: - - 5852592c-6b88-4e83-bd4c-e0cf56886240 + - bb0995a1-6cf8-4780-b4ab-3b31a2035c74 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -618,14 +619,14 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/notebooks/b429728e-4ed0-4cce-9e56-12a4ac4b00f1 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/notebooks/d7c2591b-7e07-4729-a454-5b48c2f1afd0 response: body: - string: '{"id": "b429728e-4ed0-4cce-9e56-12a4ac4b00f1", "type": "Notebook", + string: '{"id": "d7c2591b-7e07-4729-a454-5b48c2f1afd0", "type": "Notebook", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -634,17 +635,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '160' + - '164' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:15 GMT + - Fri, 22 May 2026 08:53:32 GMT ETag: - '""' Pragma: - no-cache RequestId: - - d652f72f-1cd9-40ad-8516-b2efefeb5742 + - fbf1f70a-43af-4233-b6d0-9550a54bdb3d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -670,9 +671,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/b429728e-4ed0-4cce-9e56-12a4ac4b00f1/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/d7c2591b-7e07-4729-a454-5b48c2f1afd0/connections response: body: string: '{"value": []}' @@ -688,11 +689,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:16 GMT + - Fri, 22 May 2026 08:53:34 GMT Pragma: - no-cache RequestId: - - d6667a5b-ca02-4074-a06f-662021a75642 + - 86455be5-02b3-4717-89cb-eeb25ea25523 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -718,9 +719,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/b429728e-4ed0-4cce-9e56-12a4ac4b00f1/jobs/RunNotebook/schedules + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/d7c2591b-7e07-4729-a454-5b48c2f1afd0/jobs/RunNotebook/schedules response: body: string: '{"value": []}' @@ -736,11 +737,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:17 GMT + - Fri, 22 May 2026 08:53:34 GMT Pragma: - no-cache RequestId: - - 517017be-11b3-4928-a545-79d6dd18d7a6 + - 19ff3317-0fdf-4468-9cea-d47371aaf54c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -766,14 +767,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -782,15 +784,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:18 GMT + - Fri, 22 May 2026 08:53:36 GMT Pragma: - no-cache RequestId: - - 3287fe1a-41ec-43a8-9840-9dcfb65b2d1b + - 80d2ea74-81cf-4f92-98c7-3d522338f860 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -816,14 +818,14 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "b429728e-4ed0-4cce-9e56-12a4ac4b00f1", "type": "Notebook", + string: '{"value": [{"id": "d7c2591b-7e07-4729-a454-5b48c2f1afd0", "type": "Notebook", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -832,15 +834,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '174' + - '175' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:18 GMT + - Fri, 22 May 2026 08:53:36 GMT Pragma: - no-cache RequestId: - - 9e5b7cbe-2443-43b4-801b-801cec0d7a03 + - 7b621404-4e6f-41f4-ae1d-aed02c269d75 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -868,9 +870,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/b429728e-4ed0-4cce-9e56-12a4ac4b00f1 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/d7c2591b-7e07-4729-a454-5b48c2f1afd0 response: body: string: '' @@ -886,11 +888,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 29 Jan 2026 10:07:18 GMT + - Fri, 22 May 2026 08:53:37 GMT Pragma: - no-cache RequestId: - - 20c882d9-7fcd-4735-8292-6967583e4e8f + - a565985f-e247-4fbb-b6cb-225ef45783e0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-Reflex].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-Reflex].yaml index ed52e7339..3101d9f15 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-Reflex].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-Reflex].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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:20 GMT + - Fri, 22 May 2026 08:53:38 GMT Pragma: - no-cache RequestId: - - 54615783-89c3-4586-a86f-6181c507ee9b + - 553fc388-7cd9-4c55-bbae-5682276b45ed 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:20 GMT + - Fri, 22 May 2026 08:53:39 GMT Pragma: - no-cache RequestId: - - cc0d5d9e-8462-44d4-a7c6-5463e17de7e5 + - 0951c075-f86a-4a7d-baa0-9e06d7ffd77f 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:21 GMT + - Fri, 22 May 2026 08:53:39 GMT Pragma: - no-cache RequestId: - - 44ba8b84-b489-4e3e-8b35-552e01fd7fc9 + - 08d6982c-83bf-485f-9429-128a3018e9d3 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.3.1 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/reflexes + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/reflexes response: body: - string: '{"id": "a226b70d-c59c-4a8d-bf32-9fad41caab35", "type": "Reflex", "displayName": - "fabcli000001", "workspaceId": "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "a889d3fc-1a7f-4fe6-8b4e-669cc3ceedb6", "type": "Reflex", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -175,17 +175,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:24 GMT + - Fri, 22 May 2026 08:53:42 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 5f2d410a-9d12-4ece-ab89-7c371e0e8ba4 + - 8bf4a20e-addf-4ab4-a474-9aeb16fe0c75 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.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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:25 GMT + - Fri, 22 May 2026 08:53:43 GMT Pragma: - no-cache RequestId: - - 7aa263eb-9e3b-494e-9870-7a8b322b9a33 + - b81a41ac-60f0-45b1-80b2-d4b96bfe0290 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.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "a226b70d-c59c-4a8d-bf32-9fad41caab35", "type": "Reflex", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "a889d3fc-1a7f-4fe6-8b4e-669cc3ceedb6", "type": "Reflex", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -277,15 +277,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '177' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:25 GMT + - Fri, 22 May 2026 08:53:44 GMT Pragma: - no-cache RequestId: - - bef5a010-3dbf-4e75-8ce4-fa6cc6c2666b + - 5bbeb8eb-7138-4e94-bc98-603b884d3380 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.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/reflexes/a226b70d-c59c-4a8d-bf32-9fad41caab35 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/reflexes/a889d3fc-1a7f-4fe6-8b4e-669cc3ceedb6 response: body: - string: '{"id": "a226b70d-c59c-4a8d-bf32-9fad41caab35", "type": "Reflex", "displayName": - "fabcli000001", "workspaceId": "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "a889d3fc-1a7f-4fe6-8b4e-669cc3ceedb6", "type": "Reflex", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -326,17 +326,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:26 GMT + - Fri, 22 May 2026 08:53:45 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 19c9ccc8-c15a-4812-921c-455b593f63a4 + - 7a4394c2-76a8-4d12-b949-e17191ba3d51 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.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/reflexes/a226b70d-c59c-4a8d-bf32-9fad41caab35 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/reflexes/a889d3fc-1a7f-4fe6-8b4e-669cc3ceedb6 response: body: - string: '{"id": "a226b70d-c59c-4a8d-bf32-9fad41caab35", "type": "Reflex", "displayName": - "fabcli000001", "description": "fabcli000002", "workspaceId": "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "a889d3fc-1a7f-4fe6-8b4e-669cc3ceedb6", "type": "Reflex", "displayName": + "fabcli000001", "description": "fabcli000002", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -379,17 +379,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '163' + - '164' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:28 GMT + - Fri, 22 May 2026 08:53:47 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 8ff300b4-7678-4419-b9b1-f476330addbd + - 830d0f7f-3df5-4b18-877c-dcf9a70d5fe0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -415,14 +415,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -431,15 +432,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:29 GMT + - Fri, 22 May 2026 08:53:48 GMT Pragma: - no-cache RequestId: - - 9032387f-9d8d-471f-8797-617bb20ae2a1 + - 20999ff4-19c0-4996-978a-72d52c97b46b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -465,14 +466,14 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "a226b70d-c59c-4a8d-bf32-9fad41caab35", "type": "Reflex", + string: '{"value": [{"id": "a889d3fc-1a7f-4fe6-8b4e-669cc3ceedb6", "type": "Reflex", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -481,15 +482,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '175' + - '176' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:30 GMT + - Fri, 22 May 2026 08:53:49 GMT Pragma: - no-cache RequestId: - - d6ac5ff0-2ceb-441a-a3e8-34a3e535203c + - 30978965-fb40-45ed-adbc-8dcbaeecd6cc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -515,13 +516,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/fa27f57f-70d6-4009-872b-f7e7149c5026/reflexes/a226b70d-c59c-4a8d-bf32-9fad41caab35 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/reflexes/a889d3fc-1a7f-4fe6-8b4e-669cc3ceedb6 response: body: - string: '{"id": "a226b70d-c59c-4a8d-bf32-9fad41caab35", "type": "Reflex", "displayName": - "fabcli000001", "description": "fabcli000002", "workspaceId": "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "a889d3fc-1a7f-4fe6-8b4e-669cc3ceedb6", "type": "Reflex", "displayName": + "fabcli000001", "description": "fabcli000002", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -530,17 +531,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '163' + - '164' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:31 GMT + - Fri, 22 May 2026 08:53:50 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 914e1f4e-4d97-4f4f-a5b5-a96f89f4cd84 + - f8b5d5a3-8bf9-40b5-b521-832453937b8a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -566,9 +567,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/a226b70d-c59c-4a8d-bf32-9fad41caab35/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/a889d3fc-1a7f-4fe6-8b4e-669cc3ceedb6/connections response: body: string: '{"value": []}' @@ -584,11 +585,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:31 GMT + - Fri, 22 May 2026 08:53:50 GMT Pragma: - no-cache RequestId: - - 1acc1b5a-a776-4e66-ab12-931edcc43c22 + - 122c9aed-0797-4ce1-bc47-5044fc488713 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -614,14 +615,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -630,15 +632,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:32 GMT + - Fri, 22 May 2026 08:53:51 GMT Pragma: - no-cache RequestId: - - 7c5c0b32-2c27-44ec-aeb2-1c47395340e0 + - 33da848a-ed7f-4d2d-b447-148491cc34c1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -664,14 +666,14 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "a226b70d-c59c-4a8d-bf32-9fad41caab35", "type": "Reflex", + string: '{"value": [{"id": "a889d3fc-1a7f-4fe6-8b4e-669cc3ceedb6", "type": "Reflex", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -680,15 +682,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '175' + - '176' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:33 GMT + - Fri, 22 May 2026 08:53:53 GMT Pragma: - no-cache RequestId: - - 8e08cf0f-3d2f-4736-8841-59ba4a43bf27 + - c260249a-d049-4a3a-b6ac-f83d542af204 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -716,9 +718,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/a226b70d-c59c-4a8d-bf32-9fad41caab35 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/a889d3fc-1a7f-4fe6-8b4e-669cc3ceedb6 response: body: string: '' @@ -734,11 +736,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 29 Jan 2026 10:07:34 GMT + - Fri, 22 May 2026 08:53:53 GMT Pragma: - no-cache RequestId: - - 23bdd663-572d-4cdb-835c-ff876e70431f + - ae0246ed-043d-461f-b168-349dc6413a0e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-SparkJobDefinition].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-SparkJobDefinition].yaml index 630828388..a77a0133b 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-SparkJobDefinition].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-SparkJobDefinition].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": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2738' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:25 GMT + - Fri, 22 May 2026 08:53:54 GMT Pragma: - no-cache RequestId: - - 2e0c9c6d-988e-4bc4-9769-8a13d0c476da + - edf2bb7a-026d-4243-9dbc-8576377c3f2b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,15 +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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "5fbb6826-d43e-4818-8c9a-4d421da80c58", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35433380-c3a1-43f9-bd79-4460e9ebab3c", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -78,15 +76,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '217' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:27 GMT + - Fri, 22 May 2026 08:53:54 GMT Pragma: - no-cache RequestId: - - 40fb864f-f296-4229-9f04-58bd46faeb7b + - 52e6ed66-99bb-47c4-a624-6f28bae776d1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -112,15 +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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "5fbb6826-d43e-4818-8c9a-4d421da80c58", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35433380-c3a1-43f9-bd79-4460e9ebab3c", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -129,15 +124,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '217' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:27 GMT + - Fri, 22 May 2026 08:53:56 GMT Pragma: - no-cache RequestId: - - 465568b2-dd38-4ef0-a82e-7eccd97e5e14 + - ab0d922e-7ba6-4b4f-b4b7-0e3bd1335535 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -152,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: - '*/*' @@ -162,18 +158,16 @@ interactions: - keep-alive Content-Length: - '83' - 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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/sparkJobDefinitions + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/sparkJobDefinitions response: body: - string: '{"id": "107eb22b-c990-4333-8c9d-eb075268ef26", "type": "SparkJobDefinition", - "displayName": "fabcli000001", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}' + string: '{"id": "f7c28d00-c015-4f6f-98f0-1f25d9e6dd12", "type": "SparkJobDefinition", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -182,17 +176,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '174' + - '164' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:29 GMT + - Fri, 22 May 2026 08:53:57 GMT ETag: - '""' Pragma: - no-cache RequestId: - - eee047df-b9af-497a-930b-509ee9abcca3 + - c2b9ad21-43b3-4c95-9274-ffabd748121d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -218,14 +212,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": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -234,15 +229,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2738' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:30 GMT + - Fri, 22 May 2026 08:53:59 GMT Pragma: - no-cache RequestId: - - 8529268d-f724-4856-a6ef-80d7ec245b9a + - 2c693faf-39cc-49b3-a286-e4fec28cd5eb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -268,18 +263,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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "5fbb6826-d43e-4818-8c9a-4d421da80c58", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35433380-c3a1-43f9-bd79-4460e9ebab3c", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "107eb22b-c990-4333-8c9d-eb075268ef26", "type": "SparkJobDefinition", - "displayName": "fabcli000001", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}]}' + string: '{"value": [{"id": "f7c28d00-c015-4f6f-98f0-1f25d9e6dd12", "type": "SparkJobDefinition", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -288,15 +278,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '282' + - '175' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:31 GMT + - Fri, 22 May 2026 08:53:59 GMT Pragma: - no-cache RequestId: - - 45ef479b-5314-49bc-8692-2da5c6cefd2b + - 61daadf7-b4a1-459f-aa10-9bc9b8df87ba Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -322,15 +312,14 @@ 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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/sparkJobDefinitions/107eb22b-c990-4333-8c9d-eb075268ef26 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/sparkJobDefinitions/f7c28d00-c015-4f6f-98f0-1f25d9e6dd12 response: body: - string: '{"id": "107eb22b-c990-4333-8c9d-eb075268ef26", "type": "SparkJobDefinition", - "displayName": "fabcli000001", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e", "properties": {"oneLakeRootPath": - "https://onelake.dfs.fabric.microsoft.com/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/107eb22b-c990-4333-8c9d-eb075268ef26"}}' + string: '{"id": "f7c28d00-c015-4f6f-98f0-1f25d9e6dd12", "type": "SparkJobDefinition", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "properties": {"oneLakeRootPath": "https://onelake.dfs.fabric.microsoft.com/4f3c92ee-023c-48a7-b08b-1c5e91be6534/f7c28d00-c015-4f6f-98f0-1f25d9e6dd12"}}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -339,17 +328,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '236' + - '226' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:31 GMT + - Fri, 22 May 2026 08:54:00 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 6beaee6e-12e5-41d9-8112-e492e0e4a86f + - 64649065-7cb1-4850-ae37-4f9af420bcfd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -377,15 +366,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/sparkJobDefinitions/107eb22b-c990-4333-8c9d-eb075268ef26 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/sparkJobDefinitions/f7c28d00-c015-4f6f-98f0-1f25d9e6dd12 response: body: - string: '{"id": "107eb22b-c990-4333-8c9d-eb075268ef26", "type": "SparkJobDefinition", + string: '{"id": "f7c28d00-c015-4f6f-98f0-1f25d9e6dd12", "type": "SparkJobDefinition", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e", "properties": {"oneLakeRootPath": - "https://onelake.dfs.fabric.microsoft.com/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/107eb22b-c990-4333-8c9d-eb075268ef26"}}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534", "properties": {"oneLakeRootPath": + "https://onelake.dfs.fabric.microsoft.com/4f3c92ee-023c-48a7-b08b-1c5e91be6534/f7c28d00-c015-4f6f-98f0-1f25d9e6dd12"}}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -394,17 +383,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '236' + - '234' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:32 GMT + - Fri, 22 May 2026 08:54:02 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 61e14d06-4b35-4464-9c36-f10f0d3f512e + - e7de0a87-0294-45e7-9ddb-d0347c222f44 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -430,14 +419,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": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -446,15 +436,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2738' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:33 GMT + - Fri, 22 May 2026 08:54:03 GMT Pragma: - no-cache RequestId: - - 68024871-90a5-4fea-b4b6-9a6f0b72ca4e + - aa1bc1f4-cb16-4641-8986-f8d1ec855f82 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -480,18 +470,14 @@ 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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "5fbb6826-d43e-4818-8c9a-4d421da80c58", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35433380-c3a1-43f9-bd79-4460e9ebab3c", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "107eb22b-c990-4333-8c9d-eb075268ef26", "type": "SparkJobDefinition", + string: '{"value": [{"id": "f7c28d00-c015-4f6f-98f0-1f25d9e6dd12", "type": "SparkJobDefinition", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}]}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -500,15 +486,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '281' + - '184' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:35 GMT + - Fri, 22 May 2026 08:54:03 GMT Pragma: - no-cache RequestId: - - c5b9fda0-00fe-4c51-ac4f-ee5dc0d279e2 + - f4267d7e-a8d8-4db3-8fc7-23c2d5874466 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -534,15 +520,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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/sparkJobDefinitions/107eb22b-c990-4333-8c9d-eb075268ef26 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/sparkJobDefinitions/f7c28d00-c015-4f6f-98f0-1f25d9e6dd12 response: body: - string: '{"id": "107eb22b-c990-4333-8c9d-eb075268ef26", "type": "SparkJobDefinition", + string: '{"id": "f7c28d00-c015-4f6f-98f0-1f25d9e6dd12", "type": "SparkJobDefinition", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e", "properties": {"oneLakeRootPath": - "https://onelake.dfs.fabric.microsoft.com/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/107eb22b-c990-4333-8c9d-eb075268ef26"}}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534", "properties": {"oneLakeRootPath": + "https://onelake.dfs.fabric.microsoft.com/4f3c92ee-023c-48a7-b08b-1c5e91be6534/f7c28d00-c015-4f6f-98f0-1f25d9e6dd12"}}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -551,17 +537,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '236' + - '234' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:35 GMT + - Fri, 22 May 2026 08:54:05 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 923a8db2-054f-4e38-b2cc-a06ab019283c + - df1e7f7a-f579-4b84-9876-18d0453b5fdb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -587,9 +573,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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items/107eb22b-c990-4333-8c9d-eb075268ef26/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/f7c28d00-c015-4f6f-98f0-1f25d9e6dd12/connections response: body: string: '{"value": []}' @@ -605,11 +591,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:36 GMT + - Fri, 22 May 2026 08:54:06 GMT Pragma: - no-cache RequestId: - - cab07c3f-9da9-4f7b-93cd-a55e0338ede5 + - c32fdd7a-fe4f-47ed-9652-97ccd7cdaa97 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -635,9 +621,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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items/107eb22b-c990-4333-8c9d-eb075268ef26/jobs/sparkjob/schedules + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/f7c28d00-c015-4f6f-98f0-1f25d9e6dd12/jobs/sparkjob/schedules response: body: string: '{"value": []}' @@ -653,11 +639,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:37 GMT + - Fri, 22 May 2026 08:54:07 GMT Pragma: - no-cache RequestId: - - d76f57ae-138e-4633-862c-9a9f8865b541 + - 540de237-e935-4cac-87f0-4b3a14c9805b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -683,14 +669,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": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -699,15 +686,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2738' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:37 GMT + - Fri, 22 May 2026 08:54:07 GMT Pragma: - no-cache RequestId: - - ca07fe4a-19bd-4ed4-9d42-94eff8d92b5e + - 203e036c-d714-4955-91c2-a97e0f73fb6b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -733,18 +720,14 @@ 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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "5fbb6826-d43e-4818-8c9a-4d421da80c58", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35433380-c3a1-43f9-bd79-4460e9ebab3c", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "107eb22b-c990-4333-8c9d-eb075268ef26", "type": "SparkJobDefinition", + string: '{"value": [{"id": "f7c28d00-c015-4f6f-98f0-1f25d9e6dd12", "type": "SparkJobDefinition", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}]}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -753,15 +736,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '281' + - '184' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:38 GMT + - Fri, 22 May 2026 08:54:08 GMT Pragma: - no-cache RequestId: - - 14d744f4-8f67-40a3-a840-75bb79fa3c46 + - 659b6696-2beb-452d-aa91-a25c3f50c62c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -789,9 +772,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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items/107eb22b-c990-4333-8c9d-eb075268ef26 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/f7c28d00-c015-4f6f-98f0-1f25d9e6dd12 response: body: string: '' @@ -807,11 +790,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 04 Feb 2026 07:23:38 GMT + - Fri, 22 May 2026 08:54:09 GMT Pragma: - no-cache RequestId: - - e58b5907-2bab-4e3e-b5f6-8c8c9eb9910e + - fb9fc40d-a493-46e6-a2ad-7a0344227263 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-UserDataFunction].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-UserDataFunction].yaml index 81f58ce14..722f56712 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-UserDataFunction].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[description-UserDataFunction].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": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2738' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:10 GMT + - Fri, 22 May 2026 08:54:09 GMT Pragma: - no-cache RequestId: - - 86493783-c1e7-4f68-b3d8-4cf6443d7b43 + - c59e9a46-846d-4a2f-8383-9b9dfcf4e2c8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,15 +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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "5fbb6826-d43e-4818-8c9a-4d421da80c58", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35433380-c3a1-43f9-bd79-4460e9ebab3c", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -78,15 +76,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '217' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:11 GMT + - Fri, 22 May 2026 08:54:10 GMT Pragma: - no-cache RequestId: - - c936b7ac-70c6-41d4-8164-355d0efa1786 + - 9f55ee8f-c0f0-4f55-8a2f-c44738bef263 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -112,15 +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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "5fbb6826-d43e-4818-8c9a-4d421da80c58", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35433380-c3a1-43f9-bd79-4460e9ebab3c", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}]}' + string: '{"value": []}' headers: Access-Control-Expose-Headers: - RequestId @@ -129,15 +124,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '217' + - '32' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:11 GMT + - Fri, 22 May 2026 08:54:11 GMT Pragma: - no-cache RequestId: - - f1ecf3bb-bce3-4328-81f7-1203f9e590d0 + - 9f21fbcb-f3b2-49a0-830f-3c858a245731 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -152,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: - '*/*' @@ -162,18 +158,16 @@ interactions: - keep-alive Content-Length: - '81' - 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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/userdatafunctions + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/userdatafunctions response: body: - string: '{"id": "dcc19c94-870a-4189-a8a5-a317bc2d39ca", "type": "UserDataFunction", - "displayName": "fabcli000001", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}' + string: '{"id": "47ac56ea-6d07-426c-9e3c-57d4df73cabd", "type": "UserDataFunction", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -182,17 +176,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '173' + - '161' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:16 GMT + - Fri, 22 May 2026 08:54:13 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 02e7edcd-af5f-4c4f-abf9-0c28bbcac30d + - 4cfd294c-4a75-46e3-bc6f-b77953a5d6d8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -218,14 +212,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": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -234,15 +229,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2738' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:17 GMT + - Fri, 22 May 2026 08:54:14 GMT Pragma: - no-cache RequestId: - - 17ceea89-791b-4672-b42f-ce1d80f822f1 + - cc53068a-b32a-4f3a-b1be-395ddda2e1c5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -268,18 +263,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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "5fbb6826-d43e-4818-8c9a-4d421da80c58", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35433380-c3a1-43f9-bd79-4460e9ebab3c", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "dcc19c94-870a-4189-a8a5-a317bc2d39ca", "type": "UserDataFunction", - "displayName": "fabcli000001", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}]}' + string: '{"value": [{"id": "47ac56ea-6d07-426c-9e3c-57d4df73cabd", "type": "UserDataFunction", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -288,15 +278,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '283' + - '172' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:18 GMT + - Fri, 22 May 2026 08:54:14 GMT Pragma: - no-cache RequestId: - - 126b3c31-b965-488b-859b-bbf58ff4be69 + - 52b37807-91a1-4358-89fa-711144a6f064 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -322,14 +312,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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/userdatafunctions/dcc19c94-870a-4189-a8a5-a317bc2d39ca + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/userdatafunctions/47ac56ea-6d07-426c-9e3c-57d4df73cabd response: body: - string: '{"id": "dcc19c94-870a-4189-a8a5-a317bc2d39ca", "type": "UserDataFunction", - "displayName": "fabcli000001", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}' + string: '{"id": "47ac56ea-6d07-426c-9e3c-57d4df73cabd", "type": "UserDataFunction", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -338,17 +327,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '173' + - '161' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:19 GMT + - Fri, 22 May 2026 08:54:15 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 991e1247-2ddf-471a-881a-90bff4e0d21b + - d6ce7a09-a2f7-421c-ba09-820059b110cc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -376,14 +365,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/userdatafunctions/dcc19c94-870a-4189-a8a5-a317bc2d39ca + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/userdatafunctions/47ac56ea-6d07-426c-9e3c-57d4df73cabd response: body: - string: '{"id": "dcc19c94-870a-4189-a8a5-a317bc2d39ca", "type": "UserDataFunction", + string: '{"id": "47ac56ea-6d07-426c-9e3c-57d4df73cabd", "type": "UserDataFunction", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -392,17 +381,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '171' + - '169' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:19 GMT + - Fri, 22 May 2026 08:54:16 GMT ETag: - '""' Pragma: - no-cache RequestId: - - ea59e2cc-bac3-4514-bb35-c73920b8f036 + - 14de9c1f-d09c-4a68-ad6b-3fb4f47b72c8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -428,14 +417,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": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -444,15 +434,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2738' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:20 GMT + - Fri, 22 May 2026 08:54:17 GMT Pragma: - no-cache RequestId: - - d5b85661-e7ae-4a5c-88f7-0386c80c6f5d + - 630eeab9-534a-422b-915a-1cbbd8cb0ac6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -478,18 +468,14 @@ 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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "5fbb6826-d43e-4818-8c9a-4d421da80c58", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35433380-c3a1-43f9-bd79-4460e9ebab3c", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "dcc19c94-870a-4189-a8a5-a317bc2d39ca", "type": "UserDataFunction", + string: '{"value": [{"id": "47ac56ea-6d07-426c-9e3c-57d4df73cabd", "type": "UserDataFunction", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}]}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -498,15 +484,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '280' + - '181' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:21 GMT + - Fri, 22 May 2026 08:54:17 GMT Pragma: - no-cache RequestId: - - 69fa2454-3450-48fa-bb5d-d01101c78342 + - 6d1242fb-207b-43d9-ac83-97ee1cedf879 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -532,14 +518,14 @@ 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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/userdatafunctions/dcc19c94-870a-4189-a8a5-a317bc2d39ca + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/userdatafunctions/47ac56ea-6d07-426c-9e3c-57d4df73cabd response: body: - string: '{"id": "dcc19c94-870a-4189-a8a5-a317bc2d39ca", "type": "UserDataFunction", + string: '{"id": "47ac56ea-6d07-426c-9e3c-57d4df73cabd", "type": "UserDataFunction", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -548,17 +534,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '171' + - '169' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:22 GMT + - Fri, 22 May 2026 08:54:18 GMT ETag: - '""' Pragma: - no-cache RequestId: - - b0965e90-47fd-47db-a2cc-29ea319ccc16 + - e6665e97-8681-4865-b2ff-e4868190708a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -584,9 +570,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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items/dcc19c94-870a-4189-a8a5-a317bc2d39ca/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/47ac56ea-6d07-426c-9e3c-57d4df73cabd/connections response: body: string: '{"value": []}' @@ -602,11 +588,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:22 GMT + - Fri, 22 May 2026 08:54:19 GMT Pragma: - no-cache RequestId: - - 1b01afd9-4cec-436e-af9c-7944856363d3 + - 05f6776c-7fb3-493c-acda-16f11f6c9f35 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -632,14 +618,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": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -648,15 +635,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2738' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:23 GMT + - Fri, 22 May 2026 08:54:20 GMT Pragma: - no-cache RequestId: - - 2bb4981f-20ce-4128-8826-23a5a07a5e81 + - 427b11aa-10df-4361-8dc6-990c22eb1905 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -682,18 +669,14 @@ 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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "5fbb6826-d43e-4818-8c9a-4d421da80c58", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35433380-c3a1-43f9-bd79-4460e9ebab3c", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "dcc19c94-870a-4189-a8a5-a317bc2d39ca", "type": "UserDataFunction", + string: '{"value": [{"id": "47ac56ea-6d07-426c-9e3c-57d4df73cabd", "type": "UserDataFunction", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}]}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -702,15 +685,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '280' + - '181' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:24 GMT + - Fri, 22 May 2026 08:54:21 GMT Pragma: - no-cache RequestId: - - b8709bf2-9d83-4f31-bd86-73db552fe04b + - 697b9cad-ec67-411c-a3ce-a695be3005a2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -738,9 +721,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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items/dcc19c94-870a-4189-a8a5-a317bc2d39ca + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/47ac56ea-6d07-426c-9e3c-57d4df73cabd response: body: string: '' @@ -756,11 +739,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 04 Feb 2026 07:23:25 GMT + - Fri, 22 May 2026 08:54:21 GMT Pragma: - no-cache RequestId: - - f2f7e033-05fd-4b79-96e5-3131446c2bbb + - 751692fb-9f91-4086-8ea4-cfef8ea3eba8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-DataPipeline].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-DataPipeline].yaml index e88ba16fb..9f3163ae1 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-DataPipeline].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-DataPipeline].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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:48 GMT + - Fri, 22 May 2026 08:55:10 GMT Pragma: - no-cache RequestId: - - 03fc35b0-a478-4745-b2a1-8c6da20a7122 + - 3d6ff156-d883-4f3b-bc56-d6f6fa61724d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,12 +62,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -75,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:49 GMT + - Fri, 22 May 2026 08:55:11 GMT Pragma: - no-cache RequestId: - - ee18fa1a-f74d-4a14-b866-ab16619b6db5 + - 8c0a47d5-88b1-42ef-a5cb-d01a3df8dddb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,12 +113,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -123,15 +130,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:49 GMT + - Fri, 22 May 2026 08:55:11 GMT Pragma: - no-cache RequestId: - - c425bcf7-f517-41a0-bb0c-a4ddad3cbc0b + - a51b0860-4336-432a-b4a1-17e7d0478d1a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -156,18 +163,16 @@ interactions: - keep-alive Content-Length: - '77' - 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/fa27f57f-70d6-4009-872b-f7e7149c5026/dataPipelines + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/dataPipelines response: body: - string: '{"id": "609e96d5-01a7-4fe9-a53e-eca871e1fe00", "type": "DataPipeline", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "89de114e-00c3-46c3-9c38-395a7c8e94f3", "type": "DataPipeline", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +181,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '160' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:53 GMT + - Fri, 22 May 2026 08:55:15 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 6d221cd9-d68a-4aa7-b716-ae04a40ffe8f + - 58892bde-9167-41e7-8d53-e45cef10b3d2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -212,14 +217,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -228,15 +234,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:54 GMT + - Fri, 22 May 2026 08:55:16 GMT Pragma: - no-cache RequestId: - - c1679c59-af88-4b07-82a5-b82888b9a0b5 + - efc49e89-f5f2-4a11-aec1-9ea4e7267d89 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -262,14 +268,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "609e96d5-01a7-4fe9-a53e-eca871e1fe00", "type": "DataPipeline", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "89de114e-00c3-46c3-9c38-395a7c8e94f3", "type": "DataPipeline", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +287,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '177' + - '265' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:55 GMT + - Fri, 22 May 2026 08:55:18 GMT Pragma: - no-cache RequestId: - - 33faf725-410d-4498-a995-907f9dbf0c8d + - cebb160e-8046-4862-b61f-89dce511b1e8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -312,14 +321,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/fa27f57f-70d6-4009-872b-f7e7149c5026/dataPipelines/609e96d5-01a7-4fe9-a53e-eca871e1fe00 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/dataPipelines/89de114e-00c3-46c3-9c38-395a7c8e94f3 response: body: - string: '{"id": "609e96d5-01a7-4fe9-a53e-eca871e1fe00", "type": "DataPipeline", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "89de114e-00c3-46c3-9c38-395a7c8e94f3", "type": "DataPipeline", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -328,17 +336,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '160' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:56 GMT + - Fri, 22 May 2026 08:55:18 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 3cfad1c3-af77-4030-8729-603391cecc34 + - 7323c3d0-7939-4d79-93c6-ca3d9ad907a0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -366,14 +374,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/dataPipelines/609e96d5-01a7-4fe9-a53e-eca871e1fe00 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/dataPipelines/89de114e-00c3-46c3-9c38-395a7c8e94f3 response: body: - string: '{"id": "609e96d5-01a7-4fe9-a53e-eca871e1fe00", "type": "DataPipeline", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "89de114e-00c3-46c3-9c38-395a7c8e94f3", "type": "DataPipeline", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -382,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '159' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:57 GMT + - Fri, 22 May 2026 08:55:20 GMT ETag: - '""' Pragma: - no-cache RequestId: - - b7e22c2c-11c8-4151-92f3-4c6333e81603 + - 30ffc1c9-0571-4c7f-825a-14de66972bd5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -418,14 +425,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -434,15 +442,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:58 GMT + - Fri, 22 May 2026 08:55:22 GMT Pragma: - no-cache RequestId: - - d53b70b9-f60b-441f-b82e-2a23c5f061eb + - c2dd5cb2-cce8-4c07-8a61-7748ba8f0556 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -468,14 +476,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "609e96d5-01a7-4fe9-a53e-eca871e1fe00", "type": "DataPipeline", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "89de114e-00c3-46c3-9c38-395a7c8e94f3", "type": "DataPipeline", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -484,15 +495,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '177' + - '265' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:59 GMT + - Fri, 22 May 2026 08:55:22 GMT Pragma: - no-cache RequestId: - - b1807409-e6d4-437a-8282-7a98b85e68ce + - 2ae27025-4364-43e4-9481-bea2bfa303c8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -518,14 +529,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "609e96d5-01a7-4fe9-a53e-eca871e1fe00", "type": "DataPipeline", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "89de114e-00c3-46c3-9c38-395a7c8e94f3", "type": "DataPipeline", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -534,15 +548,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '177' + - '265' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:07:59 GMT + - Fri, 22 May 2026 08:55:23 GMT Pragma: - no-cache RequestId: - - 7e563713-32a6-46d9-8477-679fe87f9b13 + - a900d240-fd12-471d-9673-5d41c40a46fb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -568,14 +582,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -584,15 +599,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:00 GMT + - Fri, 22 May 2026 08:55:24 GMT Pragma: - no-cache RequestId: - - f68e5b9d-1a14-46b3-abde-cf3824b9b449 + - c2e33f83-e4bf-4639-9189-06d5b31b4de1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -618,14 +633,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "609e96d5-01a7-4fe9-a53e-eca871e1fe00", "type": "DataPipeline", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "89de114e-00c3-46c3-9c38-395a7c8e94f3", "type": "DataPipeline", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -634,15 +652,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '177' + - '265' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:01 GMT + - Fri, 22 May 2026 08:55:25 GMT Pragma: - no-cache RequestId: - - 87b65770-3944-400b-bf7b-18b760198de2 + - f949ba60-e4f4-40ff-9eb8-b78a2df9b382 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -668,14 +686,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/fa27f57f-70d6-4009-872b-f7e7149c5026/dataPipelines/609e96d5-01a7-4fe9-a53e-eca871e1fe00 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/dataPipelines/89de114e-00c3-46c3-9c38-395a7c8e94f3 response: body: - string: '{"id": "609e96d5-01a7-4fe9-a53e-eca871e1fe00", "type": "DataPipeline", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "89de114e-00c3-46c3-9c38-395a7c8e94f3", "type": "DataPipeline", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -684,17 +701,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '159' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:01 GMT + - Fri, 22 May 2026 08:55:25 GMT ETag: - '""' Pragma: - no-cache RequestId: - - ef69e6c2-ed5e-4504-b045-c2fb3b57c2f0 + - 91bd540c-5eb5-4780-b1ce-b07e3b95d923 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -720,9 +737,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/609e96d5-01a7-4fe9-a53e-eca871e1fe00/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/89de114e-00c3-46c3-9c38-395a7c8e94f3/connections response: body: string: '{"value": []}' @@ -738,11 +755,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:02 GMT + - Fri, 22 May 2026 08:55:26 GMT Pragma: - no-cache RequestId: - - ed9a7496-f591-48ef-8bd7-34f9e2c97eae + - d865a80c-c433-4d8f-acb8-5586d0f57a31 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -768,9 +785,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/609e96d5-01a7-4fe9-a53e-eca871e1fe00/jobs/Pipeline/schedules + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/89de114e-00c3-46c3-9c38-395a7c8e94f3/jobs/Pipeline/schedules response: body: string: '{"value": []}' @@ -786,11 +803,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:02 GMT + - Fri, 22 May 2026 08:55:27 GMT Pragma: - no-cache RequestId: - - db353059-6842-4349-829f-c43df35ece7d + - 078e8431-5138-4f26-b080-3e1d4a755d4b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -816,14 +833,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -832,15 +850,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:03 GMT + - Fri, 22 May 2026 08:55:27 GMT Pragma: - no-cache RequestId: - - 93577630-9b69-4229-873a-cf7c7c65c4cd + - 0be99aa1-f621-4ed7-bd14-71ca5e38abb0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -866,14 +884,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "609e96d5-01a7-4fe9-a53e-eca871e1fe00", "type": "DataPipeline", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "89de114e-00c3-46c3-9c38-395a7c8e94f3", "type": "DataPipeline", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -882,15 +903,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '177' + - '265' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:03 GMT + - Fri, 22 May 2026 08:55:28 GMT Pragma: - no-cache RequestId: - - a6c66df9-45aa-4891-bff9-756eec3916dd + - 023d0798-ad1e-4c2a-a013-67864be341f1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -916,14 +937,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/fa27f57f-70d6-4009-872b-f7e7149c5026/dataPipelines/609e96d5-01a7-4fe9-a53e-eca871e1fe00 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/dataPipelines/89de114e-00c3-46c3-9c38-395a7c8e94f3 response: body: - string: '{"id": "609e96d5-01a7-4fe9-a53e-eca871e1fe00", "type": "DataPipeline", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "89de114e-00c3-46c3-9c38-395a7c8e94f3", "type": "DataPipeline", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -932,17 +952,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '159' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:04 GMT + - Fri, 22 May 2026 08:55:29 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 88a4c1b3-3fe2-4748-9751-9a98e19d8f55 + - 8a63ebaa-5455-4f5a-8ea5-433591d6a6bc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -970,14 +990,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/dataPipelines/609e96d5-01a7-4fe9-a53e-eca871e1fe00 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/dataPipelines/89de114e-00c3-46c3-9c38-395a7c8e94f3 response: body: - string: '{"id": "609e96d5-01a7-4fe9-a53e-eca871e1fe00", "type": "DataPipeline", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "89de114e-00c3-46c3-9c38-395a7c8e94f3", "type": "DataPipeline", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -986,17 +1005,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '160' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:05 GMT + - Fri, 22 May 2026 08:55:30 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 1a58fa31-d1cc-49bb-8730-1dfc91f44430 + - 2b1b9c1c-0526-441d-a6c8-fb5a94ece363 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1022,14 +1041,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1038,15 +1058,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:06 GMT + - Fri, 22 May 2026 08:55:30 GMT Pragma: - no-cache RequestId: - - a690ac4f-5043-4ebd-b1e8-bd02f4bba1b0 + - da98a85d-9fba-47f6-b79e-69094113c39a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1072,14 +1092,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "609e96d5-01a7-4fe9-a53e-eca871e1fe00", "type": "DataPipeline", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "89de114e-00c3-46c3-9c38-395a7c8e94f3", "type": "DataPipeline", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1088,15 +1111,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '177' + - '265' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:07 GMT + - Fri, 22 May 2026 08:55:31 GMT Pragma: - no-cache RequestId: - - d9dadd09-0b37-441c-afe8-472318476724 + - 2fc1c5e1-1cec-49b5-bb9b-ef1a60638983 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1124,9 +1147,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/609e96d5-01a7-4fe9-a53e-eca871e1fe00 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/89de114e-00c3-46c3-9c38-395a7c8e94f3 response: body: string: '' @@ -1142,11 +1165,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 29 Jan 2026 10:08:07 GMT + - Fri, 22 May 2026 08:55:32 GMT Pragma: - no-cache RequestId: - - 3ee81954-a830-4e24-9b53-65ef7e01bbb8 + - 1bedbfb3-b0cc-48d2-9fef-af828d07bdcc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-DigitalTwinBuilder].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-DigitalTwinBuilder].yaml index 3caf4c830..c7e19703c 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-DigitalTwinBuilder].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-DigitalTwinBuilder].yaml @@ -11,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": "9b9b7432-90cd-4ae2-9702-5d97c233784c", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2047' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:15 GMT + - Fri, 22 May 2026 08:59:51 GMT Pragma: - no-cache RequestId: - - b836b611-fcd5-4041-b706-87a28d65161f + - 1af6874b-6d83-4da5-8525-34d3d363c0fc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,15 +62,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/9b9b7432-90cd-4ae2-9702-5d97c233784c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "02b473d6-b687-4f79-a0af-0d6bd295742d", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, - {"id": "c867e21e-e44d-4821-821b-70dd3fae45ad", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -78,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '217' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:15 GMT + - Fri, 22 May 2026 08:59:51 GMT Pragma: - no-cache RequestId: - - d69ec8ca-560b-441d-8c4c-f3834a07c384 + - 9d8d05e4-9d86-40ce-a106-7ef9f1dec4d6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -112,15 +113,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/9b9b7432-90cd-4ae2-9702-5d97c233784c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "02b473d6-b687-4f79-a0af-0d6bd295742d", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, - {"id": "c867e21e-e44d-4821-821b-70dd3fae45ad", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -129,15 +130,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '217' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:17 GMT + - Fri, 22 May 2026 08:59:52 GMT Pragma: - no-cache RequestId: - - a386d8ee-4a4f-4a27-9408-df83f41efac6 + - 61dab979-e2d8-4d66-82ff-a01de76c1db5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -152,7 +153,8 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "type": "DigitalTwinBuilder", "folderId": null}' + body: '{"displayName": "fabcli000001", "type": "DigitalTwinBuilder", "folderId": + null}' headers: Accept: - '*/*' @@ -162,13 +164,12 @@ 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/9b9b7432-90cd-4ae2-9702-5d97c233784c/digitalTwinBuilders + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/digitalTwinBuilders response: body: string: 'null' @@ -184,15 +185,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:18 GMT + - Fri, 22 May 2026 08:59:55 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2b06518f-c4d8-4367-9979-5d70c3de9609 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b99b9f10-df6f-4c7c-81a9-8e13fc3a3613 Pragma: - no-cache RequestId: - - 6b969800-4fc4-416f-a487-95cac5ee4767 + - cfb60dec-1fa7-4bfd-95b4-38c4bb1a02ad Retry-After: - '20' Strict-Transport-Security: @@ -206,7 +207,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 2b06518f-c4d8-4367-9979-5d70c3de9609 + - b99b9f10-df6f-4c7c-81a9-8e13fc3a3613 status: code: 202 message: Accepted @@ -222,13 +223,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/2b06518f-c4d8-4367-9979-5d70c3de9609 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b99b9f10-df6f-4c7c-81a9-8e13fc3a3613 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-03-31T09:30:17.6116207", - "lastUpdatedTimeUtc": "2026-03-31T09:30:24.1871393", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-22T08:59:54.0249176", + "lastUpdatedTimeUtc": "2026-05-22T09:00:03.1488317", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -238,17 +239,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '135' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:39 GMT + - Fri, 22 May 2026 09:00:15 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2b06518f-c4d8-4367-9979-5d70c3de9609/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b99b9f10-df6f-4c7c-81a9-8e13fc3a3613/result Pragma: - no-cache RequestId: - - 68c60c34-e552-4083-961c-f827f8d344e1 + - 88167a81-2923-46e6-9175-5924c494b735 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -256,7 +257,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 2b06518f-c4d8-4367-9979-5d70c3de9609 + - b99b9f10-df6f-4c7c-81a9-8e13fc3a3613 status: code: 200 message: OK @@ -272,14 +273,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/2b06518f-c4d8-4367-9979-5d70c3de9609/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/b99b9f10-df6f-4c7c-81a9-8e13fc3a3613/result response: body: - string: '{"id": "6b3592c7-97a3-4330-8ce8-bb2e393d65b4", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "workspaceId": - "9b9b7432-90cd-4ae2-9702-5d97c233784c"}' + string: '{"id": "50f8f963-1c91-4b05-913d-d357c2c49a72", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId @@ -290,11 +290,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 31 Mar 2026 09:30:41 GMT + - Fri, 22 May 2026 09:00:16 GMT Pragma: - no-cache RequestId: - - 1ce9480e-c36e-4544-9ef0-0ec70b2d7faf + - 2a095929-ec7b-4226-977b-3683aeb227db Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -318,14 +318,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": "9b9b7432-90cd-4ae2-9702-5d97c233784c", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -334,15 +335,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2047' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:42 GMT + - Fri, 22 May 2026 09:00:17 GMT Pragma: - no-cache RequestId: - - 512c8034-9926-41df-aab9-ea6bc130c236 + - 4ab0331a-4349-4166-b9d8-b83144f28b0e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -368,24 +369,23 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "02b473d6-b687-4f79-a0af-0d6bd295742d", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, - {"id": "0516c4f6-54d8-4eb9-93fd-aa2afcb9fd1c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, - {"id": "c867e21e-e44d-4821-821b-70dd3fae45ad", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, - {"id": "6b3592c7-97a3-4330-8ce8-bb2e393d65b4", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "workspaceId": - "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "c822a139-20b0-4aba-a7d4-6b14556dd890", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "145cff2b-9c7e-4b51-b119-cd3cb5c4f446", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "50f8f963-1c91-4b05-913d-d357c2c49a72", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "b38c08ee-d976-4317-92b6-980bffd14791", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -394,15 +394,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '381' + - '367' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:42 GMT + - Fri, 22 May 2026 09:00:18 GMT Pragma: - no-cache RequestId: - - cd2fa251-a449-4797-a248-698138e8255c + - 416d2dff-cf6a-415e-b13a-64d3a8d27cb1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -428,14 +428,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/9b9b7432-90cd-4ae2-9702-5d97c233784c/digitalTwinBuilders/6b3592c7-97a3-4330-8ce8-bb2e393d65b4 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/digitalTwinBuilders/50f8f963-1c91-4b05-913d-d357c2c49a72 response: body: - string: '{"id": "6b3592c7-97a3-4330-8ce8-bb2e393d65b4", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "workspaceId": - "9b9b7432-90cd-4ae2-9702-5d97c233784c"}' + string: '{"id": "50f8f963-1c91-4b05-913d-d357c2c49a72", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -444,17 +443,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '175' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:42 GMT + - Fri, 22 May 2026 09:00:19 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 853edf90-8a6f-4c0c-87ef-af234611455d + - b2541776-6b96-4d55-9a38-86ae0e745e64 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -482,14 +481,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/digitalTwinBuilders/6b3592c7-97a3-4330-8ce8-bb2e393d65b4 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/digitalTwinBuilders/50f8f963-1c91-4b05-913d-d357c2c49a72 response: body: - string: '{"id": "6b3592c7-97a3-4330-8ce8-bb2e393d65b4", "type": "DigitalTwinBuilder", - "displayName": "fabcli000002", "workspaceId": - "9b9b7432-90cd-4ae2-9702-5d97c233784c"}' + string: '{"id": "50f8f963-1c91-4b05-913d-d357c2c49a72", "type": "DigitalTwinBuilder", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -498,17 +496,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '175' + - '165' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:44 GMT + - Fri, 22 May 2026 09:00:21 GMT ETag: - '""' Pragma: - no-cache RequestId: - - b9c6e369-8a64-4c14-bf2f-eb8c22d463b4 + - 7dfd8897-d0dd-4bc1-a95f-ea911fa428e6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -534,14 +532,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": "9b9b7432-90cd-4ae2-9702-5d97c233784c", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -550,15 +549,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2047' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:45 GMT + - Fri, 22 May 2026 09:00:21 GMT Pragma: - no-cache RequestId: - - 1199d5e4-48ce-48be-a370-79ada6830528 + - 840aa499-24a2-49d8-b96d-ccaaad4adf62 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -584,24 +583,23 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "02b473d6-b687-4f79-a0af-0d6bd295742d", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, - {"id": "0516c4f6-54d8-4eb9-93fd-aa2afcb9fd1c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, - {"id": "c867e21e-e44d-4821-821b-70dd3fae45ad", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, - {"id": "6b3592c7-97a3-4330-8ce8-bb2e393d65b4", "type": "DigitalTwinBuilder", - "displayName": "fabcli000002", "workspaceId": - "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "c822a139-20b0-4aba-a7d4-6b14556dd890", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "145cff2b-9c7e-4b51-b119-cd3cb5c4f446", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "50f8f963-1c91-4b05-913d-d357c2c49a72", "type": "DigitalTwinBuilder", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "b38c08ee-d976-4317-92b6-980bffd14791", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -610,15 +608,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '388' + - '376' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:45 GMT + - Fri, 22 May 2026 09:00:21 GMT Pragma: - no-cache RequestId: - - d394d193-e4fd-498c-9a07-50d9f6d84bd0 + - d18e5ac7-ac2b-4b0a-ab27-4b877543c003 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -644,24 +642,23 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "02b473d6-b687-4f79-a0af-0d6bd295742d", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, - {"id": "0516c4f6-54d8-4eb9-93fd-aa2afcb9fd1c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, - {"id": "c867e21e-e44d-4821-821b-70dd3fae45ad", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, - {"id": "6b3592c7-97a3-4330-8ce8-bb2e393d65b4", "type": "DigitalTwinBuilder", - "displayName": "fabcli000002", "workspaceId": - "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "c822a139-20b0-4aba-a7d4-6b14556dd890", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "145cff2b-9c7e-4b51-b119-cd3cb5c4f446", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "50f8f963-1c91-4b05-913d-d357c2c49a72", "type": "DigitalTwinBuilder", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "b38c08ee-d976-4317-92b6-980bffd14791", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -670,15 +667,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '388' + - '376' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:46 GMT + - Fri, 22 May 2026 09:00:22 GMT Pragma: - no-cache RequestId: - - 078e260b-0c4d-41e4-adfb-b458f26e035a + - 97f75013-9216-4807-8374-93aa5cc5c2b7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -704,14 +701,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": "9b9b7432-90cd-4ae2-9702-5d97c233784c", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -720,15 +718,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2047' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:47 GMT + - Fri, 22 May 2026 09:00:23 GMT Pragma: - no-cache RequestId: - - fe7c13cd-bf5d-436d-a48c-fe5118e5fb34 + - cca87289-9a19-46a4-9bee-15b9256b6f5c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -754,24 +752,23 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "02b473d6-b687-4f79-a0af-0d6bd295742d", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, - {"id": "0516c4f6-54d8-4eb9-93fd-aa2afcb9fd1c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, - {"id": "c867e21e-e44d-4821-821b-70dd3fae45ad", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, - {"id": "6b3592c7-97a3-4330-8ce8-bb2e393d65b4", "type": "DigitalTwinBuilder", - "displayName": "fabcli000002", "workspaceId": - "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "c822a139-20b0-4aba-a7d4-6b14556dd890", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "145cff2b-9c7e-4b51-b119-cd3cb5c4f446", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "50f8f963-1c91-4b05-913d-d357c2c49a72", "type": "DigitalTwinBuilder", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "b38c08ee-d976-4317-92b6-980bffd14791", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -780,15 +777,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '388' + - '376' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:48 GMT + - Fri, 22 May 2026 09:00:24 GMT Pragma: - no-cache RequestId: - - bb2e22ac-2c87-4365-84dd-5616532963f5 + - 19dd7b58-c511-49ca-8abb-07191a361de4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -814,14 +811,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/9b9b7432-90cd-4ae2-9702-5d97c233784c/digitalTwinBuilders/6b3592c7-97a3-4330-8ce8-bb2e393d65b4 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/digitalTwinBuilders/50f8f963-1c91-4b05-913d-d357c2c49a72 response: body: - string: '{"id": "6b3592c7-97a3-4330-8ce8-bb2e393d65b4", "type": "DigitalTwinBuilder", - "displayName": "fabcli000002", "workspaceId": - "9b9b7432-90cd-4ae2-9702-5d97c233784c"}' + string: '{"id": "50f8f963-1c91-4b05-913d-d357c2c49a72", "type": "DigitalTwinBuilder", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -830,17 +826,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '175' + - '165' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:49 GMT + - Fri, 22 May 2026 09:00:26 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 15b136b3-b9b5-4dda-acac-4ee255184d43 + - 1a06380d-5ecf-4590-8e2f-48c7350264a7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -866,9 +862,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/9b9b7432-90cd-4ae2-9702-5d97c233784c/items/6b3592c7-97a3-4330-8ce8-bb2e393d65b4/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/50f8f963-1c91-4b05-913d-d357c2c49a72/connections response: body: string: '{"value": []}' @@ -884,11 +880,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:50 GMT + - Fri, 22 May 2026 09:00:26 GMT Pragma: - no-cache RequestId: - - 3b0aa9a7-dab6-4658-be71-4aea673f36c0 + - b0c44617-f7e8-403e-9511-cb0e0f4ac4c3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -914,14 +910,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": "9b9b7432-90cd-4ae2-9702-5d97c233784c", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -930,15 +927,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2047' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:52 GMT + - Fri, 22 May 2026 09:00:27 GMT Pragma: - no-cache RequestId: - - 0b1f01c9-9363-439c-a5b7-bf3450bd913a + - 09b3bc0c-e3e9-462d-b520-5161829f4961 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -964,24 +961,23 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "02b473d6-b687-4f79-a0af-0d6bd295742d", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, - {"id": "0516c4f6-54d8-4eb9-93fd-aa2afcb9fd1c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, - {"id": "c867e21e-e44d-4821-821b-70dd3fae45ad", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, - {"id": "6b3592c7-97a3-4330-8ce8-bb2e393d65b4", "type": "DigitalTwinBuilder", - "displayName": "fabcli000002", "workspaceId": - "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "c822a139-20b0-4aba-a7d4-6b14556dd890", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "145cff2b-9c7e-4b51-b119-cd3cb5c4f446", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "50f8f963-1c91-4b05-913d-d357c2c49a72", "type": "DigitalTwinBuilder", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "b38c08ee-d976-4317-92b6-980bffd14791", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -990,15 +986,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '388' + - '376' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:53 GMT + - Fri, 22 May 2026 09:00:28 GMT Pragma: - no-cache RequestId: - - 457a5a9e-d324-4e99-bd3b-ec0511b4e9ef + - d87e6019-e6fa-42d3-8eec-475ca777ba57 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1024,14 +1020,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/9b9b7432-90cd-4ae2-9702-5d97c233784c/digitalTwinBuilders/6b3592c7-97a3-4330-8ce8-bb2e393d65b4 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/digitalTwinBuilders/50f8f963-1c91-4b05-913d-d357c2c49a72 response: body: - string: '{"id": "6b3592c7-97a3-4330-8ce8-bb2e393d65b4", "type": "DigitalTwinBuilder", - "displayName": "fabcli000002", "workspaceId": - "9b9b7432-90cd-4ae2-9702-5d97c233784c"}' + string: '{"id": "50f8f963-1c91-4b05-913d-d357c2c49a72", "type": "DigitalTwinBuilder", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1040,17 +1035,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '175' + - '165' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:53 GMT + - Fri, 22 May 2026 09:00:29 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 20258e42-d500-4410-b958-80a0b8255527 + - 23665649-4a2b-4490-bcc8-b88c9648d452 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1078,14 +1073,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/digitalTwinBuilders/6b3592c7-97a3-4330-8ce8-bb2e393d65b4 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/digitalTwinBuilders/50f8f963-1c91-4b05-913d-d357c2c49a72 response: body: - string: '{"id": "6b3592c7-97a3-4330-8ce8-bb2e393d65b4", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "workspaceId": - "9b9b7432-90cd-4ae2-9702-5d97c233784c"}' + string: '{"id": "50f8f963-1c91-4b05-913d-d357c2c49a72", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1094,17 +1088,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '175' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:54 GMT + - Fri, 22 May 2026 09:00:30 GMT ETag: - '""' Pragma: - no-cache RequestId: - - eccae75d-f0e6-43d5-a78e-b43c251eb90a + - 3efe7536-1b16-488f-963a-5e2ba38a8bda Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1130,14 +1124,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": "9b9b7432-90cd-4ae2-9702-5d97c233784c", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1146,15 +1141,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2047' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:55 GMT + - Fri, 22 May 2026 09:00:31 GMT Pragma: - no-cache RequestId: - - 7c41d3f1-73f6-463c-ac4e-dd9ad0ec4556 + - 64aef47b-21a5-4199-bfb8-e1ddf377ed36 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1180,24 +1175,23 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.5.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/9b9b7432-90cd-4ae2-9702-5d97c233784c/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "02b473d6-b687-4f79-a0af-0d6bd295742d", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, - {"id": "0516c4f6-54d8-4eb9-93fd-aa2afcb9fd1c", "type": "SQLEndpoint", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, - {"id": "c867e21e-e44d-4821-821b-70dd3fae45ad", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, - {"id": "6b3592c7-97a3-4330-8ce8-bb2e393d65b4", "type": "DigitalTwinBuilder", - "displayName": "fabcli000001", "workspaceId": - "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "c822a139-20b0-4aba-a7d4-6b14556dd890", - "type": "Lakehouse", "displayName": "fabcli000001dtdm", "description": "", - "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}, {"id": "145cff2b-9c7e-4b51-b119-cd3cb5c4f446", - "type": "DigitalTwinBuilderFlow", "displayName": "fabcli000001OnDemand", "description": - "", "workspaceId": "9b9b7432-90cd-4ae2-9702-5d97c233784c"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "50f8f963-1c91-4b05-913d-d357c2c49a72", "type": "DigitalTwinBuilder", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "b38c08ee-d976-4317-92b6-980bffd14791", "type": "DigitalTwinBuilderFlow", + "displayName": "fabcli000001OnDemand", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1206,15 +1200,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '381' + - '367' Content-Type: - application/json; charset=utf-8 Date: - - Tue, 31 Mar 2026 09:30:54 GMT + - Fri, 22 May 2026 09:00:32 GMT Pragma: - no-cache RequestId: - - dd6d105c-1325-48c2-8cd7-781b5e87e786 + - 7b5bed3d-6c83-4bb1-8d35-ee08540c5b15 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1242,9 +1236,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/9b9b7432-90cd-4ae2-9702-5d97c233784c/items/6b3592c7-97a3-4330-8ce8-bb2e393d65b4 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/50f8f963-1c91-4b05-913d-d357c2c49a72 response: body: string: '' @@ -1260,11 +1254,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Tue, 31 Mar 2026 09:30:55 GMT + - Fri, 22 May 2026 09:00:32 GMT Pragma: - no-cache RequestId: - - 3164c7c7-9978-473d-8742-386ef78633e9 + - 90dad99f-bfa2-44b6-aca1-bd8e2cdceb9e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-Environment].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-Environment].yaml index 52f8058f4..3570925dc 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-Environment].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:08 GMT + - Fri, 22 May 2026 08:55:32 GMT Pragma: - no-cache RequestId: - - 181e4e62-cf74-43cb-a9c4-44bf145ac720 + - 44b6e276-8750-4ab5-bbb6-c551d9113657 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,12 +62,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -75,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:08 GMT + - Fri, 22 May 2026 08:55:33 GMT Pragma: - no-cache RequestId: - - c06e1452-43e1-4af0-ae0a-64f05608d223 + - b9202f11-b5b8-4c79-8b38-320bbe250d72 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,12 +113,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -123,15 +130,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:09 GMT + - Fri, 22 May 2026 08:55:34 GMT Pragma: - no-cache RequestId: - - daaf749e-ed80-418c-89c7-c125a4d3c58b + - 19e6a7f5-1250-46e1-bbd4-27591937ad9c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -156,18 +163,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/fa27f57f-70d6-4009-872b-f7e7149c5026/environments + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/environments response: body: - string: '{"id": "5dd10621-b013-4d51-aa4a-d9f34613ec93", "type": "Environment", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "c5a891c5-90bd-4f76-bce8-8d80227e25c6", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +181,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '160' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:10 GMT + - Fri, 22 May 2026 08:55:36 GMT ETag: - '""' Pragma: - no-cache RequestId: - - c0cf70a5-9af1-4da8-883d-de318039fee9 + - 47fbc65f-949b-4a9f-ad93-2daa1ace2734 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -212,14 +217,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -228,15 +234,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:12 GMT + - Fri, 22 May 2026 08:55:37 GMT Pragma: - no-cache RequestId: - - 4698749d-fe2d-43e3-8980-2a8f36e94fe2 + - 282a1168-d9cc-4575-95ff-ad76640f7421 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -262,14 +268,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "5dd10621-b013-4d51-aa4a-d9f34613ec93", "type": "Environment", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "c5a891c5-90bd-4f76-bce8-8d80227e25c6", "type": "Environment", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +287,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '265' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:12 GMT + - Fri, 22 May 2026 08:55:38 GMT Pragma: - no-cache RequestId: - - 1a007a47-0827-44f2-b632-22ab933f80d8 + - 2c482de9-69fa-4c2b-8ee6-5aa9647d8f4f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -312,16 +321,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/fa27f57f-70d6-4009-872b-f7e7149c5026/environments/5dd10621-b013-4d51-aa4a-d9f34613ec93 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/environments/c5a891c5-90bd-4f76-bce8-8d80227e25c6 response: body: - string: '{"id": "5dd10621-b013-4d51-aa4a-d9f34613ec93", "type": "Environment", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026", "properties": {"publishDetails": {"state": - "Success", "targetVersion": "d8c3d7ee-80bb-4222-8820-588df8a71f3e", "startTime": - "2026-01-29T10:08:11.3956809Z", "endTime": "2026-01-29T10:08:11.3956809Z", + string: '{"id": "c5a891c5-90bd-4f76-bce8-8d80227e25c6", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "properties": {"publishDetails": {"state": "Success", "targetVersion": "201210c4-737d-48a0-a955-34ed3e7305fc", + "startTime": "2026-05-22T08:55:36.9075359Z", "endTime": "2026-05-22T08:55:36.9075359Z", "componentPublishInfo": {"sparkSettings": {"state": "Success"}, "sparkLibraries": {"state": "Success"}}}}}' headers: @@ -332,17 +340,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '315' + - '304' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:13 GMT + - Fri, 22 May 2026 08:55:38 GMT ETag: - '""' Pragma: - no-cache RequestId: - - f765e4e1-bf95-498b-81bf-c22b8f420176 + - 0832fa7f-ec1a-44b5-af90-af6a91478c0d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -370,16 +378,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/environments/5dd10621-b013-4d51-aa4a-d9f34613ec93 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/environments/c5a891c5-90bd-4f76-bce8-8d80227e25c6 response: body: - string: '{"id": "5dd10621-b013-4d51-aa4a-d9f34613ec93", "type": "Environment", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026", "properties": {"publishDetails": {"state": - "Success", "targetVersion": "d8c3d7ee-80bb-4222-8820-588df8a71f3e", "startTime": - "2026-01-29T10:08:11.3956809Z", "endTime": "2026-01-29T10:08:11.3956809Z", + string: '{"id": "c5a891c5-90bd-4f76-bce8-8d80227e25c6", "type": "Environment", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "properties": {"publishDetails": {"state": "Success", "targetVersion": "201210c4-737d-48a0-a955-34ed3e7305fc", + "startTime": "2026-05-22T08:55:36.9075359Z", "endTime": "2026-05-22T08:55:36.9075359Z", "componentPublishInfo": {"sparkSettings": {"state": "Success"}, "sparkLibraries": {"state": "Success"}}}}}' headers: @@ -390,17 +397,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '316' + - '302' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:13 GMT + - Fri, 22 May 2026 08:55:40 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 7ed9dfed-b335-41ae-b724-6206e08e1b31 + - 527f02fc-d4b0-4b1a-9d5f-0fa6f74a8549 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -426,14 +433,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -442,15 +450,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:14 GMT + - Fri, 22 May 2026 08:55:41 GMT Pragma: - no-cache RequestId: - - ffc7a373-3d90-4337-9290-c3ee21403890 + - e715ccf0-0abc-44d0-9522-163a54561f2b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -476,14 +484,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "5dd10621-b013-4d51-aa4a-d9f34613ec93", "type": "Environment", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "c5a891c5-90bd-4f76-bce8-8d80227e25c6", "type": "Environment", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -492,15 +503,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '179' + - '262' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:15 GMT + - Fri, 22 May 2026 08:55:41 GMT Pragma: - no-cache RequestId: - - 913b3e1d-9a9d-4f05-9fe8-1faf7ea39446 + - b8dfcf5e-6839-495e-be9f-9b58d9515608 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -526,14 +537,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "5dd10621-b013-4d51-aa4a-d9f34613ec93", "type": "Environment", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "c5a891c5-90bd-4f76-bce8-8d80227e25c6", "type": "Environment", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -542,15 +556,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '179' + - '262' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:16 GMT + - Fri, 22 May 2026 08:55:43 GMT Pragma: - no-cache RequestId: - - 1bab5459-41ed-4c32-ac16-a4cf7d9f96c6 + - 5f9f63c8-90b5-47a2-9ba2-62c2d9d9036b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -576,14 +590,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -592,15 +607,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:16 GMT + - Fri, 22 May 2026 08:55:43 GMT Pragma: - no-cache RequestId: - - 1ae18b99-a8da-42dd-8e59-37f2505803ad + - 6ee3c4fe-2510-4ea7-918f-cd9bb74783aa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -626,14 +641,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "5dd10621-b013-4d51-aa4a-d9f34613ec93", "type": "Environment", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "c5a891c5-90bd-4f76-bce8-8d80227e25c6", "type": "Environment", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -642,15 +660,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '179' + - '262' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:17 GMT + - Fri, 22 May 2026 08:55:44 GMT Pragma: - no-cache RequestId: - - 83e29d96-30c8-4bdc-90a2-7cfaa2664bce + - 3de9def0-c6b0-4ce9-a6e9-567f51c9c505 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -676,16 +694,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/fa27f57f-70d6-4009-872b-f7e7149c5026/environments/5dd10621-b013-4d51-aa4a-d9f34613ec93 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/environments/c5a891c5-90bd-4f76-bce8-8d80227e25c6 response: body: - string: '{"id": "5dd10621-b013-4d51-aa4a-d9f34613ec93", "type": "Environment", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026", "properties": {"publishDetails": {"state": - "Success", "targetVersion": "d8c3d7ee-80bb-4222-8820-588df8a71f3e", "startTime": - "2026-01-29T10:08:11.3956809Z", "endTime": "2026-01-29T10:08:11.3956809Z", + string: '{"id": "c5a891c5-90bd-4f76-bce8-8d80227e25c6", "type": "Environment", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "properties": {"publishDetails": {"state": "Success", "targetVersion": "201210c4-737d-48a0-a955-34ed3e7305fc", + "startTime": "2026-05-22T08:55:36.9075359Z", "endTime": "2026-05-22T08:55:36.9075359Z", "componentPublishInfo": {"sparkSettings": {"state": "Success"}, "sparkLibraries": {"state": "Success"}}}}}' headers: @@ -696,17 +713,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '316' + - '302' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:18 GMT + - Fri, 22 May 2026 08:55:44 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 7c4bb6d2-bd12-4243-a604-cb760e668ca3 + - 3d89957a-dde3-4b32-9d10-9972ee086ab6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -732,9 +749,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/5dd10621-b013-4d51-aa4a-d9f34613ec93/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/c5a891c5-90bd-4f76-bce8-8d80227e25c6/connections response: body: string: '{"value": []}' @@ -750,11 +767,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:18 GMT + - Fri, 22 May 2026 08:55:46 GMT Pragma: - no-cache RequestId: - - cb8753db-f899-4bb7-9719-e5d35b51ea9b + - be5a4586-02ef-43b0-8846-13878107b336 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -780,25 +797,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/fa27f57f-70d6-4009-872b-f7e7149c5026/environments/5dd10621-b013-4d51-aa4a-d9f34613ec93/libraries + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/environments/c5a891c5-90bd-4f76-bce8-8d80227e25c6/libraries response: body: - string: '{"requestId": "b1f81361-fc41-4df7-a179-8c30602a9fb1", "errorCode": + string: '{"requestId": "97c4a989-3d0f-4b41-ad91-8055a0c574e8", "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 10:08:19 GMT + - Fri, 22 May 2026 08:55:47 GMT RequestId: - - b1f81361-fc41-4df7-a179-8c30602a9fb1 + - 97c4a989-3d0f-4b41-ad91-8055a0c574e8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -826,25 +843,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/fa27f57f-70d6-4009-872b-f7e7149c5026/environments/5dd10621-b013-4d51-aa4a-d9f34613ec93/staging/libraries + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/environments/c5a891c5-90bd-4f76-bce8-8d80227e25c6/staging/libraries response: body: - string: '{"requestId": "c0b5753a-f677-4215-8a89-d465acb861e1", "errorCode": + string: '{"requestId": "de1586e4-327a-470e-9fbd-9832f5012c24", "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 10:08:20 GMT + - Fri, 22 May 2026 08:55:48 GMT RequestId: - - c0b5753a-f677-4215-8a89-d465acb861e1 + - de1586e4-327a-470e-9fbd-9832f5012c24 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -872,9 +889,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/fa27f57f-70d6-4009-872b-f7e7149c5026/environments/5dd10621-b013-4d51-aa4a-d9f34613ec93/sparkcompute + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/environments/c5a891c5-90bd-4f76-bce8-8d80227e25c6/sparkcompute response: body: string: '{"instancePool": {"name": "Starter Pool", "type": "Workspace", "id": @@ -890,9 +907,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:21 GMT + - Fri, 22 May 2026 08:55:49 GMT RequestId: - - b9b12873-88f0-46e0-8e9b-619b68619aef + - e1a8d2fa-7420-41cb-ab1d-0f2706e55def Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -918,9 +935,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/fa27f57f-70d6-4009-872b-f7e7149c5026/environments/5dd10621-b013-4d51-aa4a-d9f34613ec93/staging/sparkcompute + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/environments/c5a891c5-90bd-4f76-bce8-8d80227e25c6/staging/sparkcompute response: body: string: '{"instancePool": {"name": "Starter Pool", "type": "Workspace", "id": @@ -936,9 +953,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:21 GMT + - Fri, 22 May 2026 08:55:50 GMT RequestId: - - 91e84312-547a-4582-8c29-18a1fe97a066 + - af932941-0b95-43cd-a206-f40ac6b3fb52 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -964,14 +981,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -980,15 +998,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:22 GMT + - Fri, 22 May 2026 08:55:50 GMT Pragma: - no-cache RequestId: - - 66eb4222-46e5-4a95-8501-5fe1d7932504 + - dfd26f0a-ec62-4f58-a0cc-50f9fe0d489b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1014,14 +1032,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "5dd10621-b013-4d51-aa4a-d9f34613ec93", "type": "Environment", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "c5a891c5-90bd-4f76-bce8-8d80227e25c6", "type": "Environment", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1030,15 +1051,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '179' + - '262' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:23 GMT + - Fri, 22 May 2026 08:55:51 GMT Pragma: - no-cache RequestId: - - 2416b0ac-52b3-4a88-b9db-4284f4388195 + - efa34058-a37b-4a1c-af04-66345156920a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1064,16 +1085,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/fa27f57f-70d6-4009-872b-f7e7149c5026/environments/5dd10621-b013-4d51-aa4a-d9f34613ec93 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/environments/c5a891c5-90bd-4f76-bce8-8d80227e25c6 response: body: - string: '{"id": "5dd10621-b013-4d51-aa4a-d9f34613ec93", "type": "Environment", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026", "properties": {"publishDetails": {"state": - "Success", "targetVersion": "d8c3d7ee-80bb-4222-8820-588df8a71f3e", "startTime": - "2026-01-29T10:08:11.3956809Z", "endTime": "2026-01-29T10:08:11.3956809Z", + string: '{"id": "c5a891c5-90bd-4f76-bce8-8d80227e25c6", "type": "Environment", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "properties": {"publishDetails": {"state": "Success", "targetVersion": "201210c4-737d-48a0-a955-34ed3e7305fc", + "startTime": "2026-05-22T08:55:36.9075359Z", "endTime": "2026-05-22T08:55:36.9075359Z", "componentPublishInfo": {"sparkSettings": {"state": "Success"}, "sparkLibraries": {"state": "Success"}}}}}' headers: @@ -1084,17 +1104,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '316' + - '302' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:23 GMT + - Fri, 22 May 2026 08:55:52 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 88016953-dd0e-4921-b449-96c028482e8c + - 55080ce9-8f32-45d6-acc0-c4d64edae1ce Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1122,16 +1142,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/environments/5dd10621-b013-4d51-aa4a-d9f34613ec93 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/environments/c5a891c5-90bd-4f76-bce8-8d80227e25c6 response: body: - string: '{"id": "5dd10621-b013-4d51-aa4a-d9f34613ec93", "type": "Environment", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026", "properties": {"publishDetails": {"state": - "Success", "targetVersion": "d8c3d7ee-80bb-4222-8820-588df8a71f3e", "startTime": - "2026-01-29T10:08:11.3956809Z", "endTime": "2026-01-29T10:08:11.3956809Z", + string: '{"id": "c5a891c5-90bd-4f76-bce8-8d80227e25c6", "type": "Environment", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "properties": {"publishDetails": {"state": "Success", "targetVersion": "201210c4-737d-48a0-a955-34ed3e7305fc", + "startTime": "2026-05-22T08:55:36.9075359Z", "endTime": "2026-05-22T08:55:36.9075359Z", "componentPublishInfo": {"sparkSettings": {"state": "Success"}, "sparkLibraries": {"state": "Success"}}}}}' headers: @@ -1142,17 +1161,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '315' + - '304' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:24 GMT + - Fri, 22 May 2026 08:55:53 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 606816ad-ec61-4ac6-bf5b-de84a3d0f996 + - 9d6a9511-8892-4d54-8b11-a7779e1e4b5a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1178,14 +1197,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1194,15 +1214,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:25 GMT + - Fri, 22 May 2026 08:55:54 GMT Pragma: - no-cache RequestId: - - a61340b5-92d4-4a3b-a9ec-18ab15d3e8ff + - 9aa90311-0a03-4314-bced-9cdd3c3da674 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1228,14 +1248,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "5dd10621-b013-4d51-aa4a-d9f34613ec93", "type": "Environment", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "c5a891c5-90bd-4f76-bce8-8d80227e25c6", "type": "Environment", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1244,15 +1267,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '265' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:26 GMT + - Fri, 22 May 2026 08:55:55 GMT Pragma: - no-cache RequestId: - - be5a2168-907c-4278-b35d-1168452596f8 + - 63c876f6-7ccf-4a1d-8b92-b16bb375d314 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1280,9 +1303,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/5dd10621-b013-4d51-aa4a-d9f34613ec93 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/c5a891c5-90bd-4f76-bce8-8d80227e25c6 response: body: string: '' @@ -1298,11 +1321,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 29 Jan 2026 10:08:27 GMT + - Fri, 22 May 2026 08:55:56 GMT Pragma: - no-cache RequestId: - - 114f48e7-da24-466d-a9f7-096f435fdb6b + - e0509bc8-1d1f-48ef-b36c-d627085c31f1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-Eventstream].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-Eventstream].yaml index 56cb8b492..867dfdada 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-Eventstream].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-Eventstream].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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:28 GMT + - Fri, 22 May 2026 08:55:57 GMT Pragma: - no-cache RequestId: - - 17aea543-3b6f-4035-b4e0-1755c373a6d5 + - e87867fc-b437-4bbd-a7e4-874bbe0c949e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,12 +62,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -75,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:28 GMT + - Fri, 22 May 2026 08:55:57 GMT Pragma: - no-cache RequestId: - - 04d6bca6-7025-4036-8585-c8e8f84d0d90 + - 8b2ea3a7-e97c-4ddc-ae6c-4362f1d00fa2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,12 +113,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -123,15 +130,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:28 GMT + - Fri, 22 May 2026 08:55:59 GMT Pragma: - no-cache RequestId: - - 141bcc37-5f52-4b71-8909-c8b788185ad7 + - 0eb31e2b-78ce-46ab-b0e4-ff2ad05c44ab Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -156,13 +163,12 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/eventstreams + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/eventstreams response: body: string: 'null' @@ -178,15 +184,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:29 GMT + - Fri, 22 May 2026 08:56:00 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8f368731-43fb-4499-959d-b6da0edf38fd + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d9825fa5-eac7-4131-9199-5e099510cd36 Pragma: - no-cache RequestId: - - c16f8b92-04a8-426d-a9cb-d23862208aee + - ba1e5bfa-22fe-41dd-9aff-df33042833db Retry-After: - '20' Strict-Transport-Security: @@ -200,7 +206,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 8f368731-43fb-4499-959d-b6da0edf38fd + - d9825fa5-eac7-4131-9199-5e099510cd36 status: code: 202 message: Accepted @@ -216,13 +222,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8f368731-43fb-4499-959d-b6da0edf38fd + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d9825fa5-eac7-4131-9199-5e099510cd36 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-01-29T10:08:30.0321237", - "lastUpdatedTimeUtc": "2026-01-29T10:08:33.1738368", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-22T08:56:00.4907914", + "lastUpdatedTimeUtc": "2026-05-22T08:56:02.7389901", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -232,17 +238,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '130' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:51 GMT + - Fri, 22 May 2026 08:56:21 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8f368731-43fb-4499-959d-b6da0edf38fd/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d9825fa5-eac7-4131-9199-5e099510cd36/result Pragma: - no-cache RequestId: - - 48b2632b-5254-4b3d-8be5-391b5f9124cd + - cb8445a0-1f60-483d-8d37-c032179a31ee Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -250,7 +256,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 8f368731-43fb-4499-959d-b6da0edf38fd + - d9825fa5-eac7-4131-9199-5e099510cd36 status: code: 200 message: OK @@ -266,14 +272,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/8f368731-43fb-4499-959d-b6da0edf38fd/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/d9825fa5-eac7-4131-9199-5e099510cd36/result response: body: - string: '{"id": "01eb4df9-509b-42d0-8675-0c3db51e0e5d", "type": "Eventstream", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "5805737b-a499-4f7d-936b-54e36ed35a53", "type": "Eventstream", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId @@ -284,11 +289,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jan 2026 10:08:51 GMT + - Fri, 22 May 2026 08:56:22 GMT Pragma: - no-cache RequestId: - - e6c52029-f2b0-4f3c-9b02-d7d44b1fb456 + - 1ee4931f-6186-4b54-b175-d8aa5014f184 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -312,14 +317,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -328,15 +334,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:52 GMT + - Fri, 22 May 2026 08:56:23 GMT Pragma: - no-cache RequestId: - - c0bc452a-0061-4168-aadc-251e40a1d2f1 + - 530b3cdf-a125-46ea-9b4f-c47ccb3a20a7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -362,14 +368,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "01eb4df9-509b-42d0-8675-0c3db51e0e5d", "type": "Eventstream", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "5805737b-a499-4f7d-936b-54e36ed35a53", "type": "Eventstream", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -378,15 +387,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '179' + - '261' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:52 GMT + - Fri, 22 May 2026 08:56:23 GMT Pragma: - no-cache RequestId: - - b7a93c80-25ee-4f39-8722-5c3cd094f98f + - 890f2305-f6e0-43e4-8787-266b49e7dcfe Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -412,14 +421,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/fa27f57f-70d6-4009-872b-f7e7149c5026/eventstreams/01eb4df9-509b-42d0-8675-0c3db51e0e5d + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/eventstreams/5805737b-a499-4f7d-936b-54e36ed35a53 response: body: - string: '{"id": "01eb4df9-509b-42d0-8675-0c3db51e0e5d", "type": "Eventstream", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "5805737b-a499-4f7d-936b-54e36ed35a53", "type": "Eventstream", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -428,17 +436,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '158' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:53 GMT + - Fri, 22 May 2026 08:56:24 GMT ETag: - '""' Pragma: - no-cache RequestId: - - afe22a0e-4a15-433b-a4f5-31d60c1146f7 + - 90f70b67-6c4b-498f-bf4b-7cb5ddb5769f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -466,14 +474,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/eventstreams/01eb4df9-509b-42d0-8675-0c3db51e0e5d + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/eventstreams/5805737b-a499-4f7d-936b-54e36ed35a53 response: body: - string: '{"id": "01eb4df9-509b-42d0-8675-0c3db51e0e5d", "type": "Eventstream", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "5805737b-a499-4f7d-936b-54e36ed35a53", "type": "Eventstream", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -482,17 +489,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '158' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:54 GMT + - Fri, 22 May 2026 08:56:25 GMT ETag: - '""' Pragma: - no-cache RequestId: - - ef277234-8f4a-4f46-880d-3141ea4c4a6e + - ca78b987-4e01-4224-8735-eecab584085c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -518,14 +525,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -534,15 +542,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:55 GMT + - Fri, 22 May 2026 08:56:26 GMT Pragma: - no-cache RequestId: - - 28a1f826-d54f-49c2-9d13-92636cf9a04a + - 6bc31c3c-171d-41c5-b2a4-3df64b3e7896 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -568,14 +576,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "01eb4df9-509b-42d0-8675-0c3db51e0e5d", "type": "Eventstream", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "5805737b-a499-4f7d-936b-54e36ed35a53", "type": "Eventstream", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -584,15 +595,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '177' + - '262' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:56 GMT + - Fri, 22 May 2026 08:56:27 GMT Pragma: - no-cache RequestId: - - fc86185d-e09c-43e3-86c1-fa9bfa700f43 + - 119a7c4e-0dca-4d29-8a42-a494b089cc56 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -618,14 +629,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "01eb4df9-509b-42d0-8675-0c3db51e0e5d", "type": "Eventstream", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "5805737b-a499-4f7d-936b-54e36ed35a53", "type": "Eventstream", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -634,15 +648,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '177' + - '262' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:56 GMT + - Fri, 22 May 2026 08:56:28 GMT Pragma: - no-cache RequestId: - - 730ab896-162a-4511-b985-3d8d12fcfdd3 + - d0a6a500-40a9-44e5-9f6c-ea628d3e6643 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -668,14 +682,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -684,15 +699,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:58 GMT + - Fri, 22 May 2026 08:56:28 GMT Pragma: - no-cache RequestId: - - 923a21e4-e60b-41c3-8e36-995dc1d07538 + - 49305c35-b952-4f93-b62b-66920f87c598 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -718,14 +733,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "01eb4df9-509b-42d0-8675-0c3db51e0e5d", "type": "Eventstream", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "5805737b-a499-4f7d-936b-54e36ed35a53", "type": "Eventstream", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -734,15 +752,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '177' + - '262' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:58 GMT + - Fri, 22 May 2026 08:56:30 GMT Pragma: - no-cache RequestId: - - 286bb46a-3b4c-4ec0-bc8f-6c7866ba216a + - 5fe72eb6-96f7-4b30-ae6d-ed7f20f83f5a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -768,14 +786,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/fa27f57f-70d6-4009-872b-f7e7149c5026/eventstreams/01eb4df9-509b-42d0-8675-0c3db51e0e5d + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/eventstreams/5805737b-a499-4f7d-936b-54e36ed35a53 response: body: - string: '{"id": "01eb4df9-509b-42d0-8675-0c3db51e0e5d", "type": "Eventstream", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "5805737b-a499-4f7d-936b-54e36ed35a53", "type": "Eventstream", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -784,17 +801,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '158' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:58 GMT + - Fri, 22 May 2026 08:56:30 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 8dbb3c43-6855-4b98-8d09-b94f9fa6d7a0 + - 29c20160-0c17-4bf3-9040-e508ac4234a3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -820,9 +837,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/01eb4df9-509b-42d0-8675-0c3db51e0e5d/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/5805737b-a499-4f7d-936b-54e36ed35a53/connections response: body: string: '{"value": []}' @@ -838,11 +855,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:08:59 GMT + - Fri, 22 May 2026 08:56:31 GMT Pragma: - no-cache RequestId: - - 0d3b9df2-c6e3-442f-b9f5-72ea966ae2ee + - 6ab719e3-7358-4f0a-8fb8-3d970affa409 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -868,14 +885,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -884,15 +902,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:00 GMT + - Fri, 22 May 2026 08:56:32 GMT Pragma: - no-cache RequestId: - - 74dd4833-d14b-45a4-b1c8-f320c661b4cc + - 663e06ea-c749-432e-84a1-24fbfa2d43f2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -918,14 +936,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "01eb4df9-509b-42d0-8675-0c3db51e0e5d", "type": "Eventstream", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "5805737b-a499-4f7d-936b-54e36ed35a53", "type": "Eventstream", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -934,15 +955,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '177' + - '262' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:01 GMT + - Fri, 22 May 2026 08:56:33 GMT Pragma: - no-cache RequestId: - - b819b484-af28-40f4-9d1b-c55cd34df3e1 + - 6db270bd-e2ca-4c0c-ae0b-71bca90d2068 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -968,14 +989,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/fa27f57f-70d6-4009-872b-f7e7149c5026/eventstreams/01eb4df9-509b-42d0-8675-0c3db51e0e5d + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/eventstreams/5805737b-a499-4f7d-936b-54e36ed35a53 response: body: - string: '{"id": "01eb4df9-509b-42d0-8675-0c3db51e0e5d", "type": "Eventstream", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "5805737b-a499-4f7d-936b-54e36ed35a53", "type": "Eventstream", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -984,17 +1004,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '158' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:01 GMT + - Fri, 22 May 2026 08:56:33 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 49fcaa96-7f07-466c-9570-59de24a45bfb + - 0d15170f-a269-40dd-a161-aa55e0851972 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1022,14 +1042,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/eventstreams/01eb4df9-509b-42d0-8675-0c3db51e0e5d + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/eventstreams/5805737b-a499-4f7d-936b-54e36ed35a53 response: body: - string: '{"id": "01eb4df9-509b-42d0-8675-0c3db51e0e5d", "type": "Eventstream", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "5805737b-a499-4f7d-936b-54e36ed35a53", "type": "Eventstream", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1038,17 +1057,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '158' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:02 GMT + - Fri, 22 May 2026 08:56:35 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 05d3d63c-c916-4b65-a096-8834f636ea43 + - 6931d518-900a-4f48-aefb-46a01547056b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1074,14 +1093,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1090,15 +1110,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:03 GMT + - Fri, 22 May 2026 08:56:35 GMT Pragma: - no-cache RequestId: - - 1c706484-030f-4977-9e0a-7dc8280da517 + - 7277e047-7027-40d8-898f-21a902b34d62 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1124,14 +1144,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "01eb4df9-509b-42d0-8675-0c3db51e0e5d", "type": "Eventstream", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "5805737b-a499-4f7d-936b-54e36ed35a53", "type": "Eventstream", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1140,15 +1163,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '179' + - '261' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:04 GMT + - Fri, 22 May 2026 08:56:36 GMT Pragma: - no-cache RequestId: - - d996b8f5-a8d9-4662-87d5-39a939dd2d2f + - 3924ae57-e088-44bf-acf1-11d925655a57 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1176,9 +1199,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/01eb4df9-509b-42d0-8675-0c3db51e0e5d + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/5805737b-a499-4f7d-936b-54e36ed35a53 response: body: string: '' @@ -1194,11 +1217,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 29 Jan 2026 10:09:04 GMT + - Fri, 22 May 2026 08:56:37 GMT Pragma: - no-cache RequestId: - - 805bbffd-0779-46d7-834a-8835f5cec248 + - 26033c23-680b-412c-b134-e5f175da660d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-KQLDashboard].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-KQLDashboard].yaml index 434f90f03..161544eee 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-KQLDashboard].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-KQLDashboard].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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:05 GMT + - Fri, 22 May 2026 08:56:38 GMT Pragma: - no-cache RequestId: - - 9cd63a01-b686-417b-93a5-59095bf6e486 + - 8617c6e4-62bc-4064-84ff-6a1eceb0db83 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,12 +62,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -75,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:06 GMT + - Fri, 22 May 2026 08:56:39 GMT Pragma: - no-cache RequestId: - - bde9c37a-db13-47c7-b012-df4ef45fa074 + - d33b0641-ec05-45aa-9dc3-80392ee155af Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,12 +113,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -123,15 +130,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:06 GMT + - Fri, 22 May 2026 08:56:40 GMT Pragma: - no-cache RequestId: - - 4fd61fef-6dee-40b9-a71d-0234b4121be0 + - 4e91cabc-2835-45ee-abfb-069147a5b92c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -156,18 +163,16 @@ interactions: - keep-alive Content-Length: - '77' - 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/fa27f57f-70d6-4009-872b-f7e7149c5026/kqlDashboards + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/kqlDashboards response: body: - string: '{"id": "f88a95c4-f03b-4443-9e5c-99cb3096a569", "type": "KQLDashboard", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "35c1e662-1e68-4296-a383-7b80a2d2ed83", "type": "KQLDashboard", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +181,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '171' + - '161' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:09 GMT + - Fri, 22 May 2026 08:56:41 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 236d0a88-eff0-43c1-bbd3-d06684e12d50 + - 43ced5f0-f744-4d68-a738-85d559314d34 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -212,14 +217,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -228,15 +234,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:09 GMT + - Fri, 22 May 2026 08:56:42 GMT Pragma: - no-cache RequestId: - - f3016102-2abe-41d3-a2bd-69f768a8febf + - 2c09b2a6-ee2f-4af6-bf76-a1e4fbed0a13 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -262,14 +268,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "f88a95c4-f03b-4443-9e5c-99cb3096a569", "type": "KQLDashboard", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "35c1e662-1e68-4296-a383-7b80a2d2ed83", "type": "KQLDashboard", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +287,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '182' + - '266' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:11 GMT + - Fri, 22 May 2026 08:56:43 GMT Pragma: - no-cache RequestId: - - ee6fe0cf-23ff-4cdb-ad0b-6f93f9c9a34b + - 1907ce4d-e400-4990-bbe6-26e192382def Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -312,14 +321,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/fa27f57f-70d6-4009-872b-f7e7149c5026/kqlDashboards/f88a95c4-f03b-4443-9e5c-99cb3096a569 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/kqlDashboards/35c1e662-1e68-4296-a383-7b80a2d2ed83 response: body: - string: '{"id": "f88a95c4-f03b-4443-9e5c-99cb3096a569", "type": "KQLDashboard", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "35c1e662-1e68-4296-a383-7b80a2d2ed83", "type": "KQLDashboard", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -328,17 +336,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '171' + - '161' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:12 GMT + - Fri, 22 May 2026 08:56:44 GMT ETag: - '""' Pragma: - no-cache RequestId: - - faa78304-0739-4f76-a402-b36ac0eece4d + - ee6dde36-48f8-43fb-a0fc-bb5f133e2914 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -366,14 +374,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/kqlDashboards/f88a95c4-f03b-4443-9e5c-99cb3096a569 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/kqlDashboards/35c1e662-1e68-4296-a383-7b80a2d2ed83 response: body: - string: '{"id": "f88a95c4-f03b-4443-9e5c-99cb3096a569", "type": "KQLDashboard", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "35c1e662-1e68-4296-a383-7b80a2d2ed83", "type": "KQLDashboard", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -382,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '171' + - '162' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:12 GMT + - Fri, 22 May 2026 08:56:45 GMT ETag: - '""' Pragma: - no-cache RequestId: - - d767ed51-b986-4a01-80b9-cacdf2ac97c9 + - 5ec04ed3-68a6-4f8d-a120-3fc155e4a0d2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -418,14 +425,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -434,15 +442,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:13 GMT + - Fri, 22 May 2026 08:56:46 GMT Pragma: - no-cache RequestId: - - 33baa0d1-285b-431a-bff2-3a8f4481e433 + - 6c07c1bb-f91c-40d5-bc04-a3719eee59e9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -468,14 +476,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "f88a95c4-f03b-4443-9e5c-99cb3096a569", "type": "KQLDashboard", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "35c1e662-1e68-4296-a383-7b80a2d2ed83", "type": "KQLDashboard", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -484,15 +495,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '183' + - '265' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:14 GMT + - Fri, 22 May 2026 08:56:47 GMT Pragma: - no-cache RequestId: - - 12cabf9d-8051-4cd3-8474-92a81a879e65 + - 401c9150-8519-4639-9a14-7d16f795c09f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -518,14 +529,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "f88a95c4-f03b-4443-9e5c-99cb3096a569", "type": "KQLDashboard", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "35c1e662-1e68-4296-a383-7b80a2d2ed83", "type": "KQLDashboard", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -534,15 +548,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '183' + - '265' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:15 GMT + - Fri, 22 May 2026 08:56:48 GMT Pragma: - no-cache RequestId: - - 3e4fc06e-6ef6-4854-870d-d172ad1b70ae + - 3da7292c-430a-4cff-a4e6-f2cb843261f4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -568,14 +582,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -584,15 +599,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:15 GMT + - Fri, 22 May 2026 08:56:48 GMT Pragma: - no-cache RequestId: - - 8bec45a5-9ddd-4124-a45e-41d06e674f43 + - 49d2a839-c393-4e8e-bca6-a13f150e20f9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -618,14 +633,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "f88a95c4-f03b-4443-9e5c-99cb3096a569", "type": "KQLDashboard", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "35c1e662-1e68-4296-a383-7b80a2d2ed83", "type": "KQLDashboard", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -634,15 +652,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '183' + - '265' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:16 GMT + - Fri, 22 May 2026 08:56:49 GMT Pragma: - no-cache RequestId: - - 4d2bf9f6-5846-45d3-b39b-74ff3cc52115 + - 9d3a584d-e68c-4c9b-bb24-48f3a66fc4c3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -668,14 +686,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/fa27f57f-70d6-4009-872b-f7e7149c5026/kqlDashboards/f88a95c4-f03b-4443-9e5c-99cb3096a569 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/kqlDashboards/35c1e662-1e68-4296-a383-7b80a2d2ed83 response: body: - string: '{"id": "f88a95c4-f03b-4443-9e5c-99cb3096a569", "type": "KQLDashboard", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "35c1e662-1e68-4296-a383-7b80a2d2ed83", "type": "KQLDashboard", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -684,17 +701,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '171' + - '162' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:16 GMT + - Fri, 22 May 2026 08:56:50 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 7929ffdd-1689-4963-9218-38d4fd9c8f1e + - cce417d6-1216-490e-9356-bb870542b140 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -720,9 +737,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/f88a95c4-f03b-4443-9e5c-99cb3096a569/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/35c1e662-1e68-4296-a383-7b80a2d2ed83/connections response: body: string: '{"value": []}' @@ -738,11 +755,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:17 GMT + - Fri, 22 May 2026 08:56:51 GMT Pragma: - no-cache RequestId: - - bd80c7f8-b5db-4ccd-912b-ba9bf74c1a99 + - e3551ae4-1bb4-4362-91fb-5c010ebb7c3e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -768,14 +785,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -784,15 +802,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:18 GMT + - Fri, 22 May 2026 08:56:52 GMT Pragma: - no-cache RequestId: - - de6d8b65-4bea-4d24-b250-d73030d6d78f + - 2da563c7-73f5-4c85-be05-4575f0e0e36c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -818,14 +836,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "f88a95c4-f03b-4443-9e5c-99cb3096a569", "type": "KQLDashboard", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "35c1e662-1e68-4296-a383-7b80a2d2ed83", "type": "KQLDashboard", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -834,15 +855,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '183' + - '265' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:18 GMT + - Fri, 22 May 2026 08:56:53 GMT Pragma: - no-cache RequestId: - - 09164150-5f81-4eb5-8bba-8ebf763a5537 + - a937f4e9-5982-4437-9e18-82f8a3c53ba9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -868,14 +889,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/fa27f57f-70d6-4009-872b-f7e7149c5026/kqlDashboards/f88a95c4-f03b-4443-9e5c-99cb3096a569 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/kqlDashboards/35c1e662-1e68-4296-a383-7b80a2d2ed83 response: body: - string: '{"id": "f88a95c4-f03b-4443-9e5c-99cb3096a569", "type": "KQLDashboard", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "35c1e662-1e68-4296-a383-7b80a2d2ed83", "type": "KQLDashboard", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -884,17 +904,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '171' + - '162' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:19 GMT + - Fri, 22 May 2026 08:56:54 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 7544262f-f133-413a-96d4-964d6d9ae48a + - 9fd88773-4022-4190-aa9c-3bfd11f91c14 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -922,14 +942,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/kqlDashboards/f88a95c4-f03b-4443-9e5c-99cb3096a569 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/kqlDashboards/35c1e662-1e68-4296-a383-7b80a2d2ed83 response: body: - string: '{"id": "f88a95c4-f03b-4443-9e5c-99cb3096a569", "type": "KQLDashboard", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "35c1e662-1e68-4296-a383-7b80a2d2ed83", "type": "KQLDashboard", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -938,17 +957,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '171' + - '161' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:21 GMT + - Fri, 22 May 2026 08:56:55 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 0847ba65-6b01-4e45-afbf-064a514f9ce4 + - 1d903152-90e4-4eaa-b07e-cb4f61b2b787 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -974,14 +993,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -990,15 +1010,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:21 GMT + - Fri, 22 May 2026 08:56:55 GMT Pragma: - no-cache RequestId: - - 2d37f065-5538-47f1-9309-1050ebc19aba + - 0bd8dd01-32ba-4b7c-a410-8a143abd3a46 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1024,14 +1044,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "f88a95c4-f03b-4443-9e5c-99cb3096a569", "type": "KQLDashboard", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "35c1e662-1e68-4296-a383-7b80a2d2ed83", "type": "KQLDashboard", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1040,15 +1063,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '182' + - '266' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:22 GMT + - Fri, 22 May 2026 08:56:56 GMT Pragma: - no-cache RequestId: - - 9f31bdc9-e8c3-4196-8fd4-bbfa1f1fc6b9 + - 08d596b7-108f-4a22-aacb-eaffc8bf373d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1076,9 +1099,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/f88a95c4-f03b-4443-9e5c-99cb3096a569 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/35c1e662-1e68-4296-a383-7b80a2d2ed83 response: body: string: '' @@ -1094,11 +1117,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 29 Jan 2026 10:09:23 GMT + - Fri, 22 May 2026 08:56:57 GMT Pragma: - no-cache RequestId: - - 207a7277-2dd2-44a0-b692-c9597bbfd818 + - 6232ad27-db85-4da1-947e-737216a2a586 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-KQLQueryset].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-KQLQueryset].yaml index c80f547c9..d2803c9e0 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-KQLQueryset].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-KQLQueryset].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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:24 GMT + - Fri, 22 May 2026 08:56:59 GMT Pragma: - no-cache RequestId: - - c969d4c1-1ddb-4daf-9d1a-0fedcaf9e28e + - e49dbbc6-a2d5-4d1f-833e-e366d9fcbb14 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,12 +62,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -75,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:24 GMT + - Fri, 22 May 2026 08:56:59 GMT Pragma: - no-cache RequestId: - - a7a873f1-4007-4778-9174-b50d920f8deb + - 2b782ef4-d9db-4264-9e13-669416e27fcb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,12 +113,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -123,15 +130,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:25 GMT + - Fri, 22 May 2026 08:57:00 GMT Pragma: - no-cache RequestId: - - 9d322d8e-4c98-466e-9bfd-13548a5cfdfd + - 6b453756-4ab9-43bd-a481-0b465ed77a4f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -156,18 +163,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/fa27f57f-70d6-4009-872b-f7e7149c5026/kqlQuerysets + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/kqlQuerysets response: body: - string: '{"id": "d4f1c1e8-52ce-403e-897d-b68089d73995", "type": "KQLQueryset", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "316fa8fa-a9f6-4bfe-82d7-4ce714702dd4", "type": "KQLQueryset", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +181,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '170' + - '160' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:26 GMT + - Fri, 22 May 2026 08:57:02 GMT ETag: - '""' Pragma: - no-cache RequestId: - - bca50b88-1274-4954-9d1d-411181da6d7e + - e405565e-d392-4d5e-99b7-bb3d594146f5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -212,14 +217,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -228,15 +234,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:27 GMT + - Fri, 22 May 2026 08:57:03 GMT Pragma: - no-cache RequestId: - - 08343a88-63f4-40f2-b2f4-6204eed51b23 + - c24d3e19-6aab-4e9a-aba3-ab209c0cef03 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -262,14 +268,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "d4f1c1e8-52ce-403e-897d-b68089d73995", "type": "KQLQueryset", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "316fa8fa-a9f6-4bfe-82d7-4ce714702dd4", "type": "KQLQueryset", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +287,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '181' + - '264' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:28 GMT + - Fri, 22 May 2026 08:57:03 GMT Pragma: - no-cache RequestId: - - 302717a4-e4ef-4ff6-a77a-dedde049aeab + - 304528c2-1459-434e-b8c6-95b34c5df264 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -312,14 +321,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/fa27f57f-70d6-4009-872b-f7e7149c5026/kqlQuerysets/d4f1c1e8-52ce-403e-897d-b68089d73995 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/kqlQuerysets/316fa8fa-a9f6-4bfe-82d7-4ce714702dd4 response: body: - string: '{"id": "d4f1c1e8-52ce-403e-897d-b68089d73995", "type": "KQLQueryset", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "316fa8fa-a9f6-4bfe-82d7-4ce714702dd4", "type": "KQLQueryset", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -328,17 +336,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '170' + - '160' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:29 GMT + - Fri, 22 May 2026 08:57:04 GMT ETag: - '""' Pragma: - no-cache RequestId: - - a679f1b6-5b07-45ec-8742-cda634ad6cf3 + - b1b248d4-0933-4768-a192-cc28a7dd3afa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -366,14 +374,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/kqlQuerysets/d4f1c1e8-52ce-403e-897d-b68089d73995 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/kqlQuerysets/316fa8fa-a9f6-4bfe-82d7-4ce714702dd4 response: body: - string: '{"id": "d4f1c1e8-52ce-403e-897d-b68089d73995", "type": "KQLQueryset", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "316fa8fa-a9f6-4bfe-82d7-4ce714702dd4", "type": "KQLQueryset", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -382,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '170' + - '160' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:29 GMT + - Fri, 22 May 2026 08:57:05 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 1ad1f7e8-cb06-4899-acb4-e4a4f8a8f5bd + - c41a713a-a285-41d1-b88e-0854c8190849 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -418,14 +425,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -434,15 +442,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:30 GMT + - Fri, 22 May 2026 08:57:05 GMT Pragma: - no-cache RequestId: - - 2a7a553f-c636-4545-80ab-fba6b824a515 + - e91996ac-8c17-49dd-b3ab-5b6bfd8a5432 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -468,14 +476,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "d4f1c1e8-52ce-403e-897d-b68089d73995", "type": "KQLQueryset", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "316fa8fa-a9f6-4bfe-82d7-4ce714702dd4", "type": "KQLQueryset", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -484,15 +495,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '182' + - '265' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:31 GMT + - Fri, 22 May 2026 08:57:06 GMT Pragma: - no-cache RequestId: - - acb66211-278d-42a2-a7e0-f457fd5fc8b1 + - 31eedae7-2455-4873-a7ee-8681fcd6607c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -518,14 +529,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "d4f1c1e8-52ce-403e-897d-b68089d73995", "type": "KQLQueryset", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "316fa8fa-a9f6-4bfe-82d7-4ce714702dd4", "type": "KQLQueryset", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -534,15 +548,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '182' + - '265' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:31 GMT + - Fri, 22 May 2026 08:57:06 GMT Pragma: - no-cache RequestId: - - 60c7243b-3786-4c91-8157-fd2ed1b3e8f9 + - 713d0f56-5a67-4b62-b665-845611f572be Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -568,14 +582,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -584,15 +599,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:32 GMT + - Fri, 22 May 2026 08:57:08 GMT Pragma: - no-cache RequestId: - - 3e4e483c-65d7-4789-aea3-121bd3fe8cbc + - 0c40678f-dc5e-46bf-a5a0-878aedff262c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -618,14 +633,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "d4f1c1e8-52ce-403e-897d-b68089d73995", "type": "KQLQueryset", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "316fa8fa-a9f6-4bfe-82d7-4ce714702dd4", "type": "KQLQueryset", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -634,15 +652,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '182' + - '265' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:33 GMT + - Fri, 22 May 2026 08:57:08 GMT Pragma: - no-cache RequestId: - - 009d6564-66ed-4571-afb6-d613f1b5198c + - 09f6eabb-7355-47b9-a70c-238605d26a53 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -668,14 +686,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/fa27f57f-70d6-4009-872b-f7e7149c5026/kqlQuerysets/d4f1c1e8-52ce-403e-897d-b68089d73995 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/kqlQuerysets/316fa8fa-a9f6-4bfe-82d7-4ce714702dd4 response: body: - string: '{"id": "d4f1c1e8-52ce-403e-897d-b68089d73995", "type": "KQLQueryset", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "316fa8fa-a9f6-4bfe-82d7-4ce714702dd4", "type": "KQLQueryset", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -684,17 +701,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '170' + - '160' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:34 GMT + - Fri, 22 May 2026 08:57:08 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 7c8ca807-cdaf-4aa9-8b03-3dd3e59a336c + - a28eb640-780d-48a6-bc10-ae326ae8b94d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -720,9 +737,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/d4f1c1e8-52ce-403e-897d-b68089d73995/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/316fa8fa-a9f6-4bfe-82d7-4ce714702dd4/connections response: body: string: '{"value": []}' @@ -738,11 +755,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:34 GMT + - Fri, 22 May 2026 08:57:09 GMT Pragma: - no-cache RequestId: - - 509db3eb-dc32-4bfb-b618-1fd506373ef1 + - 7cf2a6a4-1489-45ad-886e-5f79feba82c9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -768,14 +785,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -784,15 +802,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:34 GMT + - Fri, 22 May 2026 08:57:09 GMT Pragma: - no-cache RequestId: - - b0e02429-6352-439a-a181-3d5c3c4ffdf0 + - 4d086f0e-60bd-4619-bfaf-7a3d5afaec63 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -818,14 +836,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "d4f1c1e8-52ce-403e-897d-b68089d73995", "type": "KQLQueryset", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "316fa8fa-a9f6-4bfe-82d7-4ce714702dd4", "type": "KQLQueryset", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -834,15 +855,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '182' + - '265' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:35 GMT + - Fri, 22 May 2026 08:57:10 GMT Pragma: - no-cache RequestId: - - ab24966b-31d3-45c9-8263-0ab622741cb0 + - 57505cfb-0ed2-45a2-8989-51ba26d0a07f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -868,14 +889,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/fa27f57f-70d6-4009-872b-f7e7149c5026/kqlQuerysets/d4f1c1e8-52ce-403e-897d-b68089d73995 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/kqlQuerysets/316fa8fa-a9f6-4bfe-82d7-4ce714702dd4 response: body: - string: '{"id": "d4f1c1e8-52ce-403e-897d-b68089d73995", "type": "KQLQueryset", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "316fa8fa-a9f6-4bfe-82d7-4ce714702dd4", "type": "KQLQueryset", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -884,17 +904,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '170' + - '160' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:35 GMT + - Fri, 22 May 2026 08:57:11 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 920434d8-cb06-463c-9c36-109665f3657a + - 8c059ce7-915a-40ea-a16b-2f5ad431549f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -922,14 +942,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/kqlQuerysets/d4f1c1e8-52ce-403e-897d-b68089d73995 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/kqlQuerysets/316fa8fa-a9f6-4bfe-82d7-4ce714702dd4 response: body: - string: '{"id": "d4f1c1e8-52ce-403e-897d-b68089d73995", "type": "KQLQueryset", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "316fa8fa-a9f6-4bfe-82d7-4ce714702dd4", "type": "KQLQueryset", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -938,17 +957,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '170' + - '160' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:36 GMT + - Fri, 22 May 2026 08:57:11 GMT ETag: - '""' Pragma: - no-cache RequestId: - - bf335055-eaf3-4fd4-8160-855d7cefe160 + - 1f02ca0c-62fd-4778-91ed-7ad289e1b36f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -974,14 +993,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -990,15 +1010,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:36 GMT + - Fri, 22 May 2026 08:57:12 GMT Pragma: - no-cache RequestId: - - c0b8c2b2-7487-46b1-a429-b776f0e8a467 + - b9cb3bd7-4df5-4ae6-ab8a-d7dcf3976771 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1024,14 +1044,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "d4f1c1e8-52ce-403e-897d-b68089d73995", "type": "KQLQueryset", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "316fa8fa-a9f6-4bfe-82d7-4ce714702dd4", "type": "KQLQueryset", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1040,15 +1063,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '181' + - '264' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:37 GMT + - Fri, 22 May 2026 08:57:13 GMT Pragma: - no-cache RequestId: - - e8690d18-30a3-4a06-9bdd-f4a09d368741 + - 9459c685-f7c8-4465-9994-d73d13404b27 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1076,9 +1099,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/d4f1c1e8-52ce-403e-897d-b68089d73995 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/316fa8fa-a9f6-4bfe-82d7-4ce714702dd4 response: body: string: '' @@ -1094,11 +1117,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 29 Jan 2026 10:09:38 GMT + - Fri, 22 May 2026 08:57:13 GMT Pragma: - no-cache RequestId: - - 7ba53ab3-696c-467f-829d-35b30b5f37c8 + - 6b1f4418-786b-4e52-a2c3-79f23da887f6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-MLExperiment].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-MLExperiment].yaml index d9cde93e2..96db9430b 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-MLExperiment].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-MLExperiment].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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:38 GMT + - Fri, 22 May 2026 08:57:14 GMT Pragma: - no-cache RequestId: - - ee80721a-7f7a-4249-a8cf-aea15e51807b + - 34051713-fa11-4c31-9268-f6ba6d097b71 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,12 +62,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -75,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:39 GMT + - Fri, 22 May 2026 08:57:14 GMT Pragma: - no-cache RequestId: - - fa6800a8-03c2-4969-bf87-3720bfaa96c9 + - c12d3805-f642-4684-9e1f-3511b26e2945 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,12 +113,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -123,15 +130,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:40 GMT + - Fri, 22 May 2026 08:57:15 GMT Pragma: - no-cache RequestId: - - 5cdceb27-8e7a-4743-8f59-7b2d029312db + - 9b1e3772-5d48-4420-81f3-2d77446e669d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -156,13 +163,12 @@ interactions: - keep-alive Content-Length: - '77' - 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/fa27f57f-70d6-4009-872b-f7e7149c5026/mlExperiments + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/mlExperiments response: body: string: 'null' @@ -178,15 +184,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:09:42 GMT + - Fri, 22 May 2026 08:57:16 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9cc00ff1-b707-48f5-974e-12ee5e4e1427 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/77bb4f32-7679-4907-9cec-8be75519b711 Pragma: - no-cache RequestId: - - 47b88446-8357-4227-80f8-46bb8a0ac86b + - f45079f6-d396-4032-a884-afbd8b152ae6 Retry-After: - '20' Strict-Transport-Security: @@ -200,7 +206,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 9cc00ff1-b707-48f5-974e-12ee5e4e1427 + - 77bb4f32-7679-4907-9cec-8be75519b711 status: code: 202 message: Accepted @@ -216,13 +222,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9cc00ff1-b707-48f5-974e-12ee5e4e1427 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/77bb4f32-7679-4907-9cec-8be75519b711 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-01-29T10:09:41.9556318", - "lastUpdatedTimeUtc": "2026-01-29T10:09:42.7368867", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-22T08:57:16.1159879", + "lastUpdatedTimeUtc": "2026-05-22T08:57:17.1222546", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -232,17 +238,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '132' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:03 GMT + - Fri, 22 May 2026 08:57:36 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9cc00ff1-b707-48f5-974e-12ee5e4e1427/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/77bb4f32-7679-4907-9cec-8be75519b711/result Pragma: - no-cache RequestId: - - 0ba67f54-74f5-46f2-b206-a892b3fc2788 + - df1990f3-2997-4a96-8add-59e075a21eb1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -250,7 +256,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 9cc00ff1-b707-48f5-974e-12ee5e4e1427 + - 77bb4f32-7679-4907-9cec-8be75519b711 status: code: 200 message: OK @@ -266,14 +272,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/9cc00ff1-b707-48f5-974e-12ee5e4e1427/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/77bb4f32-7679-4907-9cec-8be75519b711/result response: body: - string: '{"id": "a3426012-fb71-4779-8ed4-a50a30e73269", "type": "MLExperiment", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "c51eb421-8fe8-45a1-95fd-03cdbfee1765", "type": "MLExperiment", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId @@ -284,11 +289,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jan 2026 10:10:03 GMT + - Fri, 22 May 2026 08:57:37 GMT Pragma: - no-cache RequestId: - - fe87cb37-6d4b-4467-8d21-2b611b2d1a8f + - afef43c9-a850-4e1d-b7d1-639d3c23ef83 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -312,14 +317,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -328,15 +334,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:04 GMT + - Fri, 22 May 2026 08:57:38 GMT Pragma: - no-cache RequestId: - - e4cd70eb-2d7b-47c0-beed-a5e5daa010b0 + - 4d76f002-2895-42f5-9b32-5d8e4a3a883b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -362,14 +368,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "a3426012-fb71-4779-8ed4-a50a30e73269", "type": "MLExperiment", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "c51eb421-8fe8-45a1-95fd-03cdbfee1765", "type": "MLExperiment", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -378,15 +387,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '182' + - '264' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:05 GMT + - Fri, 22 May 2026 08:57:40 GMT Pragma: - no-cache RequestId: - - 4cc1ab4e-fc11-4c3c-9508-a5fb947e89eb + - 83bb908d-b725-454a-900c-98229a56d241 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -412,15 +421,14 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/mlExperiments/a3426012-fb71-4779-8ed4-a50a30e73269 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/mlExperiments/c51eb421-8fe8-45a1-95fd-03cdbfee1765 response: body: - string: '{"id": "a3426012-fb71-4779-8ed4-a50a30e73269", "type": "MLExperiment", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026", "properties": {"mlFlowExperimentId": - "a3426012-fb71-4779-8ed4-a50a30e73269"}}' + string: '{"id": "c51eb421-8fe8-45a1-95fd-03cdbfee1765", "type": "MLExperiment", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "properties": {"mlFlowExperimentId": "c51eb421-8fe8-45a1-95fd-03cdbfee1765"}}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -429,17 +437,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '195' + - '184' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:05 GMT + - Fri, 22 May 2026 08:57:40 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 21f9ab25-0d39-4352-9efd-8e85ae5f7529 + - cc451ab7-037d-4844-97f0-8fb1fceb5d8a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -467,15 +475,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/mlExperiments/a3426012-fb71-4779-8ed4-a50a30e73269 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/mlExperiments/c51eb421-8fe8-45a1-95fd-03cdbfee1765 response: body: - string: '{"id": "a3426012-fb71-4779-8ed4-a50a30e73269", "type": "MLExperiment", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026", "properties": {"mlFlowExperimentId": - "a3426012-fb71-4779-8ed4-a50a30e73269"}}' + string: '{"id": "c51eb421-8fe8-45a1-95fd-03cdbfee1765", "type": "MLExperiment", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "properties": {"mlFlowExperimentId": "c51eb421-8fe8-45a1-95fd-03cdbfee1765"}}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -484,17 +491,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '194' + - '184' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:06 GMT + - Fri, 22 May 2026 08:57:41 GMT ETag: - '""' Pragma: - no-cache RequestId: - - e4649413-6008-4c9d-96b9-642375eb5384 + - acc1083a-f4b1-40fa-bc51-6df24e7eb7b8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -520,14 +527,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -536,15 +544,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:07 GMT + - Fri, 22 May 2026 08:57:42 GMT Pragma: - no-cache RequestId: - - f7f9e4b9-4e2e-4a82-b39d-70ec95894c04 + - 99a9832c-76c3-4d9e-8eb5-663626f27d63 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -570,14 +578,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "a3426012-fb71-4779-8ed4-a50a30e73269", "type": "MLExperiment", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "c51eb421-8fe8-45a1-95fd-03cdbfee1765", "type": "MLExperiment", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -586,15 +597,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '182' + - '264' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:07 GMT + - Fri, 22 May 2026 08:57:43 GMT Pragma: - no-cache RequestId: - - f9188c61-3f13-4d93-b3cb-abfe61c79201 + - ad65eb27-0d53-4787-87df-fb49114fbbf4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -620,14 +631,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "a3426012-fb71-4779-8ed4-a50a30e73269", "type": "MLExperiment", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "c51eb421-8fe8-45a1-95fd-03cdbfee1765", "type": "MLExperiment", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -636,15 +650,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '182' + - '264' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:08 GMT + - Fri, 22 May 2026 08:57:44 GMT Pragma: - no-cache RequestId: - - 8c65b6ff-d2fc-4dc6-83b5-53a6809755a8 + - cf8e52d9-a195-4b7e-b889-39aceee0a770 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -670,14 +684,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -686,15 +701,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:08 GMT + - Fri, 22 May 2026 08:57:45 GMT Pragma: - no-cache RequestId: - - d0ba8458-0ad4-4a15-8ad1-2c35593c5072 + - 90ad7a0e-a52b-4daf-bc0d-60deae3f95e5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -720,14 +735,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "a3426012-fb71-4779-8ed4-a50a30e73269", "type": "MLExperiment", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "c51eb421-8fe8-45a1-95fd-03cdbfee1765", "type": "MLExperiment", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -736,15 +754,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '182' + - '264' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:09 GMT + - Fri, 22 May 2026 08:57:45 GMT Pragma: - no-cache RequestId: - - c71081b8-1fb2-4777-a239-eb9c639fec73 + - dfb23b53-6ba8-4849-84c2-7566592014d5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -770,15 +788,14 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/mlExperiments/a3426012-fb71-4779-8ed4-a50a30e73269 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/mlExperiments/c51eb421-8fe8-45a1-95fd-03cdbfee1765 response: body: - string: '{"id": "a3426012-fb71-4779-8ed4-a50a30e73269", "type": "MLExperiment", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026", "properties": {"mlFlowExperimentId": - "a3426012-fb71-4779-8ed4-a50a30e73269"}}' + string: '{"id": "c51eb421-8fe8-45a1-95fd-03cdbfee1765", "type": "MLExperiment", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "properties": {"mlFlowExperimentId": "c51eb421-8fe8-45a1-95fd-03cdbfee1765"}}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -787,17 +804,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '194' + - '184' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:09 GMT + - Fri, 22 May 2026 08:57:46 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 6de2872a-650b-4de5-a6a8-1fc3dedd5f9d + - 52aaa4d5-5316-48dd-a2b6-d7d616c78ba6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -823,9 +840,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/a3426012-fb71-4779-8ed4-a50a30e73269/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/c51eb421-8fe8-45a1-95fd-03cdbfee1765/connections response: body: string: '{"value": []}' @@ -841,11 +858,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:11 GMT + - Fri, 22 May 2026 08:57:48 GMT Pragma: - no-cache RequestId: - - ae67cd4e-fb9c-4491-b449-d1940a796dd3 + - b9c01fc0-901d-4cd7-83ab-9c678c20ab0a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -871,14 +888,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -887,15 +905,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:11 GMT + - Fri, 22 May 2026 08:57:48 GMT Pragma: - no-cache RequestId: - - 85c146ac-5a13-45ba-ab8e-0d62e2a3439b + - 9f2f6675-4703-4edf-af9e-f11610b9cb63 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -921,14 +939,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "a3426012-fb71-4779-8ed4-a50a30e73269", "type": "MLExperiment", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "c51eb421-8fe8-45a1-95fd-03cdbfee1765", "type": "MLExperiment", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -937,15 +958,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '182' + - '264' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:11 GMT + - Fri, 22 May 2026 08:57:49 GMT Pragma: - no-cache RequestId: - - 87166965-6629-4231-8795-909eea112911 + - de3a9c8c-9c5b-468f-b324-974e0de658e3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -971,15 +992,14 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/mlExperiments/a3426012-fb71-4779-8ed4-a50a30e73269 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/mlExperiments/c51eb421-8fe8-45a1-95fd-03cdbfee1765 response: body: - string: '{"id": "a3426012-fb71-4779-8ed4-a50a30e73269", "type": "MLExperiment", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026", "properties": {"mlFlowExperimentId": - "a3426012-fb71-4779-8ed4-a50a30e73269"}}' + string: '{"id": "c51eb421-8fe8-45a1-95fd-03cdbfee1765", "type": "MLExperiment", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "properties": {"mlFlowExperimentId": "c51eb421-8fe8-45a1-95fd-03cdbfee1765"}}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -988,17 +1008,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '194' + - '184' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:12 GMT + - Fri, 22 May 2026 08:57:50 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 7d37f24b-3a55-4e4a-bbfd-24837be6d6f9 + - 88da588b-8c11-41f2-8290-5605c45f27c8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1026,15 +1046,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/mlExperiments/a3426012-fb71-4779-8ed4-a50a30e73269 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/mlExperiments/c51eb421-8fe8-45a1-95fd-03cdbfee1765 response: body: - string: '{"id": "a3426012-fb71-4779-8ed4-a50a30e73269", "type": "MLExperiment", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026", "properties": {"mlFlowExperimentId": - "a3426012-fb71-4779-8ed4-a50a30e73269"}}' + string: '{"id": "c51eb421-8fe8-45a1-95fd-03cdbfee1765", "type": "MLExperiment", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "properties": {"mlFlowExperimentId": "c51eb421-8fe8-45a1-95fd-03cdbfee1765"}}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1043,17 +1062,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '195' + - '184' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:13 GMT + - Fri, 22 May 2026 08:57:52 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 62a4ae2e-67b1-42ef-887a-5cb9539415cb + - e9163537-ebf0-449b-b47c-b767680d039f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1079,14 +1098,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1095,15 +1115,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:13 GMT + - Fri, 22 May 2026 08:57:52 GMT Pragma: - no-cache RequestId: - - 4b257446-f2f5-4746-880d-7deeb90de18e + - bd3b3034-8037-4fa1-b639-ed645060c4a5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1129,14 +1149,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "a3426012-fb71-4779-8ed4-a50a30e73269", "type": "MLExperiment", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "c51eb421-8fe8-45a1-95fd-03cdbfee1765", "type": "MLExperiment", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1145,15 +1168,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '182' + - '264' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:15 GMT + - Fri, 22 May 2026 08:57:53 GMT Pragma: - no-cache RequestId: - - c7dee038-e009-4482-89c8-ee19c1dca5bd + - 34dab1b7-297b-4cdc-a7cc-d81cb4b25942 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1181,9 +1204,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/a3426012-fb71-4779-8ed4-a50a30e73269 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/c51eb421-8fe8-45a1-95fd-03cdbfee1765 response: body: string: '' @@ -1199,11 +1222,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 29 Jan 2026 10:10:15 GMT + - Fri, 22 May 2026 08:57:53 GMT Pragma: - no-cache RequestId: - - 811dd572-a278-4a9f-a79f-5aaa082dfb95 + - a5b5e563-06c7-457a-a683-81a0cfa6223c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-Map].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-Map].yaml index a0af0a18a..3a8c197b6 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-Map].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-Map].yaml @@ -11,14 +11,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.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": "7f856733-0681-4bf0-b46f-fe3a6240864b", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '1595' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:05:06 GMT + - Fri, 22 May 2026 08:59:33 GMT Pragma: - no-cache RequestId: - - 5b78ad92-955c-4f09-a1d7-0e5cb8194e05 + - d6dfaafd-1733-4d91-968c-536ddeffa2db Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,12 +62,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/7f856733-0681-4bf0-b46f-fe3a6240864b/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -75,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:05:05 GMT + - Fri, 22 May 2026 08:59:34 GMT Pragma: - no-cache RequestId: - - 8d5db2f7-86da-4c25-9adf-ac2690f5d90f + - d1ac6572-86c3-4924-8450-a730fb27d0df Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,12 +113,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/7f856733-0681-4bf0-b46f-fe3a6240864b/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -123,15 +130,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:05:06 GMT + - Fri, 22 May 2026 08:59:34 GMT Pragma: - no-cache RequestId: - - e5948529-1e0b-463c-b1bb-eff48397dd30 + - c5d88467-1334-4fd4-88c5-872a88f18077 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -156,17 +163,16 @@ interactions: - keep-alive Content-Length: - '68' - Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/7f856733-0681-4bf0-b46f-fe3a6240864b/maps + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/maps response: body: - string: '{"id": "451bf42b-9dce-4f23-afa6-b21045b9a7c7", "type": "Map", "displayName": - "fabcli000001", "workspaceId": "7f856733-0681-4bf0-b46f-fe3a6240864b"}' + string: '{"id": "19caf727-532a-4c16-88fb-4676d467cffb", "type": "Map", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -175,17 +181,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '164' + - '153' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:05:09 GMT + - Fri, 22 May 2026 08:59:37 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 7bbd0ebd-3a93-40e1-bfd4-5740b7a70f54 + - e06265a7-1f0f-4236-bd4d-3d0a1aea7e65 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -211,14 +217,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.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": "7f856733-0681-4bf0-b46f-fe3a6240864b", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -227,15 +234,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:05:10 GMT + - Fri, 22 May 2026 08:59:37 GMT Pragma: - no-cache RequestId: - - 7bc36797-574a-4240-873d-e5d3376abaf7 + - 3cb22adf-094b-4cb5-b149-1d5844500b9b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -261,14 +268,17 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/7f856733-0681-4bf0-b46f-fe3a6240864b/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "451bf42b-9dce-4f23-afa6-b21045b9a7c7", "type": "Map", - "displayName": "fabcli000001", "workspaceId": - "7f856733-0681-4bf0-b46f-fe3a6240864b"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "19caf727-532a-4c16-88fb-4676d467cffb", "type": "Map", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -277,15 +287,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '259' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:05:11 GMT + - Fri, 22 May 2026 08:59:38 GMT Pragma: - no-cache RequestId: - - 027107f9-481b-482e-bd72-4deded7a3bfe + - 89b04b5c-6ce1-4ac5-8165-8b182bce3d13 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -311,13 +321,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/7f856733-0681-4bf0-b46f-fe3a6240864b/maps/451bf42b-9dce-4f23-afa6-b21045b9a7c7 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/maps/19caf727-532a-4c16-88fb-4676d467cffb response: body: - string: '{"id": "451bf42b-9dce-4f23-afa6-b21045b9a7c7", "type": "Map", "displayName": - "fabcli000001", "workspaceId": "7f856733-0681-4bf0-b46f-fe3a6240864b"}' + string: '{"id": "19caf727-532a-4c16-88fb-4676d467cffb", "type": "Map", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -326,17 +336,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '164' + - '153' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:05:11 GMT + - Fri, 22 May 2026 08:59:38 GMT ETag: - '""' Pragma: - no-cache RequestId: - - e073e5e8-1d52-4273-bb3b-c7d163c28952 + - 33f301bf-4d5b-4890-a134-74ce607712c8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -364,13 +374,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/7f856733-0681-4bf0-b46f-fe3a6240864b/maps/451bf42b-9dce-4f23-afa6-b21045b9a7c7 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/maps/19caf727-532a-4c16-88fb-4676d467cffb response: body: - string: '{"id": "451bf42b-9dce-4f23-afa6-b21045b9a7c7", "type": "Map", "displayName": - "fabcli000002", "workspaceId": "7f856733-0681-4bf0-b46f-fe3a6240864b"}' + string: '{"id": "19caf727-532a-4c16-88fb-4676d467cffb", "type": "Map", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -379,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '164' + - '153' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:05:12 GMT + - Fri, 22 May 2026 08:59:40 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 7a56bbf0-070e-4a70-8fe8-f14db88eb0fb + - faf6ab29-de4b-430e-b265-3174b6cff305 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -415,14 +425,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.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": "7f856733-0681-4bf0-b46f-fe3a6240864b", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -431,15 +442,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:05:13 GMT + - Fri, 22 May 2026 08:59:40 GMT Pragma: - no-cache RequestId: - - a12ab428-acc9-4403-9fe1-e1fc668af587 + - 6f7845dc-ead0-4098-b108-d0fd88baa2a6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -465,14 +476,17 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/7f856733-0681-4bf0-b46f-fe3a6240864b/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "451bf42b-9dce-4f23-afa6-b21045b9a7c7", "type": "Map", - "displayName": "fabcli000002", "workspaceId": - "7f856733-0681-4bf0-b46f-fe3a6240864b"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "19caf727-532a-4c16-88fb-4676d467cffb", "type": "Map", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -481,15 +495,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '258' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:05:12 GMT + - Fri, 22 May 2026 08:59:41 GMT Pragma: - no-cache RequestId: - - 6f6e3c68-ccc6-436c-885d-8ecf81411770 + - af93a6d5-b62b-4f84-891a-b7e50b716198 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -515,14 +529,17 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/7f856733-0681-4bf0-b46f-fe3a6240864b/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "451bf42b-9dce-4f23-afa6-b21045b9a7c7", "type": "Map", - "displayName": "fabcli000002", "workspaceId": - "7f856733-0681-4bf0-b46f-fe3a6240864b"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "19caf727-532a-4c16-88fb-4676d467cffb", "type": "Map", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -531,15 +548,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '258' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:05:14 GMT + - Fri, 22 May 2026 08:59:42 GMT Pragma: - no-cache RequestId: - - 8ea226a2-dedf-4d80-8eff-e11ce49d5ff9 + - 0449f113-1f7f-4474-9246-889656f38e7d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -565,14 +582,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.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": "7f856733-0681-4bf0-b46f-fe3a6240864b", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -581,15 +599,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:05:14 GMT + - Fri, 22 May 2026 08:59:42 GMT Pragma: - no-cache RequestId: - - 682a975c-7c40-4ba6-b0a7-ab61734821b4 + - b2adf285-11c0-4ef8-a640-00285482bfad Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -615,14 +633,17 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/7f856733-0681-4bf0-b46f-fe3a6240864b/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "451bf42b-9dce-4f23-afa6-b21045b9a7c7", "type": "Map", - "displayName": "fabcli000002", "workspaceId": - "7f856733-0681-4bf0-b46f-fe3a6240864b"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "19caf727-532a-4c16-88fb-4676d467cffb", "type": "Map", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -631,15 +652,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '258' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:05:16 GMT + - Fri, 22 May 2026 08:59:43 GMT Pragma: - no-cache RequestId: - - 607374a6-8c36-45b7-8bda-687c55585711 + - ced00937-bce1-4358-afe6-5909de4c8cca Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -665,13 +686,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/7f856733-0681-4bf0-b46f-fe3a6240864b/maps/451bf42b-9dce-4f23-afa6-b21045b9a7c7 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/maps/19caf727-532a-4c16-88fb-4676d467cffb response: body: - string: '{"id": "451bf42b-9dce-4f23-afa6-b21045b9a7c7", "type": "Map", "displayName": - "fabcli000002", "workspaceId": "7f856733-0681-4bf0-b46f-fe3a6240864b"}' + string: '{"id": "19caf727-532a-4c16-88fb-4676d467cffb", "type": "Map", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -680,17 +701,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '164' + - '153' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:05:16 GMT + - Fri, 22 May 2026 08:59:44 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 15a52c40-5081-409d-9743-49203b577ce1 + - 0289dafb-24b5-4187-a552-b0e29df99b86 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -716,9 +737,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/7f856733-0681-4bf0-b46f-fe3a6240864b/items/451bf42b-9dce-4f23-afa6-b21045b9a7c7/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/19caf727-532a-4c16-88fb-4676d467cffb/connections response: body: string: '{"value": []}' @@ -734,11 +755,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:05:16 GMT + - Fri, 22 May 2026 08:59:44 GMT Pragma: - no-cache RequestId: - - 93393949-c806-4d4f-b420-7136406d315f + - 8b6540c7-b59e-484f-96a7-5a2fa1abdb7a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -764,14 +785,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.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": "7f856733-0681-4bf0-b46f-fe3a6240864b", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -780,15 +802,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:05:17 GMT + - Fri, 22 May 2026 08:59:45 GMT Pragma: - no-cache RequestId: - - f2da9789-4656-4aee-8333-82e558e32357 + - a00f5793-9998-41ea-b2e5-9d5a0aaccfdf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -814,14 +836,17 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/7f856733-0681-4bf0-b46f-fe3a6240864b/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "451bf42b-9dce-4f23-afa6-b21045b9a7c7", "type": "Map", - "displayName": "fabcli000002", "workspaceId": - "7f856733-0681-4bf0-b46f-fe3a6240864b"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "19caf727-532a-4c16-88fb-4676d467cffb", "type": "Map", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -830,15 +855,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '258' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:05:17 GMT + - Fri, 22 May 2026 08:59:45 GMT Pragma: - no-cache RequestId: - - 0efe6a1d-5704-4d0d-a9ad-0051203438b5 + - 3050104c-c080-42af-ad63-fbf7cf40cac7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -864,13 +889,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/7f856733-0681-4bf0-b46f-fe3a6240864b/maps/451bf42b-9dce-4f23-afa6-b21045b9a7c7 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/maps/19caf727-532a-4c16-88fb-4676d467cffb response: body: - string: '{"id": "451bf42b-9dce-4f23-afa6-b21045b9a7c7", "type": "Map", "displayName": - "fabcli000002", "workspaceId": "7f856733-0681-4bf0-b46f-fe3a6240864b"}' + string: '{"id": "19caf727-532a-4c16-88fb-4676d467cffb", "type": "Map", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -879,17 +904,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '164' + - '153' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:05:18 GMT + - Fri, 22 May 2026 08:59:46 GMT ETag: - '""' Pragma: - no-cache RequestId: - - c0605cff-f889-4430-ae8a-0932f3c36b35 + - f18dcb11-7a25-4670-ac88-35b61f87ecf8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -917,13 +942,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/7f856733-0681-4bf0-b46f-fe3a6240864b/maps/451bf42b-9dce-4f23-afa6-b21045b9a7c7 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/maps/19caf727-532a-4c16-88fb-4676d467cffb response: body: - string: '{"id": "451bf42b-9dce-4f23-afa6-b21045b9a7c7", "type": "Map", "displayName": - "fabcli000001", "workspaceId": "7f856733-0681-4bf0-b46f-fe3a6240864b"}' + string: '{"id": "19caf727-532a-4c16-88fb-4676d467cffb", "type": "Map", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -932,17 +957,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '164' + - '153' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:05:18 GMT + - Fri, 22 May 2026 08:59:49 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 9de048ff-bbac-4f32-ae06-57821088809e + - fcd185ec-390e-479d-a07d-fea2c02ec61e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -968,14 +993,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.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": "7f856733-0681-4bf0-b46f-fe3a6240864b", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -984,15 +1010,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '1595' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:05:19 GMT + - Fri, 22 May 2026 08:59:48 GMT Pragma: - no-cache RequestId: - - 7bc9bfd5-aa3b-420d-b53d-e861c4b39ef1 + - 4a41b9be-f842-42ff-8f50-76d2e01506e1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1018,14 +1044,17 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/7f856733-0681-4bf0-b46f-fe3a6240864b/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "451bf42b-9dce-4f23-afa6-b21045b9a7c7", "type": "Map", - "displayName": "fabcli000001", "workspaceId": - "7f856733-0681-4bf0-b46f-fe3a6240864b"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "19caf727-532a-4c16-88fb-4676d467cffb", "type": "Map", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1034,15 +1063,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '259' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 19 Mar 2026 09:05:19 GMT + - Fri, 22 May 2026 08:59:50 GMT Pragma: - no-cache RequestId: - - f8ae0bdc-7e71-42d3-aa80-eabdcace13ac + - 085687fc-9aa1-4459-9c10-81b4816f9f4f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1070,9 +1099,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.4.0 + - ms-fabric-cli-test/1.6.1 method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/7f856733-0681-4bf0-b46f-fe3a6240864b/items/451bf42b-9dce-4f23-afa6-b21045b9a7c7 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/19caf727-532a-4c16-88fb-4676d467cffb response: body: string: '' @@ -1088,11 +1117,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 19 Mar 2026 09:05:20 GMT + - Fri, 22 May 2026 08:59:50 GMT Pragma: - no-cache RequestId: - - 0bf214c4-1a04-4b1c-8c22-f6d17d9bf5cb + - e2e1ef32-ccfe-45ab-8ff7-701c746b9fb9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-Notebook].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-Notebook].yaml index 0d7d22a4b..01e182c88 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-Notebook].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-Notebook].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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:16 GMT + - Fri, 22 May 2026 08:57:55 GMT Pragma: - no-cache RequestId: - - 7d758bc9-ab16-4b66-85ac-7c27c7416c6c + - bb3b9d50-770a-44e6-9d33-23e95bbea725 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,12 +62,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -75,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:17 GMT + - Fri, 22 May 2026 08:57:55 GMT Pragma: - no-cache RequestId: - - 524afe56-5176-4059-9b0f-67aa6de0019c + - 3847edac-511b-4c03-8f60-878c9a694024 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,12 +113,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -123,15 +130,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:18 GMT + - Fri, 22 May 2026 08:57:56 GMT Pragma: - no-cache RequestId: - - 9d105c5c-1737-438e-8336-10aeec2ec89d + - 789b8ba1-56d7-4a5a-ad87-2655838dcc0c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -146,7 +153,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 +165,12 @@ interactions: - keep-alive Content-Length: - '731' - 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/fa27f57f-70d6-4009-872b-f7e7149c5026/notebooks + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/notebooks response: body: string: 'null' @@ -178,15 +186,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:19 GMT + - Fri, 22 May 2026 08:57:58 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/70440dde-ea64-4e07-9bf2-725052d8df90 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6fa573ef-36e4-45ff-bb70-8991c472e7a6 Pragma: - no-cache RequestId: - - 56d90b7b-28e9-4ecb-b098-a45cecb47169 + - b4b80df4-b055-44ea-8261-83c51c3e29cd Retry-After: - '20' Strict-Transport-Security: @@ -200,7 +208,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 70440dde-ea64-4e07-9bf2-725052d8df90 + - 6fa573ef-36e4-45ff-bb70-8991c472e7a6 status: code: 202 message: Accepted @@ -216,13 +224,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/70440dde-ea64-4e07-9bf2-725052d8df90 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6fa573ef-36e4-45ff-bb70-8991c472e7a6 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-01-29T10:10:19.6724575", - "lastUpdatedTimeUtc": "2026-01-29T10:10:20.8289538", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-22T08:57:58.1235307", + "lastUpdatedTimeUtc": "2026-05-22T08:57:59.2736203", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -236,13 +244,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:40 GMT + - Fri, 22 May 2026 08:58:18 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/70440dde-ea64-4e07-9bf2-725052d8df90/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6fa573ef-36e4-45ff-bb70-8991c472e7a6/result Pragma: - no-cache RequestId: - - d6e71297-e7e9-4bce-9768-846a7a71e001 + - b6169724-c4bc-4ddc-8957-63e85455f33a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -250,7 +258,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 70440dde-ea64-4e07-9bf2-725052d8df90 + - 6fa573ef-36e4-45ff-bb70-8991c472e7a6 status: code: 200 message: OK @@ -266,14 +274,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/70440dde-ea64-4e07-9bf2-725052d8df90/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/6fa573ef-36e4-45ff-bb70-8991c472e7a6/result response: body: - string: '{"id": "5491ffc0-6e8b-4a53-902f-e931abd57f23", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "4e494443-d873-4f59-9bcb-b1bd161ba52f", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId @@ -284,11 +291,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 29 Jan 2026 10:10:41 GMT + - Fri, 22 May 2026 08:58:19 GMT Pragma: - no-cache RequestId: - - 8fa632ae-6643-4305-8494-bce1166ee8b1 + - 9cc3b18d-54fa-47de-a8b2-a5440da327c6 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -312,14 +319,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -328,15 +336,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:41 GMT + - Fri, 22 May 2026 08:58:20 GMT Pragma: - no-cache RequestId: - - bd9aa280-1d89-47db-beb7-84a50c9e5342 + - afd9853f-7396-4eae-a1e2-867adb8ec070 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -362,14 +370,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "5491ffc0-6e8b-4a53-902f-e931abd57f23", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "4e494443-d873-4f59-9bcb-b1bd161ba52f", "type": "Notebook", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -378,15 +389,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '177' + - '260' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:42 GMT + - Fri, 22 May 2026 08:58:21 GMT Pragma: - no-cache RequestId: - - 20a6f4ee-3484-4fe4-80c9-45d3d943c12a + - b287a773-7871-49a6-822c-d4ee2346e74d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -412,14 +423,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/fa27f57f-70d6-4009-872b-f7e7149c5026/notebooks/5491ffc0-6e8b-4a53-902f-e931abd57f23 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/notebooks/4e494443-d873-4f59-9bcb-b1bd161ba52f response: body: - string: '{"id": "5491ffc0-6e8b-4a53-902f-e931abd57f23", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "4e494443-d873-4f59-9bcb-b1bd161ba52f", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -428,17 +438,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:43 GMT + - Fri, 22 May 2026 08:58:22 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 266953d4-d467-4677-a9d2-46d2f677714b + - 81677f1a-7dc6-42c3-bb0d-fa5ada0cabff Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -466,14 +476,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/notebooks/5491ffc0-6e8b-4a53-902f-e931abd57f23 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/notebooks/4e494443-d873-4f59-9bcb-b1bd161ba52f response: body: - string: '{"id": "5491ffc0-6e8b-4a53-902f-e931abd57f23", "type": "Notebook", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "4e494443-d873-4f59-9bcb-b1bd161ba52f", "type": "Notebook", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -482,17 +491,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '154' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:44 GMT + - Fri, 22 May 2026 08:58:23 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 5c88da68-0982-42c9-87c8-b66d2673fb67 + - 671dbcaf-6221-4c94-af59-e56bafb6c09f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -518,14 +527,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -534,15 +544,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:44 GMT + - Fri, 22 May 2026 08:58:24 GMT Pragma: - no-cache RequestId: - - 24c9385e-154a-4508-8ea5-034108492cdd + - b3687beb-1c9d-435f-90a5-bc5ad0502aa8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -568,14 +578,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "5491ffc0-6e8b-4a53-902f-e931abd57f23", "type": "Notebook", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "4e494443-d873-4f59-9bcb-b1bd161ba52f", "type": "Notebook", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -584,15 +597,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '259' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:45 GMT + - Fri, 22 May 2026 08:58:25 GMT Pragma: - no-cache RequestId: - - 617a397d-10f3-4b1e-bbff-e2af775c4aef + - fa9f19e1-ac08-466d-94f2-df517e034434 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -618,14 +631,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "5491ffc0-6e8b-4a53-902f-e931abd57f23", "type": "Notebook", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "4e494443-d873-4f59-9bcb-b1bd161ba52f", "type": "Notebook", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -634,15 +650,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '259' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:46 GMT + - Fri, 22 May 2026 08:58:25 GMT Pragma: - no-cache RequestId: - - 71ad42e8-d3dc-4bdd-80d3-15d79cf09b11 + - 8511f6d0-6faa-4133-9fdb-15bca5158b03 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -668,14 +684,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -684,15 +701,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:47 GMT + - Fri, 22 May 2026 08:58:26 GMT Pragma: - no-cache RequestId: - - 68f23f91-e06e-4d2a-b736-c1d879b6e6fd + - f0418c09-d6ad-4e73-b6d5-8ea4571df307 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -718,14 +735,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "5491ffc0-6e8b-4a53-902f-e931abd57f23", "type": "Notebook", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "4e494443-d873-4f59-9bcb-b1bd161ba52f", "type": "Notebook", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -734,15 +754,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '259' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:48 GMT + - Fri, 22 May 2026 08:58:27 GMT Pragma: - no-cache RequestId: - - fec284ef-3414-47db-ac6e-8d92653e49cf + - b314c455-e8ea-4c2c-abef-1f21bb1a7a67 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -768,14 +788,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/fa27f57f-70d6-4009-872b-f7e7149c5026/notebooks/5491ffc0-6e8b-4a53-902f-e931abd57f23 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/notebooks/4e494443-d873-4f59-9bcb-b1bd161ba52f response: body: - string: '{"id": "5491ffc0-6e8b-4a53-902f-e931abd57f23", "type": "Notebook", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "4e494443-d873-4f59-9bcb-b1bd161ba52f", "type": "Notebook", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -784,17 +803,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '154' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:49 GMT + - Fri, 22 May 2026 08:58:28 GMT ETag: - '""' Pragma: - no-cache RequestId: - - cdf2919a-974e-4e75-8436-43b1a8dfbdef + - 974e3d16-8deb-42cb-9dd8-b0e884bfce91 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -820,9 +839,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/5491ffc0-6e8b-4a53-902f-e931abd57f23/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/4e494443-d873-4f59-9bcb-b1bd161ba52f/connections response: body: string: '{"value": []}' @@ -838,11 +857,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:50 GMT + - Fri, 22 May 2026 08:58:29 GMT Pragma: - no-cache RequestId: - - 6be63c62-62ad-408e-9bcc-6e967c65635c + - 86e0bb7c-65d0-4486-b119-510eca78f637 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -868,9 +887,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/5491ffc0-6e8b-4a53-902f-e931abd57f23/jobs/RunNotebook/schedules + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/4e494443-d873-4f59-9bcb-b1bd161ba52f/jobs/RunNotebook/schedules response: body: string: '{"value": []}' @@ -886,11 +905,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:50 GMT + - Fri, 22 May 2026 08:58:29 GMT Pragma: - no-cache RequestId: - - f7ced02c-d93b-46ba-9a76-4af3d3ffecd0 + - 5eca69f0-f0b0-4957-9285-6d3504be8a6b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -916,14 +935,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -932,15 +952,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:52 GMT + - Fri, 22 May 2026 08:58:30 GMT Pragma: - no-cache RequestId: - - e3095e12-27c7-4e8a-887f-9e6e12119334 + - 11eacc26-e276-483c-b871-0b1fd7dc7c0e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -966,14 +986,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "5491ffc0-6e8b-4a53-902f-e931abd57f23", "type": "Notebook", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "4e494443-d873-4f59-9bcb-b1bd161ba52f", "type": "Notebook", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -982,15 +1005,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '259' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:52 GMT + - Fri, 22 May 2026 08:58:30 GMT Pragma: - no-cache RequestId: - - fcc69a5e-15e2-42a6-befd-8f4d0a2c53a7 + - 45304ece-f772-45d2-bf21-9d19e2523680 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1016,14 +1039,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/fa27f57f-70d6-4009-872b-f7e7149c5026/notebooks/5491ffc0-6e8b-4a53-902f-e931abd57f23 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/notebooks/4e494443-d873-4f59-9bcb-b1bd161ba52f response: body: - string: '{"id": "5491ffc0-6e8b-4a53-902f-e931abd57f23", "type": "Notebook", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "4e494443-d873-4f59-9bcb-b1bd161ba52f", "type": "Notebook", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1032,17 +1054,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '154' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:54 GMT + - Fri, 22 May 2026 08:58:32 GMT ETag: - '""' Pragma: - no-cache RequestId: - - fe7a54fa-4b0f-4e36-bb13-6fa3ed926252 + - b4f2c4f5-d30b-489d-aa80-abf0581c5e3a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1070,14 +1092,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/notebooks/5491ffc0-6e8b-4a53-902f-e931abd57f23 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/notebooks/4e494443-d873-4f59-9bcb-b1bd161ba52f response: body: - string: '{"id": "5491ffc0-6e8b-4a53-902f-e931abd57f23", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "4e494443-d873-4f59-9bcb-b1bd161ba52f", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1086,17 +1107,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:55 GMT + - Fri, 22 May 2026 08:58:32 GMT ETag: - '""' Pragma: - no-cache RequestId: - - b57ef82d-dc42-44c9-9745-801a1b8034d1 + - f112a744-b58f-4e90-987d-512e4c19b1c9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1122,14 +1143,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1138,15 +1160,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:55 GMT + - Fri, 22 May 2026 08:58:34 GMT Pragma: - no-cache RequestId: - - 68a9ebd8-a025-4595-84f3-67741b6c6138 + - 20282ef3-53f5-4fd4-af99-2efc4b591185 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1172,14 +1194,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "5491ffc0-6e8b-4a53-902f-e931abd57f23", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "4e494443-d873-4f59-9bcb-b1bd161ba52f", "type": "Notebook", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1188,15 +1213,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '177' + - '260' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:57 GMT + - Fri, 22 May 2026 08:58:34 GMT Pragma: - no-cache RequestId: - - 95488c66-6f70-4e5b-8029-105ef8a15726 + - 2ee732c5-861d-40de-9194-cd59867efe31 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1224,9 +1249,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/5491ffc0-6e8b-4a53-902f-e931abd57f23 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/4e494443-d873-4f59-9bcb-b1bd161ba52f response: body: string: '' @@ -1242,11 +1267,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 29 Jan 2026 10:10:57 GMT + - Fri, 22 May 2026 08:58:36 GMT Pragma: - no-cache RequestId: - - 83bc5e54-8840-4513-8f0e-72b81f0e48df + - d423363c-1180-42e7-a8ae-f60a075bb75f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-Reflex].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-Reflex].yaml index 59746c209..b7eb024df 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-Reflex].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-Reflex].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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:58 GMT + - Fri, 22 May 2026 08:58:36 GMT Pragma: - no-cache RequestId: - - 345104a3-7ce2-40f5-91f7-db55769cd0ee + - 9cd15971-32f3-4314-8c31-5bd9554e8a0c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,12 +62,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -75,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:59 GMT + - Fri, 22 May 2026 08:58:37 GMT Pragma: - no-cache RequestId: - - 4faf8716-6234-40a2-b23d-8eccc020235d + - fa9844a5-c007-492d-bf38-2caf5360b3f1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,12 +113,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -123,15 +130,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:10:59 GMT + - Fri, 22 May 2026 08:58:37 GMT Pragma: - no-cache RequestId: - - 2be2175d-c382-4cef-b39b-5b02054cdab9 + - 7bce5ace-0bb8-4c9c-b33a-f24b80f877f5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -156,17 +163,16 @@ interactions: - keep-alive Content-Length: - '71' - 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/fa27f57f-70d6-4009-872b-f7e7149c5026/reflexes + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/reflexes response: body: - string: '{"id": "c40eb4ba-d8d4-4322-9092-64a9a7ede1f4", "type": "Reflex", "displayName": - "fabcli000001", "workspaceId": "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "7a4cbc33-93e1-4c68-9dbb-2cd7c59a5b87", "type": "Reflex", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -175,17 +181,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:02 GMT + - Fri, 22 May 2026 08:58:40 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 25d5b1e3-dbba-4ebc-8d03-af734397d4d5 + - f6c4bc84-206f-43cd-b001-b247387e81c4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -211,14 +217,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -227,15 +234,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:03 GMT + - Fri, 22 May 2026 08:58:41 GMT Pragma: - no-cache RequestId: - - e13ab1f3-7fdf-4d8d-bdf4-1059dcf37ac2 + - f3d08493-c977-41e8-ae10-f3a71c1e63b0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -261,14 +268,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "c40eb4ba-d8d4-4322-9092-64a9a7ede1f4", "type": "Reflex", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "7a4cbc33-93e1-4c68-9dbb-2cd7c59a5b87", "type": "Reflex", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -277,15 +287,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '175' + - '257' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:04 GMT + - Fri, 22 May 2026 08:58:42 GMT Pragma: - no-cache RequestId: - - 785720c4-6d93-4eb2-aaa3-f4d7bddd3e68 + - 19e189ee-cdd4-40cb-9979-99d129cde40f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -311,13 +321,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/fa27f57f-70d6-4009-872b-f7e7149c5026/reflexes/c40eb4ba-d8d4-4322-9092-64a9a7ede1f4 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/reflexes/7a4cbc33-93e1-4c68-9dbb-2cd7c59a5b87 response: body: - string: '{"id": "c40eb4ba-d8d4-4322-9092-64a9a7ede1f4", "type": "Reflex", "displayName": - "fabcli000001", "workspaceId": "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "7a4cbc33-93e1-4c68-9dbb-2cd7c59a5b87", "type": "Reflex", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -326,17 +336,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:05 GMT + - Fri, 22 May 2026 08:58:43 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 1ed64c11-28b8-4f08-a589-f425730359f2 + - 2152e2cc-2794-40fa-8192-15fa499dd100 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -364,13 +374,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/reflexes/c40eb4ba-d8d4-4322-9092-64a9a7ede1f4 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/reflexes/7a4cbc33-93e1-4c68-9dbb-2cd7c59a5b87 response: body: - string: '{"id": "c40eb4ba-d8d4-4322-9092-64a9a7ede1f4", "type": "Reflex", "displayName": - "fabcli000002", "workspaceId": "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "7a4cbc33-93e1-4c68-9dbb-2cd7c59a5b87", "type": "Reflex", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -379,17 +389,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:06 GMT + - Fri, 22 May 2026 08:58:45 GMT ETag: - '""' Pragma: - no-cache RequestId: - - f8e61b08-ddc8-44be-bef4-9198b3ea4e52 + - 743d91ca-14bd-4c20-8f0d-ee4405f1ce27 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -415,14 +425,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -431,15 +442,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:08 GMT + - Fri, 22 May 2026 08:58:46 GMT Pragma: - no-cache RequestId: - - 0de6f88d-e23c-4091-ba41-ef653b03bd40 + - 6944f50d-eb53-4808-a9ed-9e776a604add Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -465,14 +476,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "c40eb4ba-d8d4-4322-9092-64a9a7ede1f4", "type": "Reflex", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "7a4cbc33-93e1-4c68-9dbb-2cd7c59a5b87", "type": "Reflex", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -481,15 +495,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '257' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:08 GMT + - Fri, 22 May 2026 08:58:47 GMT Pragma: - no-cache RequestId: - - cc01334f-6969-4919-aef5-464113efeb4e + - d85389f7-3c1e-48d4-90e8-03a704ebaff2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -515,14 +529,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "c40eb4ba-d8d4-4322-9092-64a9a7ede1f4", "type": "Reflex", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "7a4cbc33-93e1-4c68-9dbb-2cd7c59a5b87", "type": "Reflex", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -531,15 +548,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '257' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:10 GMT + - Fri, 22 May 2026 08:58:47 GMT Pragma: - no-cache RequestId: - - 8add0427-1438-4bae-bfc7-538e692db57b + - b0ac48fa-06c5-404c-8faa-bb44b9d3ccbe Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -565,14 +582,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -581,15 +599,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:10 GMT + - Fri, 22 May 2026 08:58:48 GMT Pragma: - no-cache RequestId: - - 70fae218-ec31-4766-980e-fe092bb69b14 + - 067deaf2-c687-4e92-b975-8ee2169e6bfc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -615,14 +633,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "c40eb4ba-d8d4-4322-9092-64a9a7ede1f4", "type": "Reflex", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "7a4cbc33-93e1-4c68-9dbb-2cd7c59a5b87", "type": "Reflex", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -631,15 +652,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '257' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:11 GMT + - Fri, 22 May 2026 08:58:50 GMT Pragma: - no-cache RequestId: - - 2a3b2040-68f4-42ae-a8e8-e3c41f2d39f5 + - 5d275b4d-3456-44a1-bb7a-0f1238956bbb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -665,13 +686,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/fa27f57f-70d6-4009-872b-f7e7149c5026/reflexes/c40eb4ba-d8d4-4322-9092-64a9a7ede1f4 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/reflexes/7a4cbc33-93e1-4c68-9dbb-2cd7c59a5b87 response: body: - string: '{"id": "c40eb4ba-d8d4-4322-9092-64a9a7ede1f4", "type": "Reflex", "displayName": - "fabcli000002", "workspaceId": "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "7a4cbc33-93e1-4c68-9dbb-2cd7c59a5b87", "type": "Reflex", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -680,17 +701,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:12 GMT + - Fri, 22 May 2026 08:58:50 GMT ETag: - '""' Pragma: - no-cache RequestId: - - b459e729-e1da-4667-84ed-5fdc2a24cd91 + - d537727c-528a-4011-a949-8f1f8464b726 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -716,9 +737,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/c40eb4ba-d8d4-4322-9092-64a9a7ede1f4/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/7a4cbc33-93e1-4c68-9dbb-2cd7c59a5b87/connections response: body: string: '{"value": []}' @@ -734,11 +755,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:13 GMT + - Fri, 22 May 2026 08:58:51 GMT Pragma: - no-cache RequestId: - - 21d7b443-2d80-4521-ab59-639fc48d79ab + - 9c51f6a7-2b8e-424a-a974-31a19a17de19 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -764,14 +785,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -780,15 +802,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:14 GMT + - Fri, 22 May 2026 08:58:52 GMT Pragma: - no-cache RequestId: - - 62c2dd19-9932-4159-81ce-28e3eddd5f03 + - 188ad4c5-3501-4c4d-9b71-eaedba642b94 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -814,14 +836,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "c40eb4ba-d8d4-4322-9092-64a9a7ede1f4", "type": "Reflex", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "7a4cbc33-93e1-4c68-9dbb-2cd7c59a5b87", "type": "Reflex", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -830,15 +855,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '257' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:15 GMT + - Fri, 22 May 2026 08:58:53 GMT Pragma: - no-cache RequestId: - - c109f28d-9068-471e-9e6a-2f2bbf2dbc3e + - 527eb15b-9d5e-4484-bfbc-a06b4cb1323d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -864,13 +889,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/fa27f57f-70d6-4009-872b-f7e7149c5026/reflexes/c40eb4ba-d8d4-4322-9092-64a9a7ede1f4 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/reflexes/7a4cbc33-93e1-4c68-9dbb-2cd7c59a5b87 response: body: - string: '{"id": "c40eb4ba-d8d4-4322-9092-64a9a7ede1f4", "type": "Reflex", "displayName": - "fabcli000002", "workspaceId": "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "7a4cbc33-93e1-4c68-9dbb-2cd7c59a5b87", "type": "Reflex", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -879,17 +904,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:15 GMT + - Fri, 22 May 2026 08:58:54 GMT ETag: - '""' Pragma: - no-cache RequestId: - - b2db2e25-b417-4355-bf34-dcb05474d2c6 + - 51eb00d6-34d7-4dd0-b757-87329612dbcb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -917,13 +942,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/reflexes/c40eb4ba-d8d4-4322-9092-64a9a7ede1f4 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/reflexes/7a4cbc33-93e1-4c68-9dbb-2cd7c59a5b87 response: body: - string: '{"id": "c40eb4ba-d8d4-4322-9092-64a9a7ede1f4", "type": "Reflex", "displayName": - "fabcli000001", "workspaceId": "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "7a4cbc33-93e1-4c68-9dbb-2cd7c59a5b87", "type": "Reflex", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -932,17 +957,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:17 GMT + - Fri, 22 May 2026 08:58:55 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 5690bf29-c5b0-4270-b164-d8058ac08afd + - 3cf07835-2223-4a2d-910a-56183e4a97fe Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -968,14 +993,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -984,15 +1010,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:18 GMT + - Fri, 22 May 2026 08:58:56 GMT Pragma: - no-cache RequestId: - - cf0a260d-c79b-4757-a281-4ffd23c201eb + - 68fc86bc-8e9a-4e6b-abc3-73d24c6d89a1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1018,14 +1044,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "c40eb4ba-d8d4-4322-9092-64a9a7ede1f4", "type": "Reflex", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "7a4cbc33-93e1-4c68-9dbb-2cd7c59a5b87", "type": "Reflex", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1034,15 +1063,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '175' + - '257' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:18 GMT + - Fri, 22 May 2026 08:58:57 GMT Pragma: - no-cache RequestId: - - d2e3d3dc-e22e-484b-a510-573838157167 + - 5e1c87b1-ad93-4406-963f-65459b9abc1f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1070,9 +1099,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/c40eb4ba-d8d4-4322-9092-64a9a7ede1f4 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/7a4cbc33-93e1-4c68-9dbb-2cd7c59a5b87 response: body: string: '' @@ -1088,11 +1117,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 29 Jan 2026 10:11:18 GMT + - Fri, 22 May 2026 08:58:58 GMT Pragma: - no-cache RequestId: - - 20966308-0601-4967-89d6-261f8f0d0754 + - 57eb5e95-1a6f-436a-8261-a98af10617da Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-SparkJobDefinition].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-SparkJobDefinition].yaml index e7a29a246..f31c5d8eb 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-SparkJobDefinition].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-SparkJobDefinition].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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:20 GMT + - Fri, 22 May 2026 08:58:59 GMT Pragma: - no-cache RequestId: - - dfe03e74-d288-4427-901a-321d7f55dc95 + - 1555dcb1-6e0a-4e01-80d5-c1b4f561fc8e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,12 +62,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -75,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:20 GMT + - Fri, 22 May 2026 08:59:00 GMT Pragma: - no-cache RequestId: - - c5915048-cbd5-46ab-8af3-bdfa3aeb3711 + - 95100df3-3129-47d3-b0d5-2cad0bafeaad Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,12 +113,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -123,15 +130,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:20 GMT + - Fri, 22 May 2026 08:59:02 GMT Pragma: - no-cache RequestId: - - 99beb5f7-2fa2-44a4-a293-6c539e53754a + - 131653b8-cb65-480a-bc57-13192796f566 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -146,7 +153,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 +164,16 @@ interactions: - keep-alive Content-Length: - '83' - 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/fa27f57f-70d6-4009-872b-f7e7149c5026/sparkJobDefinitions + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/sparkJobDefinitions response: body: - string: '{"id": "227b5df2-7c10-4163-9a15-3d67b4bc1157", "type": "SparkJobDefinition", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}' + string: '{"id": "7384b709-b687-4559-a2d7-f7908d8deb61", "type": "SparkJobDefinition", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +182,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '171' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:22 GMT + - Fri, 22 May 2026 08:59:02 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 0a3e997b-95b4-4206-86ca-b1c485614788 + - 03a92455-6660-4c7f-a269-d713bccba21d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -212,14 +218,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -228,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:22 GMT + - Fri, 22 May 2026 08:59:03 GMT Pragma: - no-cache RequestId: - - 3d06f0e4-51fd-4e3c-8ba4-cd21cab95d0e + - ec6ac34e-71fd-4126-bc0d-642e03f4ef4b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -262,14 +269,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "227b5df2-7c10-4163-9a15-3d67b4bc1157", "type": "SparkJobDefinition", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "7384b709-b687-4559-a2d7-f7908d8deb61", "type": "SparkJobDefinition", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '269' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:24 GMT + - Fri, 22 May 2026 08:59:04 GMT Pragma: - no-cache RequestId: - - fff64e63-7283-4a81-abbd-21c4a4cb5d48 + - b05c81d6-3654-4e75-b313-6db44ebeac6e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -312,15 +322,14 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/sparkJobDefinitions/227b5df2-7c10-4163-9a15-3d67b4bc1157 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/sparkJobDefinitions/7384b709-b687-4559-a2d7-f7908d8deb61 response: body: - string: '{"id": "227b5df2-7c10-4163-9a15-3d67b4bc1157", "type": "SparkJobDefinition", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026", "properties": {"oneLakeRootPath": - "https://onelake.dfs.fabric.microsoft.com/fa27f57f-70d6-4009-872b-f7e7149c5026/227b5df2-7c10-4163-9a15-3d67b4bc1157"}}' + string: '{"id": "7384b709-b687-4559-a2d7-f7908d8deb61", "type": "SparkJobDefinition", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "properties": {"oneLakeRootPath": "https://onelake.dfs.fabric.microsoft.com/4f3c92ee-023c-48a7-b08b-1c5e91be6534/7384b709-b687-4559-a2d7-f7908d8deb61"}}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -329,17 +338,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '234' + - '227' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:24 GMT + - Fri, 22 May 2026 08:59:05 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 233b2cc4-30e8-4b4e-a694-b38770c00f3f + - 6922ebe3-790c-4106-8787-673fa948f71b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -367,15 +376,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/sparkJobDefinitions/227b5df2-7c10-4163-9a15-3d67b4bc1157 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/sparkJobDefinitions/7384b709-b687-4559-a2d7-f7908d8deb61 response: body: - string: '{"id": "227b5df2-7c10-4163-9a15-3d67b4bc1157", "type": "SparkJobDefinition", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026", "properties": {"oneLakeRootPath": - "https://onelake.dfs.fabric.microsoft.com/fa27f57f-70d6-4009-872b-f7e7149c5026/227b5df2-7c10-4163-9a15-3d67b4bc1157"}}' + string: '{"id": "7384b709-b687-4559-a2d7-f7908d8deb61", "type": "SparkJobDefinition", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "properties": {"oneLakeRootPath": "https://onelake.dfs.fabric.microsoft.com/4f3c92ee-023c-48a7-b08b-1c5e91be6534/7384b709-b687-4559-a2d7-f7908d8deb61"}}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -384,17 +392,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '236' + - '226' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:25 GMT + - Fri, 22 May 2026 08:59:06 GMT ETag: - '""' Pragma: - no-cache RequestId: - - a625a1ad-063e-4281-aea7-61d92aeb69f9 + - da437107-8689-441d-ae37-4f1c261b9b33 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -420,14 +428,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -436,15 +445,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:26 GMT + - Fri, 22 May 2026 08:59:07 GMT Pragma: - no-cache RequestId: - - 725b5f7c-9e65-4313-9579-ae971d842258 + - 50c279ac-280d-488a-b366-b7de8df86a68 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -470,14 +479,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "227b5df2-7c10-4163-9a15-3d67b4bc1157", "type": "SparkJobDefinition", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "7384b709-b687-4559-a2d7-f7908d8deb61", "type": "SparkJobDefinition", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -486,15 +498,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '184' + - '265' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:26 GMT + - Fri, 22 May 2026 08:59:07 GMT Pragma: - no-cache RequestId: - - ff96be5d-2c00-47bf-a6c7-0920ee58320e + - 7556e7cc-6648-4092-9553-dbf4050e04c0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -520,14 +532,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "227b5df2-7c10-4163-9a15-3d67b4bc1157", "type": "SparkJobDefinition", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "7384b709-b687-4559-a2d7-f7908d8deb61", "type": "SparkJobDefinition", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -536,15 +551,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '184' + - '265' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:27 GMT + - Fri, 22 May 2026 08:59:08 GMT Pragma: - no-cache RequestId: - - 506a854c-8be8-4278-84c2-01bf01f31942 + - 2eb4d20f-d5b3-4d9e-bdb6-33de0e9f0a09 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -570,14 +585,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -586,15 +602,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:28 GMT + - Fri, 22 May 2026 08:59:09 GMT Pragma: - no-cache RequestId: - - ce3c04eb-2323-4343-9200-55573c88d67b + - 1af4a958-0a8c-4ec8-91b3-026519bba232 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -620,14 +636,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "227b5df2-7c10-4163-9a15-3d67b4bc1157", "type": "SparkJobDefinition", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "7384b709-b687-4559-a2d7-f7908d8deb61", "type": "SparkJobDefinition", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -636,15 +655,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '184' + - '265' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:29 GMT + - Fri, 22 May 2026 08:59:10 GMT Pragma: - no-cache RequestId: - - 845ffd50-f90b-471a-a0a5-d40bcb4a5fd6 + - c79f464d-ec49-400b-b8e2-c44c1d2b4614 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -670,15 +689,14 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/sparkJobDefinitions/227b5df2-7c10-4163-9a15-3d67b4bc1157 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/sparkJobDefinitions/7384b709-b687-4559-a2d7-f7908d8deb61 response: body: - string: '{"id": "227b5df2-7c10-4163-9a15-3d67b4bc1157", "type": "SparkJobDefinition", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026", "properties": {"oneLakeRootPath": - "https://onelake.dfs.fabric.microsoft.com/fa27f57f-70d6-4009-872b-f7e7149c5026/227b5df2-7c10-4163-9a15-3d67b4bc1157"}}' + string: '{"id": "7384b709-b687-4559-a2d7-f7908d8deb61", "type": "SparkJobDefinition", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "properties": {"oneLakeRootPath": "https://onelake.dfs.fabric.microsoft.com/4f3c92ee-023c-48a7-b08b-1c5e91be6534/7384b709-b687-4559-a2d7-f7908d8deb61"}}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -687,17 +705,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '236' + - '226' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:30 GMT + - Fri, 22 May 2026 08:59:11 GMT ETag: - '""' Pragma: - no-cache RequestId: - - b56bf137-e302-47a5-851f-62064540d2b8 + - 2b0b86b1-5120-4e6f-96e4-2e995c74b2c1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -723,9 +741,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/227b5df2-7c10-4163-9a15-3d67b4bc1157/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/7384b709-b687-4559-a2d7-f7908d8deb61/connections response: body: string: '{"value": []}' @@ -741,11 +759,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:30 GMT + - Fri, 22 May 2026 08:59:11 GMT Pragma: - no-cache RequestId: - - a615bd0e-edfb-4bfd-a189-3987b1abf3f2 + - b666b9f5-e6c7-40a4-b44c-ee7c784564d6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -771,9 +789,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/227b5df2-7c10-4163-9a15-3d67b4bc1157/jobs/sparkjob/schedules + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/7384b709-b687-4559-a2d7-f7908d8deb61/jobs/sparkjob/schedules response: body: string: '{"value": []}' @@ -789,11 +807,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:31 GMT + - Fri, 22 May 2026 08:59:12 GMT Pragma: - no-cache RequestId: - - 557a5035-d1d4-4200-8fd0-d366318ffacf + - 1fd34e69-c675-4fb2-bc5f-81d262276df8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -819,14 +837,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -835,15 +854,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:31 GMT + - Fri, 22 May 2026 08:59:12 GMT Pragma: - no-cache RequestId: - - e06d8cac-3ad3-4313-a1bf-01113d2b4196 + - 754632f8-6c45-4886-baa2-9b539de05d38 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -869,14 +888,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "227b5df2-7c10-4163-9a15-3d67b4bc1157", "type": "SparkJobDefinition", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "7384b709-b687-4559-a2d7-f7908d8deb61", "type": "SparkJobDefinition", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -885,15 +907,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '184' + - '265' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:32 GMT + - Fri, 22 May 2026 08:59:13 GMT Pragma: - no-cache RequestId: - - eaeea92b-e2d1-4199-91ff-9243de91e570 + - 4c2a9ba5-7916-4941-9388-98aef1f6f477 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -919,15 +941,14 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/sparkJobDefinitions/227b5df2-7c10-4163-9a15-3d67b4bc1157 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/sparkJobDefinitions/7384b709-b687-4559-a2d7-f7908d8deb61 response: body: - string: '{"id": "227b5df2-7c10-4163-9a15-3d67b4bc1157", "type": "SparkJobDefinition", - "displayName": "fabcli000002", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026", "properties": {"oneLakeRootPath": - "https://onelake.dfs.fabric.microsoft.com/fa27f57f-70d6-4009-872b-f7e7149c5026/227b5df2-7c10-4163-9a15-3d67b4bc1157"}}' + string: '{"id": "7384b709-b687-4559-a2d7-f7908d8deb61", "type": "SparkJobDefinition", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "properties": {"oneLakeRootPath": "https://onelake.dfs.fabric.microsoft.com/4f3c92ee-023c-48a7-b08b-1c5e91be6534/7384b709-b687-4559-a2d7-f7908d8deb61"}}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -936,17 +957,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '236' + - '226' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:32 GMT + - Fri, 22 May 2026 08:59:13 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 404d5905-b822-4eb4-a492-6bef83b76341 + - 9673394d-b1ee-4975-ba06-c3e2ef2976dd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -974,15 +995,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/fa27f57f-70d6-4009-872b-f7e7149c5026/sparkJobDefinitions/227b5df2-7c10-4163-9a15-3d67b4bc1157 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/sparkJobDefinitions/7384b709-b687-4559-a2d7-f7908d8deb61 response: body: - string: '{"id": "227b5df2-7c10-4163-9a15-3d67b4bc1157", "type": "SparkJobDefinition", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026", "properties": {"oneLakeRootPath": - "https://onelake.dfs.fabric.microsoft.com/fa27f57f-70d6-4009-872b-f7e7149c5026/227b5df2-7c10-4163-9a15-3d67b4bc1157"}}' + string: '{"id": "7384b709-b687-4559-a2d7-f7908d8deb61", "type": "SparkJobDefinition", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "properties": {"oneLakeRootPath": "https://onelake.dfs.fabric.microsoft.com/4f3c92ee-023c-48a7-b08b-1c5e91be6534/7384b709-b687-4559-a2d7-f7908d8deb61"}}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -991,17 +1011,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '234' + - '227' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:34 GMT + - Fri, 22 May 2026 08:59:15 GMT ETag: - '""' Pragma: - no-cache RequestId: - - ffffbad3-261f-4654-bd69-bbc8b436ba37 + - 92df3edc-5a5c-403c-ac6b-e6a578c453dc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1027,14 +1047,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": "fa27f57f-70d6-4009-872b-f7e7149c5026", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1043,15 +1064,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:35 GMT + - Fri, 22 May 2026 08:59:15 GMT Pragma: - no-cache RequestId: - - f5b647da-2ab5-480e-aae5-d4a84f9d81dc + - 5755ab73-6dbd-401c-8357-95c2709d8ba2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1077,14 +1098,17 @@ 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/fa27f57f-70d6-4009-872b-f7e7149c5026/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "227b5df2-7c10-4163-9a15-3d67b4bc1157", "type": "SparkJobDefinition", - "displayName": "fabcli000001", "workspaceId": - "fa27f57f-70d6-4009-872b-f7e7149c5026"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "7384b709-b687-4559-a2d7-f7908d8deb61", "type": "SparkJobDefinition", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1093,15 +1117,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '269' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 10:11:36 GMT + - Fri, 22 May 2026 08:59:16 GMT Pragma: - no-cache RequestId: - - 0c6d43f5-f473-401d-bd0c-1ccde6c9d094 + - b6aca04a-e8ec-4aa4-8c46-f5880946502e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1129,9 +1153,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/fa27f57f-70d6-4009-872b-f7e7149c5026/items/227b5df2-7c10-4163-9a15-3d67b4bc1157 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/7384b709-b687-4559-a2d7-f7908d8deb61 response: body: string: '' @@ -1147,11 +1171,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 29 Jan 2026 10:11:36 GMT + - Fri, 22 May 2026 08:59:17 GMT Pragma: - no-cache RequestId: - - d52433ea-7ea3-4f32-aa13-6425376bd809 + - f7a43be8-43ca-4fc0-95fa-113a1869d78b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-UserDataFunction].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-UserDataFunction].yaml index 90f03dd05..9484669d1 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-UserDataFunction].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_for_all_types_success[displayName-UserDataFunction].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": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2738' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:40 GMT + - Fri, 22 May 2026 08:59:17 GMT Pragma: - no-cache RequestId: - - 8b02f073-0c4f-4c00-b2d1-0219e9aa46ce + - 3eda91f1-d79a-4eb6-b4c2-528bb233cfd7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,15 +62,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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "5fbb6826-d43e-4818-8c9a-4d421da80c58", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35433380-c3a1-43f9-bd79-4460e9ebab3c", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -78,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '217' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:40 GMT + - Fri, 22 May 2026 08:59:17 GMT Pragma: - no-cache RequestId: - - 6a4a33ce-da15-48db-8eb7-2ac08d44bf7f + - 35002120-ac3f-4a30-8ee1-3cfca42b4038 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -112,15 +113,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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "5fbb6826-d43e-4818-8c9a-4d421da80c58", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35433380-c3a1-43f9-bd79-4460e9ebab3c", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -129,15 +130,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '217' + - '218' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:41 GMT + - Fri, 22 May 2026 08:59:19 GMT Pragma: - no-cache RequestId: - - 22d2d52b-9d01-45ad-bbce-9d46b7b79b9c + - 0c67ea27-c334-4f4d-b99f-dcc2900351c8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -152,7 +153,8 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "type": "UserDataFunction", "folderId": null}' + body: '{"displayName": "fabcli000001", "type": "UserDataFunction", "folderId": + null}' headers: Accept: - '*/*' @@ -162,18 +164,16 @@ interactions: - keep-alive Content-Length: - '81' - 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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/userdatafunctions + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/userdatafunctions response: body: - string: '{"id": "4aa56d25-ff75-4a4d-8002-4b10ffe7ea6f", "type": "UserDataFunction", - "displayName": "fabcli000001", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}' + string: '{"id": "cd0e5c39-63d8-4302-afe2-f36a284b56d0", "type": "UserDataFunction", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -182,17 +182,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '172' + - '163' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:45 GMT + - Fri, 22 May 2026 08:59:21 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 54ecd3d2-4a65-4e74-908c-7dd4b03ebbfe + - e3e3105e-81ad-4394-892c-f8de2ada0ba9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -218,14 +218,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": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -234,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2738' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:45 GMT + - Fri, 22 May 2026 08:59:21 GMT Pragma: - no-cache RequestId: - - ab098017-ccc7-45ce-9c67-80f3460608b9 + - 9ebe75d5-e9a7-4ccd-8953-0fd6dc1a061d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -268,18 +269,17 @@ 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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "5fbb6826-d43e-4818-8c9a-4d421da80c58", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35433380-c3a1-43f9-bd79-4460e9ebab3c", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "4aa56d25-ff75-4a4d-8002-4b10ffe7ea6f", "type": "UserDataFunction", - "displayName": "fabcli000001", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "cd0e5c39-63d8-4302-afe2-f36a284b56d0", "type": "UserDataFunction", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -288,15 +288,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '281' + - '267' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:46 GMT + - Fri, 22 May 2026 08:59:22 GMT Pragma: - no-cache RequestId: - - edf1d96b-77ae-411a-b6c6-c51fc521dd21 + - 5ce939d4-b0df-46b9-a3a6-ff1aed0ce673 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -322,14 +322,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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/userdatafunctions/4aa56d25-ff75-4a4d-8002-4b10ffe7ea6f + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/userdatafunctions/cd0e5c39-63d8-4302-afe2-f36a284b56d0 response: body: - string: '{"id": "4aa56d25-ff75-4a4d-8002-4b10ffe7ea6f", "type": "UserDataFunction", - "displayName": "fabcli000001", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}' + string: '{"id": "cd0e5c39-63d8-4302-afe2-f36a284b56d0", "type": "UserDataFunction", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -338,17 +337,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '172' + - '163' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:46 GMT + - Fri, 22 May 2026 08:59:22 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 5e7841f4-de8d-4a05-888a-58cbdc9b568f + - 9770ae62-1d0a-4331-8c5c-65a7df1d0875 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -376,14 +375,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/userdatafunctions/4aa56d25-ff75-4a4d-8002-4b10ffe7ea6f + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/userdatafunctions/cd0e5c39-63d8-4302-afe2-f36a284b56d0 response: body: - string: '{"id": "4aa56d25-ff75-4a4d-8002-4b10ffe7ea6f", "type": "UserDataFunction", - "displayName": "fabcli000002", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}' + string: '{"id": "cd0e5c39-63d8-4302-afe2-f36a284b56d0", "type": "UserDataFunction", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -392,17 +390,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '172' + - '163' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:47 GMT + - Fri, 22 May 2026 08:59:23 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 52ea43d9-0907-46f4-b9c9-93a4dae6a305 + - 2834a8b6-290b-4a7f-8d36-74f115e02c1c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -428,14 +426,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": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -444,15 +443,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2738' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:48 GMT + - Fri, 22 May 2026 08:59:24 GMT Pragma: - no-cache RequestId: - - f1c695f1-2315-4ccf-8121-86fc483d151f + - a727d426-f2bc-42bd-b86a-cef00196ae74 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -478,18 +477,17 @@ 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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "5fbb6826-d43e-4818-8c9a-4d421da80c58", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35433380-c3a1-43f9-bd79-4460e9ebab3c", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "4aa56d25-ff75-4a4d-8002-4b10ffe7ea6f", "type": "UserDataFunction", - "displayName": "fabcli000002", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "cd0e5c39-63d8-4302-afe2-f36a284b56d0", "type": "UserDataFunction", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -498,15 +496,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '283' + - '267' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:48 GMT + - Fri, 22 May 2026 08:59:25 GMT Pragma: - no-cache RequestId: - - 5b5661f3-5e59-4160-896d-4f232e11d840 + - 091cf1c6-d5b4-4d92-92ff-8cca0bc0a375 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -532,18 +530,17 @@ 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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "5fbb6826-d43e-4818-8c9a-4d421da80c58", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35433380-c3a1-43f9-bd79-4460e9ebab3c", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "4aa56d25-ff75-4a4d-8002-4b10ffe7ea6f", "type": "UserDataFunction", - "displayName": "fabcli000002", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "cd0e5c39-63d8-4302-afe2-f36a284b56d0", "type": "UserDataFunction", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -552,15 +549,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '283' + - '267' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:49 GMT + - Fri, 22 May 2026 08:59:25 GMT Pragma: - no-cache RequestId: - - 75c420ee-3afa-41ce-a6dc-e939d398547c + - 5390c0a3-3585-4aeb-abc8-0b2e8c5fbddb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -586,14 +583,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": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -602,15 +600,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2738' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:50 GMT + - Fri, 22 May 2026 08:59:25 GMT Pragma: - no-cache RequestId: - - 63b132d8-4bad-4316-8b0e-8a1ca542938c + - fa98fbd4-9745-4aad-b3d8-f9c3370faac5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -636,18 +634,17 @@ 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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "5fbb6826-d43e-4818-8c9a-4d421da80c58", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35433380-c3a1-43f9-bd79-4460e9ebab3c", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "4aa56d25-ff75-4a4d-8002-4b10ffe7ea6f", "type": "UserDataFunction", - "displayName": "fabcli000002", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "cd0e5c39-63d8-4302-afe2-f36a284b56d0", "type": "UserDataFunction", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -656,15 +653,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '283' + - '267' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:51 GMT + - Fri, 22 May 2026 08:59:26 GMT Pragma: - no-cache RequestId: - - 82ed3620-a97c-45d1-b08a-262997f87ffe + - 64db0c90-b326-4f0b-ba4d-ebdc8ca61042 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -690,14 +687,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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/userdatafunctions/4aa56d25-ff75-4a4d-8002-4b10ffe7ea6f + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/userdatafunctions/cd0e5c39-63d8-4302-afe2-f36a284b56d0 response: body: - string: '{"id": "4aa56d25-ff75-4a4d-8002-4b10ffe7ea6f", "type": "UserDataFunction", - "displayName": "fabcli000002", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}' + string: '{"id": "cd0e5c39-63d8-4302-afe2-f36a284b56d0", "type": "UserDataFunction", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -706,17 +702,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '172' + - '163' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:51 GMT + - Fri, 22 May 2026 08:59:27 GMT ETag: - '""' Pragma: - no-cache RequestId: - - b820aef8-3540-4798-8613-34eea2397496 + - 08ed45cb-ba84-4857-af33-886e0742ada7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -742,9 +738,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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items/4aa56d25-ff75-4a4d-8002-4b10ffe7ea6f/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/cd0e5c39-63d8-4302-afe2-f36a284b56d0/connections response: body: string: '{"value": []}' @@ -760,11 +756,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:51 GMT + - Fri, 22 May 2026 08:59:28 GMT Pragma: - no-cache RequestId: - - 86a8fd23-5494-4d92-a026-f6af7e56df0a + - 349cee13-7138-49f4-aac3-81ce1c6d234f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -790,14 +786,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": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -806,15 +803,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2738' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:52 GMT + - Fri, 22 May 2026 08:59:29 GMT Pragma: - no-cache RequestId: - - 27ec046b-11f5-4584-b57d-2ab002930f92 + - b4358717-15f5-4b4c-8ca9-4960cae8c4cd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -840,18 +837,17 @@ 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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "5fbb6826-d43e-4818-8c9a-4d421da80c58", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35433380-c3a1-43f9-bd79-4460e9ebab3c", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "4aa56d25-ff75-4a4d-8002-4b10ffe7ea6f", "type": "UserDataFunction", - "displayName": "fabcli000002", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "cd0e5c39-63d8-4302-afe2-f36a284b56d0", "type": "UserDataFunction", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -860,15 +856,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '283' + - '267' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:53 GMT + - Fri, 22 May 2026 08:59:30 GMT Pragma: - no-cache RequestId: - - dd2467d6-9640-4411-85c9-1a3780079331 + - 6fab2844-7ca6-421c-ab51-21c18412342a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -894,14 +890,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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/userdatafunctions/4aa56d25-ff75-4a4d-8002-4b10ffe7ea6f + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/userdatafunctions/cd0e5c39-63d8-4302-afe2-f36a284b56d0 response: body: - string: '{"id": "4aa56d25-ff75-4a4d-8002-4b10ffe7ea6f", "type": "UserDataFunction", - "displayName": "fabcli000002", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}' + string: '{"id": "cd0e5c39-63d8-4302-afe2-f36a284b56d0", "type": "UserDataFunction", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -910,17 +905,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '172' + - '163' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:53 GMT + - Fri, 22 May 2026 08:59:30 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 419d3563-1ba2-4214-a35c-6c7fbffa888f + - f4d5f399-0ea3-46e9-9555-f1db4ad5c1a4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -948,14 +943,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/userdatafunctions/4aa56d25-ff75-4a4d-8002-4b10ffe7ea6f + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/userdatafunctions/cd0e5c39-63d8-4302-afe2-f36a284b56d0 response: body: - string: '{"id": "4aa56d25-ff75-4a4d-8002-4b10ffe7ea6f", "type": "UserDataFunction", - "displayName": "fabcli000001", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}' + string: '{"id": "cd0e5c39-63d8-4302-afe2-f36a284b56d0", "type": "UserDataFunction", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -964,17 +958,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '172' + - '163' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:54 GMT + - Fri, 22 May 2026 08:59:30 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 3e44e2a7-23d5-4b24-92b7-9b475b0670db + - 36d9b17a-306b-4266-8a87-f1106bf1f424 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1000,14 +994,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": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1016,15 +1011,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2738' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:54 GMT + - Fri, 22 May 2026 08:59:31 GMT Pragma: - no-cache RequestId: - - 91b6ca60-dc5d-4e97-8901-b26af5f9c7ee + - d48601cb-b17b-41b9-83b8-2fa4b2d85433 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1050,18 +1045,17 @@ 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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "5fbb6826-d43e-4818-8c9a-4d421da80c58", "type": "SQLEndpoint", - "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "35433380-c3a1-43f9-bd79-4460e9ebab3c", "type": "Lakehouse", "displayName": - "fabcli000001dtdm", "description": "", "workspaceId": "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}, - {"id": "4aa56d25-ff75-4a4d-8002-4b10ffe7ea6f", "type": "UserDataFunction", - "displayName": "fabcli000001", "workspaceId": - "2624caf6-b51d-4b9b-a0d7-9da2c6385d0e"}]}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "cd0e5c39-63d8-4302-afe2-f36a284b56d0", "type": "UserDataFunction", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1070,15 +1064,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '281' + - '267' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 04 Feb 2026 07:23:55 GMT + - Fri, 22 May 2026 08:59:32 GMT Pragma: - no-cache RequestId: - - 3df371ea-3518-455b-a389-70bff2603ae2 + - 32822f22-6146-4ccb-8f01-ebc86cfdd0eb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1106,9 +1100,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/2624caf6-b51d-4b9b-a0d7-9da2c6385d0e/items/4aa56d25-ff75-4a4d-8002-4b10ffe7ea6f + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/cd0e5c39-63d8-4302-afe2-f36a284b56d0 response: body: string: '' @@ -1124,11 +1118,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 04 Feb 2026 07:23:56 GMT + - Fri, 22 May 2026 08:59:33 GMT Pragma: - no-cache RequestId: - - 6d046c81-b657-4130-8437-12721062de36 + - 1743c2fc-a3f6-447d-8821-000c2ca8d106 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_success[description-False].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_success[description-False].yaml index e74f63148..7d4d040a0 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_success[description-False].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_success[description-False].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": "ebc4005f-d298-4926-9fbf-3f99130d4b00", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2939' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:04:08 GMT + - Fri, 22 May 2026 08:49:40 GMT Pragma: - no-cache RequestId: - - defa969b-11a0-4642-ac18-9b83be1f49b4 + - 2e46a044-4dee-4d9f-92d0-f5f9e08a617e 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/ebc4005f-d298-4926-9fbf-3f99130d4b00/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:04:09 GMT + - Fri, 22 May 2026 08:49:40 GMT Pragma: - no-cache RequestId: - - cfaed8b2-9db7-413e-8ed2-b155774235bf + - 1c2225c4-b573-4685-afcb-5cc637e94bf2 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/ebc4005f-d298-4926-9fbf-3f99130d4b00/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:04:09 GMT + - Fri, 22 May 2026 08:49:41 GMT Pragma: - no-cache RequestId: - - a5f1e1ea-8a17-40c1-beda-9cbf635fbea7 + - e22940ed-ca4f-4935-9102-26761ec908d0 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.3.1 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/ebc4005f-d298-4926-9fbf-3f99130d4b00/notebooks + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/notebooks response: body: string: 'null' @@ -178,15 +180,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:04:12 GMT + - Fri, 22 May 2026 08:49:42 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/603bcac9-2745-440b-8f6b-3623b764c4ba + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/83133750-34be-4ccd-84a2-05e3753c03d2 Pragma: - no-cache RequestId: - - 8cac8e58-88be-42de-a5fe-6b8c5ecd2f98 + - ffd9584d-f147-4067-9089-ae339839d96f Retry-After: - '20' Strict-Transport-Security: @@ -200,7 +202,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 603bcac9-2745-440b-8f6b-3623b764c4ba + - 83133750-34be-4ccd-84a2-05e3753c03d2 status: code: 202 message: Accepted @@ -216,13 +218,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/603bcac9-2745-440b-8f6b-3623b764c4ba + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/83133750-34be-4ccd-84a2-05e3753c03d2 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-11T08:04:11.5920388", - "lastUpdatedTimeUtc": "2026-02-11T08:04:13.327082", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-22T08:49:43.0708768", + "lastUpdatedTimeUtc": "2026-05-22T08:49:44.2284547", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -232,17 +234,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '130' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:04:32 GMT + - Fri, 22 May 2026 08:50:04 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/603bcac9-2745-440b-8f6b-3623b764c4ba/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/83133750-34be-4ccd-84a2-05e3753c03d2/result Pragma: - no-cache RequestId: - - 090e604d-a0aa-4673-af57-3bac3337fdf5 + - eb1f0904-9381-423b-960c-3dcbeeab72f4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -250,7 +252,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 603bcac9-2745-440b-8f6b-3623b764c4ba + - 83133750-34be-4ccd-84a2-05e3753c03d2 status: code: 200 message: OK @@ -266,14 +268,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/603bcac9-2745-440b-8f6b-3623b764c4ba/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/83133750-34be-4ccd-84a2-05e3753c03d2/result response: body: - string: '{"id": "c38c9454-ce15-4ef4-ac89-d8aa2715de2b", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "ebc4005f-d298-4926-9fbf-3f99130d4b00"}' + string: '{"id": "e1bb7827-b9ae-408a-88c8-4c695b5120df", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId @@ -284,11 +285,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 11 Feb 2026 08:04:33 GMT + - Fri, 22 May 2026 08:50:04 GMT Pragma: - no-cache RequestId: - - 83dc996b-6846-4d1f-8aa8-7d3725540812 + - 59e9827b-e4eb-4464-9431-52423f1a0a5d 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.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": "ebc4005f-d298-4926-9fbf-3f99130d4b00", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2939' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:04:34 GMT + - Fri, 22 May 2026 08:50:05 GMT Pragma: - no-cache RequestId: - - 9d780870-6bb1-41a5-bf84-d7953ed8e0b3 + - 5069f299-5d4e-4e97-8689-8dd236e121f0 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.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ebc4005f-d298-4926-9fbf-3f99130d4b00/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "c38c9454-ce15-4ef4-ac89-d8aa2715de2b", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "ebc4005f-d298-4926-9fbf-3f99130d4b00"}]}' + string: '{"value": [{"id": "e1bb7827-b9ae-408a-88c8-4c695b5120df", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -378,15 +379,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '177' + - '167' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:04:34 GMT + - Fri, 22 May 2026 08:50:06 GMT Pragma: - no-cache RequestId: - - 6b438f47-3c47-4f61-83eb-03ac58f2d756 + - b599f37d-6fd4-4899-8b19-8ddc73e050e1 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.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ebc4005f-d298-4926-9fbf-3f99130d4b00/notebooks/c38c9454-ce15-4ef4-ac89-d8aa2715de2b + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/notebooks/e1bb7827-b9ae-408a-88c8-4c695b5120df response: body: - string: '{"id": "c38c9454-ce15-4ef4-ac89-d8aa2715de2b", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "ebc4005f-d298-4926-9fbf-3f99130d4b00"}' + string: '{"id": "e1bb7827-b9ae-408a-88c8-4c695b5120df", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -428,17 +428,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:04:35 GMT + - Fri, 22 May 2026 08:50:07 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 38f0f56e-ec60-4ada-bad3-56c195733747 + - 2cb41578-2da2-4e94-a68a-148fe7f3bde8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -466,14 +466,14 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/ebc4005f-d298-4926-9fbf-3f99130d4b00/notebooks/c38c9454-ce15-4ef4-ac89-d8aa2715de2b + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/notebooks/e1bb7827-b9ae-408a-88c8-4c695b5120df response: body: - string: '{"id": "c38c9454-ce15-4ef4-ac89-d8aa2715de2b", "type": "Notebook", + string: '{"id": "e1bb7827-b9ae-408a-88c8-4c695b5120df", "type": "Notebook", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "ebc4005f-d298-4926-9fbf-3f99130d4b00"}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -482,17 +482,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '163' + - '164' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:04:36 GMT + - Fri, 22 May 2026 08:50:08 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 9c3ef8e8-b9a6-4e7c-9153-f496904ea455 + - 884d905d-1bf4-49b2-a599-e34086120272 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -518,14 +518,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": "ebc4005f-d298-4926-9fbf-3f99130d4b00", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -534,15 +535,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2939' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:04:37 GMT + - Fri, 22 May 2026 08:50:09 GMT Pragma: - no-cache RequestId: - - 432ffb0f-dfb0-4a87-9e5e-dff6cf75384a + - b97cf8b9-2ad3-4b69-a5d2-7c2665d2653b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -568,14 +569,14 @@ 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/ebc4005f-d298-4926-9fbf-3f99130d4b00/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "c38c9454-ce15-4ef4-ac89-d8aa2715de2b", "type": "Notebook", + string: '{"value": [{"id": "e1bb7827-b9ae-408a-88c8-4c695b5120df", "type": "Notebook", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "ebc4005f-d298-4926-9fbf-3f99130d4b00"}]}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -584,15 +585,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '175' + - '176' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:04:37 GMT + - Fri, 22 May 2026 08:50:10 GMT Pragma: - no-cache RequestId: - - 9d0865b1-ffc5-4ecf-834e-42d20d487e6d + - fc70fbe9-5ae9-411b-b186-f3b306d117f0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -618,14 +619,14 @@ 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/ebc4005f-d298-4926-9fbf-3f99130d4b00/notebooks/c38c9454-ce15-4ef4-ac89-d8aa2715de2b + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/notebooks/e1bb7827-b9ae-408a-88c8-4c695b5120df response: body: - string: '{"id": "c38c9454-ce15-4ef4-ac89-d8aa2715de2b", "type": "Notebook", + string: '{"id": "e1bb7827-b9ae-408a-88c8-4c695b5120df", "type": "Notebook", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "ebc4005f-d298-4926-9fbf-3f99130d4b00"}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -634,17 +635,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '163' + - '164' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:04:38 GMT + - Fri, 22 May 2026 08:50:10 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 9d6a9039-d613-4fd2-a109-5d5af8e6bebb + - 2ba544e3-40d1-4255-b9ae-501ed6abcec4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -670,9 +671,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/ebc4005f-d298-4926-9fbf-3f99130d4b00/items/c38c9454-ce15-4ef4-ac89-d8aa2715de2b/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/e1bb7827-b9ae-408a-88c8-4c695b5120df/connections response: body: string: '{"value": []}' @@ -688,11 +689,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:04:38 GMT + - Fri, 22 May 2026 08:50:11 GMT Pragma: - no-cache RequestId: - - 391a27bd-50a0-4b61-a2d4-a7fdc62f2424 + - 0db53424-3edc-47ae-b553-e438ffad311f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -718,9 +719,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/ebc4005f-d298-4926-9fbf-3f99130d4b00/items/c38c9454-ce15-4ef4-ac89-d8aa2715de2b/jobs/RunNotebook/schedules + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/e1bb7827-b9ae-408a-88c8-4c695b5120df/jobs/RunNotebook/schedules response: body: string: '{"value": []}' @@ -736,11 +737,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:04:39 GMT + - Fri, 22 May 2026 08:50:12 GMT Pragma: - no-cache RequestId: - - 3b318382-fbc0-42aa-bdff-d16f53668d99 + - c3a95e29-9656-406e-8956-66bb64c61b4b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -766,14 +767,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": "ebc4005f-d298-4926-9fbf-3f99130d4b00", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -782,15 +784,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2939' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:04:40 GMT + - Fri, 22 May 2026 08:50:13 GMT Pragma: - no-cache RequestId: - - 7c5a75f5-290d-4c8d-ba53-a435e608b7dc + - 7330d267-9557-4ec0-bdcb-edb6a2bfae05 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -816,14 +818,14 @@ 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/ebc4005f-d298-4926-9fbf-3f99130d4b00/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "c38c9454-ce15-4ef4-ac89-d8aa2715de2b", "type": "Notebook", + string: '{"value": [{"id": "e1bb7827-b9ae-408a-88c8-4c695b5120df", "type": "Notebook", "displayName": "fabcli000001", "description": "fabcli000002", "workspaceId": - "ebc4005f-d298-4926-9fbf-3f99130d4b00"}]}' + "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -832,15 +834,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '175' + - '176' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:04:41 GMT + - Fri, 22 May 2026 08:50:14 GMT Pragma: - no-cache RequestId: - - 1565636c-9854-4f42-a2e7-e32a527fb11c + - 824f9e61-8e32-403f-845a-eeb65af59773 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -868,9 +870,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/ebc4005f-d298-4926-9fbf-3f99130d4b00/items/c38c9454-ce15-4ef4-ac89-d8aa2715de2b + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/e1bb7827-b9ae-408a-88c8-4c695b5120df response: body: string: '' @@ -886,11 +888,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 11 Feb 2026 08:04:42 GMT + - Fri, 22 May 2026 08:50:13 GMT Pragma: - no-cache RequestId: - - f56e9b0a-9761-42e7-8f82-0ee83bf33595 + - 54c6adb2-7cfd-4716-9fb9-8306d9a1d4f1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_success[displayName-True].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_success[displayName-True].yaml index 5443c3376..c5fce259d 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_success[displayName-True].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_metadata_success[displayName-True].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": "ebc4005f-d298-4926-9fbf-3f99130d4b00", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2939' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:04:43 GMT + - Fri, 22 May 2026 08:50:14 GMT Pragma: - no-cache RequestId: - - 3a466f9a-1fa5-419a-ac47-9673c2486d4c + - f8747ed2-c828-4495-980a-be90547269cd 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/ebc4005f-d298-4926-9fbf-3f99130d4b00/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: string: '{"value": []}' @@ -79,11 +80,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:04:44 GMT + - Fri, 22 May 2026 08:50:15 GMT Pragma: - no-cache RequestId: - - 02c434d0-4a77-46f6-83d7-2af9595778e4 + - 63ad789b-9677-45a0-8453-a2d3e28b37d1 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/ebc4005f-d298-4926-9fbf-3f99130d4b00/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: string: '{"value": []}' @@ -127,11 +128,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:04:45 GMT + - Fri, 22 May 2026 08:50:15 GMT Pragma: - no-cache RequestId: - - 61966110-b814-4b88-a14e-6f835387445a + - f4855d6e-12df-42c8-be31-bb41193a3804 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.3.1 + - ms-fabric-cli-test/1.6.1 method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/ebc4005f-d298-4926-9fbf-3f99130d4b00/notebooks + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/notebooks response: body: string: 'null' @@ -178,15 +180,15 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:04:46 GMT + - Fri, 22 May 2026 08:50:16 GMT ETag: - '""' Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4481ee06-2641-4157-87ae-a454c6e7788a + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f5ac5461-6ed2-4e80-84b8-1a9d23d079f1 Pragma: - no-cache RequestId: - - 7962115f-7f4d-42e3-a689-6bac2f52f3bb + - ece20686-e269-4155-9b2a-9667cbe5acb1 Retry-After: - '20' Strict-Transport-Security: @@ -200,7 +202,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 4481ee06-2641-4157-87ae-a454c6e7788a + - f5ac5461-6ed2-4e80-84b8-1a9d23d079f1 status: code: 202 message: Accepted @@ -216,13 +218,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4481ee06-2641-4157-87ae-a454c6e7788a + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f5ac5461-6ed2-4e80-84b8-1a9d23d079f1 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2026-02-11T08:04:46.2874636", - "lastUpdatedTimeUtc": "2026-02-11T08:04:47.8350217", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-22T08:50:16.9359415", + "lastUpdatedTimeUtc": "2026-05-22T08:50:18.3208137", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -236,13 +238,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:05:07 GMT + - Fri, 22 May 2026 08:50:37 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4481ee06-2641-4157-87ae-a454c6e7788a/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f5ac5461-6ed2-4e80-84b8-1a9d23d079f1/result Pragma: - no-cache RequestId: - - 8f02ef20-aadc-4465-af1c-575d6d025002 + - d0bd3215-d3a1-432c-83fd-eefaba968677 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -250,7 +252,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 4481ee06-2641-4157-87ae-a454c6e7788a + - f5ac5461-6ed2-4e80-84b8-1a9d23d079f1 status: code: 200 message: OK @@ -266,14 +268,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/4481ee06-2641-4157-87ae-a454c6e7788a/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/f5ac5461-6ed2-4e80-84b8-1a9d23d079f1/result response: body: - string: '{"id": "2380171e-847d-4d1a-8d1c-4d76e0cdce52", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "ebc4005f-d298-4926-9fbf-3f99130d4b00"}' + string: '{"id": "7a55bfd8-621e-42c7-8c8a-0c8025da703f", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId @@ -284,11 +285,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 11 Feb 2026 08:05:07 GMT + - Fri, 22 May 2026 08:50:39 GMT Pragma: - no-cache RequestId: - - 6daf68a6-800f-422a-804e-934bad3e0f06 + - a3e2b792-f3a2-4c5c-92bd-a0bbee3f9eb0 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.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": "ebc4005f-d298-4926-9fbf-3f99130d4b00", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2939' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:05:09 GMT + - Fri, 22 May 2026 08:50:39 GMT Pragma: - no-cache RequestId: - - 55811aaa-977b-4116-8241-8fa3360aabf9 + - 618c96e5-ade5-4a9e-bb8a-71224366d512 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.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ebc4005f-d298-4926-9fbf-3f99130d4b00/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "2380171e-847d-4d1a-8d1c-4d76e0cdce52", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "ebc4005f-d298-4926-9fbf-3f99130d4b00"}]}' + string: '{"value": [{"id": "7a55bfd8-621e-42c7-8c8a-0c8025da703f", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -378,15 +379,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '177' + - '165' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:05:09 GMT + - Fri, 22 May 2026 08:50:40 GMT Pragma: - no-cache RequestId: - - 153e9253-75c5-42e5-8ec8-5c15a8de62f5 + - c011de6e-d753-44e1-a3d7-d52e992d8840 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.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ebc4005f-d298-4926-9fbf-3f99130d4b00/notebooks/2380171e-847d-4d1a-8d1c-4d76e0cdce52 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/notebooks/7a55bfd8-621e-42c7-8c8a-0c8025da703f response: body: - string: '{"id": "2380171e-847d-4d1a-8d1c-4d76e0cdce52", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "ebc4005f-d298-4926-9fbf-3f99130d4b00"}' + string: '{"id": "7a55bfd8-621e-42c7-8c8a-0c8025da703f", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -428,17 +428,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '153' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:05:10 GMT + - Fri, 22 May 2026 08:50:41 GMT ETag: - '""' Pragma: - no-cache RequestId: - - e4aac1ab-3149-49eb-9508-ad0a585bef7f + - 53113de1-4722-4370-94a6-40b21eff1be7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -466,14 +466,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/ebc4005f-d298-4926-9fbf-3f99130d4b00/notebooks/2380171e-847d-4d1a-8d1c-4d76e0cdce52 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/notebooks/7a55bfd8-621e-42c7-8c8a-0c8025da703f response: body: - string: '{"id": "2380171e-847d-4d1a-8d1c-4d76e0cdce52", "type": "Notebook", - "displayName": "fabcli000002", "workspaceId": - "ebc4005f-d298-4926-9fbf-3f99130d4b00"}' + string: '{"id": "7a55bfd8-621e-42c7-8c8a-0c8025da703f", "type": "Notebook", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -482,17 +481,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:05:10 GMT + - Fri, 22 May 2026 08:50:42 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 5564e1d0-2160-4c67-b1c0-691c9b4fb6da + - 44da6b13-86fd-4ddd-b184-81ba63758918 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -518,14 +517,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": "ebc4005f-d298-4926-9fbf-3f99130d4b00", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -534,15 +534,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2939' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:05:12 GMT + - Fri, 22 May 2026 08:50:42 GMT Pragma: - no-cache RequestId: - - 1a2d4160-e5f6-408c-a804-d60945c9730e + - 3eae0533-f556-495c-a5e8-6b92017e8715 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -568,14 +568,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/ebc4005f-d298-4926-9fbf-3f99130d4b00/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "2380171e-847d-4d1a-8d1c-4d76e0cdce52", "type": "Notebook", - "displayName": "fabcli000002", "workspaceId": - "ebc4005f-d298-4926-9fbf-3f99130d4b00"}]}' + string: '{"value": [{"id": "7a55bfd8-621e-42c7-8c8a-0c8025da703f", "type": "Notebook", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -584,15 +583,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:05:12 GMT + - Fri, 22 May 2026 08:50:42 GMT Pragma: - no-cache RequestId: - - 9ff57b0c-b750-46ff-b8c2-e6c5016d5b27 + - d68d46bd-b0dc-4b6c-945b-fd91ad8a8e94 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.3.1 + - ms-fabric-cli-test/1.6.1 method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/ebc4005f-d298-4926-9fbf-3f99130d4b00/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "2380171e-847d-4d1a-8d1c-4d76e0cdce52", "type": "Notebook", - "displayName": "fabcli000002", "workspaceId": - "ebc4005f-d298-4926-9fbf-3f99130d4b00"}]}' + string: '{"value": [{"id": "7a55bfd8-621e-42c7-8c8a-0c8025da703f", "type": "Notebook", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -634,15 +632,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:05:13 GMT + - Fri, 22 May 2026 08:50:43 GMT Pragma: - no-cache RequestId: - - 2ad91368-a07b-422b-94ae-e6276d6a7cb4 + - f26d43a6-4068-4630-b632-db66d884b411 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -668,14 +666,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": "ebc4005f-d298-4926-9fbf-3f99130d4b00", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -684,15 +683,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2939' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:05:14 GMT + - Fri, 22 May 2026 08:50:44 GMT Pragma: - no-cache RequestId: - - 3367e04b-2b31-41c9-a2f0-f5b47270d032 + - e51d41e0-7889-47f5-9b68-113c89f966e6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -718,14 +717,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/ebc4005f-d298-4926-9fbf-3f99130d4b00/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "2380171e-847d-4d1a-8d1c-4d76e0cdce52", "type": "Notebook", - "displayName": "fabcli000002", "workspaceId": - "ebc4005f-d298-4926-9fbf-3f99130d4b00"}]}' + string: '{"value": [{"id": "7a55bfd8-621e-42c7-8c8a-0c8025da703f", "type": "Notebook", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -734,15 +732,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:05:15 GMT + - Fri, 22 May 2026 08:50:45 GMT Pragma: - no-cache RequestId: - - 2762800b-599d-47a5-830d-d47d5b45280a + - 98e46c0a-e3ee-4e71-a091-31b2854d4629 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -768,14 +766,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/ebc4005f-d298-4926-9fbf-3f99130d4b00/notebooks/2380171e-847d-4d1a-8d1c-4d76e0cdce52 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/notebooks/7a55bfd8-621e-42c7-8c8a-0c8025da703f response: body: - string: '{"id": "2380171e-847d-4d1a-8d1c-4d76e0cdce52", "type": "Notebook", - "displayName": "fabcli000002", "workspaceId": - "ebc4005f-d298-4926-9fbf-3f99130d4b00"}' + string: '{"id": "7a55bfd8-621e-42c7-8c8a-0c8025da703f", "type": "Notebook", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -784,17 +781,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:05:15 GMT + - Fri, 22 May 2026 08:50:46 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 23bb86ee-db6d-48df-bc2a-0d40d6d828c5 + - 4e26cdaa-d4aa-4e86-be8c-23e7ac2958a8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -820,9 +817,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/ebc4005f-d298-4926-9fbf-3f99130d4b00/items/2380171e-847d-4d1a-8d1c-4d76e0cdce52/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/7a55bfd8-621e-42c7-8c8a-0c8025da703f/connections response: body: string: '{"value": []}' @@ -838,11 +835,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:05:15 GMT + - Fri, 22 May 2026 08:50:46 GMT Pragma: - no-cache RequestId: - - 3a477cc4-9e07-4dee-8620-e49049d54f7a + - 8a6bea35-b5c8-42ff-901b-3fabcf9ba50a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -868,9 +865,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/ebc4005f-d298-4926-9fbf-3f99130d4b00/items/2380171e-847d-4d1a-8d1c-4d76e0cdce52/jobs/RunNotebook/schedules + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/7a55bfd8-621e-42c7-8c8a-0c8025da703f/jobs/RunNotebook/schedules response: body: string: '{"value": []}' @@ -886,11 +883,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:05:16 GMT + - Fri, 22 May 2026 08:50:47 GMT Pragma: - no-cache RequestId: - - 9c491c1f-30c1-4979-b783-c93c49ee92a6 + - da01dfcc-7df9-430b-83ba-c6e8f1dc8761 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -916,14 +913,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": "ebc4005f-d298-4926-9fbf-3f99130d4b00", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -932,15 +930,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2939' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:05:17 GMT + - Fri, 22 May 2026 08:50:48 GMT Pragma: - no-cache RequestId: - - 9f2cbce6-814e-4a00-b111-a46b460f7f5f + - 6e405219-f80c-4b9c-9487-1c99826b20ff Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -966,14 +964,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/ebc4005f-d298-4926-9fbf-3f99130d4b00/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "2380171e-847d-4d1a-8d1c-4d76e0cdce52", "type": "Notebook", - "displayName": "fabcli000002", "workspaceId": - "ebc4005f-d298-4926-9fbf-3f99130d4b00"}]}' + string: '{"value": [{"id": "7a55bfd8-621e-42c7-8c8a-0c8025da703f", "type": "Notebook", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -982,15 +979,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '178' + - '166' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:05:18 GMT + - Fri, 22 May 2026 08:50:50 GMT Pragma: - no-cache RequestId: - - 6516d9fb-cba0-4047-9124-28bea76f8dbe + - d0c2507a-4c73-4a28-a11d-1de779f66447 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1016,14 +1013,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/ebc4005f-d298-4926-9fbf-3f99130d4b00/notebooks/2380171e-847d-4d1a-8d1c-4d76e0cdce52 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/notebooks/7a55bfd8-621e-42c7-8c8a-0c8025da703f response: body: - string: '{"id": "2380171e-847d-4d1a-8d1c-4d76e0cdce52", "type": "Notebook", - "displayName": "fabcli000002", "workspaceId": - "ebc4005f-d298-4926-9fbf-3f99130d4b00"}' + string: '{"id": "7a55bfd8-621e-42c7-8c8a-0c8025da703f", "type": "Notebook", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1032,17 +1028,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:05:18 GMT + - Fri, 22 May 2026 08:50:50 GMT ETag: - '""' Pragma: - no-cache RequestId: - - f6507310-e1f9-47aa-bf37-fd6ba53105c3 + - 2f62a0c5-255a-4cbf-9cf8-ea6ced4203b8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1070,14 +1066,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/ebc4005f-d298-4926-9fbf-3f99130d4b00/notebooks/2380171e-847d-4d1a-8d1c-4d76e0cdce52 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/notebooks/7a55bfd8-621e-42c7-8c8a-0c8025da703f response: body: - string: '{"id": "2380171e-847d-4d1a-8d1c-4d76e0cdce52", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "ebc4005f-d298-4926-9fbf-3f99130d4b00"}' + string: '{"id": "7a55bfd8-621e-42c7-8c8a-0c8025da703f", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1086,17 +1081,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '153' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:05:19 GMT + - Fri, 22 May 2026 08:50:51 GMT ETag: - '""' Pragma: - no-cache RequestId: - - ea9ca1d0-8d5b-495e-bbd1-1cb8091de247 + - a0983c32-d8f8-4817-9fb8-80aab23c8c1d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1122,14 +1117,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": "ebc4005f-d298-4926-9fbf-3f99130d4b00", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1138,15 +1134,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2939' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:05:20 GMT + - Fri, 22 May 2026 08:50:52 GMT Pragma: - no-cache RequestId: - - b5754f29-88e5-4c70-9fa1-30be9d6a52f5 + - d452508f-4a63-4ec8-8a8e-a1f1f36030a7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1172,14 +1168,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/ebc4005f-d298-4926-9fbf-3f99130d4b00/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "2380171e-847d-4d1a-8d1c-4d76e0cdce52", "type": "Notebook", - "displayName": "fabcli000001", "workspaceId": - "ebc4005f-d298-4926-9fbf-3f99130d4b00"}]}' + string: '{"value": [{"id": "7a55bfd8-621e-42c7-8c8a-0c8025da703f", "type": "Notebook", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1188,15 +1183,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '177' + - '165' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 11 Feb 2026 08:05:21 GMT + - Fri, 22 May 2026 08:50:53 GMT Pragma: - no-cache RequestId: - - 2af45f15-b6c1-4e42-aafc-9916f2a1eaf9 + - 6066539a-fc87-4add-9cae-1b844d24d57f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1224,9 +1219,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/ebc4005f-d298-4926-9fbf-3f99130d4b00/items/2380171e-847d-4d1a-8d1c-4d76e0cdce52 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/7a55bfd8-621e-42c7-8c8a-0c8025da703f response: body: string: '' @@ -1242,11 +1237,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 11 Feb 2026 08:05:21 GMT + - Fri, 22 May 2026 08:50:54 GMT Pragma: - no-cache RequestId: - - 694a31e7-2fd9-4ab6-ae8f-0297c0bd5232 + - e03b5016-5453-4f43-9236-ac6c75f9f0fc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_report_definition_semantic_model_id_success.yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_report_definition_semantic_model_id_success.yaml index 6922fa56e..99e751a31 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_report_definition_semantic_model_id_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_report_definition_semantic_model_id_success.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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2061' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:28:04 GMT + - Fri, 22 May 2026 09:01:42 GMT Pragma: - no-cache RequestId: - - 59a36a3e-7a18-48fc-99e2-2dd6cb311415 + - 6e6f36ae-5df3-4545-85c5-0b4b21cdca3c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,12 +62,19 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -75,15 +83,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '280' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:28:04 GMT + - Fri, 22 May 2026 09:01:43 GMT Pragma: - no-cache RequestId: - - e05be104-38f8-47f2-a69c-fe85ef0b5492 + - c0484cf9-5b61-4273-9fcb-3be11c484f7f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,12 +117,19 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", + "displayName": "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -123,15 +138,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '280' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:28:05 GMT + - Fri, 22 May 2026 09:01:44 GMT Pragma: - no-cache RequestId: - - b9782401-5ae3-4ba9-8f9b-d1a8acac42b0 + - 71585216-6feb-4c48-b156-15d63068c978 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -146,7 +161,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: - '*/*' @@ -156,13 +179,12 @@ interactions: - keep-alive Content-Length: - '2640' - 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/81065bd8-e334-4715-b170-dedb4cd514e6/semanticModels + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/semanticModels response: body: string: 'null' @@ -178,13 +200,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:28:06 GMT + - Fri, 22 May 2026 09:01:45 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7c495cc0-023b-4202-abb9-ee4b67fc05e7 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0d316fa7-0e7e-417d-a6e6-9a8e464df0b6 Pragma: - no-cache RequestId: - - ae1ae0d9-b5a5-4403-b507-5f0f21e8c928 + - ff6119b3-843e-48a2-80a0-41228eeeff4c Retry-After: - '20' Strict-Transport-Security: @@ -198,7 +220,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 7c495cc0-023b-4202-abb9-ee4b67fc05e7 + - 0d316fa7-0e7e-417d-a6e6-9a8e464df0b6 status: code: 202 message: Accepted @@ -214,13 +236,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7c495cc0-023b-4202-abb9-ee4b67fc05e7 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0d316fa7-0e7e-417d-a6e6-9a8e464df0b6 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2025-12-31T14:28:06.0691209", - "lastUpdatedTimeUtc": "2025-12-31T14:28:17.22745", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-22T09:01:45.8149732", + "lastUpdatedTimeUtc": "2026-05-22T09:01:56.65646", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -234,13 +256,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:28:26 GMT + - Fri, 22 May 2026 09:02:06 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7c495cc0-023b-4202-abb9-ee4b67fc05e7/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0d316fa7-0e7e-417d-a6e6-9a8e464df0b6/result Pragma: - no-cache RequestId: - - 8a8c8322-d2f2-46da-841b-63a361878e95 + - 48b5312c-c7cf-43c8-8879-b10c47381895 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -248,7 +270,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 7c495cc0-023b-4202-abb9-ee4b67fc05e7 + - 0d316fa7-0e7e-417d-a6e6-9a8e464df0b6 status: code: 200 message: OK @@ -264,13 +286,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7c495cc0-023b-4202-abb9-ee4b67fc05e7/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0d316fa7-0e7e-417d-a6e6-9a8e464df0b6/result response: body: - string: '{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}' + string: '{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId @@ -281,11 +303,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 31 Dec 2025 14:28:26 GMT + - Fri, 22 May 2026 09:02:07 GMT Pragma: - no-cache RequestId: - - aeb412bb-4939-487e-bb83-b89f8aa155ae + - d8b3baa6-dccb-47a2-8500-c3c34cefb9f5 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -298,7 +320,20 @@ 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": "eyJ2ZXJzaW9uIjogIjQuMCIsICJkYXRhc2V0UmVmZXJlbmNlIjogeyJieVBhdGgiOiBudWxsLCAiYnlDb25uZWN0aW9uIjogeyJjb25uZWN0aW9uU3RyaW5nIjogIkRhdGEgU291cmNlPXBvd2VyYmk6Ly9hcGkucG93ZXJiaS5jb20vdjEuMC9teW9yZy9ta2RpcjtJbml0aWFsIENhdGFsb2c9cjM7SW50ZWdyYXRlZCBTZWN1cml0eT1DbGFpbXNUb2tlbiIsICJwYmlTZXJ2aWNlTW9kZWxJZCI6IG51bGwsICJwYmlNb2RlbFZpcnR1YWxTZXJ2ZXJOYW1lIjogInNvYmVfd293dmlydHVhbHNlcnZlciIsICJwYmlNb2RlbERhdGFiYXNlTmFtZSI6ICIzZTc1YTQxNS1iOTA3LTQyOTUtYjE2My1hNzQ2YjNhZjg4ZDEiLCAibmFtZSI6ICJFbnRpdHlEYXRhU291cmNlIiwgImNvbm5lY3Rpb25UeXBlIjogInBiaVNlcnZpY2VYbWxhU3R5bGVMaXZlIn19fQ==", "payloadType": "InlineBase64"}, {"path": "definition/report.json", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uL3JlcG9ydC8xLjIuMC9zY2hlbWEuanNvbiIsCiAgInRoZW1lQ29sbGVjdGlvbiI6IHsKICAgICJiYXNlVGhlbWUiOiB7CiAgICAgICJuYW1lIjogIkNZMjRTVTEwIiwKICAgICAgInJlcG9ydFZlcnNpb25BdEltcG9ydCI6ICI1LjYxIiwKICAgICAgInR5cGUiOiAiU2hhcmVkUmVzb3VyY2VzIgogICAgfQogIH0sCiAgImxheW91dE9wdGltaXphdGlvbiI6ICJOb25lIiwKICAib2JqZWN0cyI6IHsKICAgICJzZWN0aW9uIjogWwogICAgICB7CiAgICAgICAgInByb3BlcnRpZXMiOiB7CiAgICAgICAgICAidmVydGljYWxBbGlnbm1lbnQiOiB7CiAgICAgICAgICAgICJleHByIjogewogICAgICAgICAgICAgICJMaXRlcmFsIjogewogICAgICAgICAgICAgICAgIlZhbHVlIjogIidUb3AnIgogICAgICAgICAgICAgIH0KICAgICAgICAgICAgfQogICAgICAgICAgfQogICAgICAgIH0KICAgICAgfQogICAgXQogIH0sCiAgInJlc291cmNlUGFja2FnZXMiOiBbCiAgICB7CiAgICAgICJuYW1lIjogIlNoYXJlZFJlc291cmNlcyIsCiAgICAgICJ0eXBlIjogIlNoYXJlZFJlc291cmNlcyIsCiAgICAgICJpdGVtcyI6IFsKICAgICAgICB7CiAgICAgICAgICAibmFtZSI6ICJDWTI0U1UxMCIsCiAgICAgICAgICAicGF0aCI6ICJCYXNlVGhlbWVzL0NZMjRTVTEwLmpzb24iLAogICAgICAgICAgInR5cGUiOiAiQmFzZVRoZW1lIgogICAgICAgIH0KICAgICAgXQogICAgfQogIF0sCiAgInNldHRpbmdzIjogewogICAgInVzZVN0eWxhYmxlVmlzdWFsQ29udGFpbmVySGVhZGVyIjogdHJ1ZSwKICAgICJkZWZhdWx0RHJpbGxGaWx0ZXJPdGhlclZpc3VhbHMiOiB0cnVlLAogICAgImFsbG93Q2hhbmdlRmlsdGVyVHlwZXMiOiB0cnVlLAogICAgInVzZUVuaGFuY2VkVG9vbHRpcHMiOiB0cnVlLAogICAgInVzZURlZmF1bHRBZ2dyZWdhdGVEaXNwbGF5TmFtZSI6IHRydWUKICB9Cn0=", "payloadType": "InlineBase64"}, {"path": "definition/version.json", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uL3ZlcnNpb25NZXRhZGF0YS8xLjAuMC9zY2hlbWEuanNvbiIsCiAgInZlcnNpb24iOiAiMi4wLjAiCn0=", "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"}]}}' + body: '{"displayName": "fabcli000001", "type": "Report", "folderId": null, "definition": + {"parts": [{"path": "definition.pbir", "payload": "eyJ2ZXJzaW9uIjogIjQuMCIsICJkYXRhc2V0UmVmZXJlbmNlIjogeyJieVBhdGgiOiBudWxsLCAiYnlDb25uZWN0aW9uIjogeyJjb25uZWN0aW9uU3RyaW5nIjogIkRhdGEgU291cmNlPXBvd2VyYmk6Ly9hcGkucG93ZXJiaS5jb20vdjEuMC9teW9yZy9ta2RpcjtJbml0aWFsIENhdGFsb2c9cjM7SW50ZWdyYXRlZCBTZWN1cml0eT1DbGFpbXNUb2tlbiIsICJwYmlTZXJ2aWNlTW9kZWxJZCI6IG51bGwsICJwYmlNb2RlbFZpcnR1YWxTZXJ2ZXJOYW1lIjogInNvYmVfd293dmlydHVhbHNlcnZlciIsICJwYmlNb2RlbERhdGFiYXNlTmFtZSI6ICIzZmJlZTJjYS1hZWJkLTQ5ZmQtYTAzYS0wYmQ1YmQyYTY2YTUiLCAibmFtZSI6ICJFbnRpdHlEYXRhU291cmNlIiwgImNvbm5lY3Rpb25UeXBlIjogInBiaVNlcnZpY2VYbWxhU3R5bGVMaXZlIn19fQ==", + "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"}]}}' headers: Accept: - '*/*' @@ -308,13 +343,12 @@ interactions: - keep-alive Content-Length: - '21761' - 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/81065bd8-e334-4715-b170-dedb4cd514e6/reports + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/reports response: body: string: 'null' @@ -330,13 +364,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:28:28 GMT + - Fri, 22 May 2026 09:02:08 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/84925a42-828f-474c-bc74-47f59d2c69e9 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0dc4622e-9277-4f11-97d0-cb21b6db8973 Pragma: - no-cache RequestId: - - 7f565388-02a9-4f9c-961a-39fddac0c7bd + - c064c6f4-b981-488d-9729-0240745d6b1e Retry-After: - '20' Strict-Transport-Security: @@ -350,7 +384,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 84925a42-828f-474c-bc74-47f59d2c69e9 + - 0dc4622e-9277-4f11-97d0-cb21b6db8973 status: code: 202 message: Accepted @@ -366,13 +400,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/84925a42-828f-474c-bc74-47f59d2c69e9 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0dc4622e-9277-4f11-97d0-cb21b6db8973 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2025-12-31T14:28:28.557812", - "lastUpdatedTimeUtc": "2025-12-31T14:28:28.9171838", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-22T09:02:09.118259", + "lastUpdatedTimeUtc": "2026-05-22T09:02:09.4394724", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -386,13 +420,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:28:48 GMT + - Fri, 22 May 2026 09:02:29 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/84925a42-828f-474c-bc74-47f59d2c69e9/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0dc4622e-9277-4f11-97d0-cb21b6db8973/result Pragma: - no-cache RequestId: - - d4238159-6e98-43be-9bce-a582a04658a4 + - e1fb382a-22fb-4bca-be9e-17412a07392b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -400,7 +434,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 84925a42-828f-474c-bc74-47f59d2c69e9 + - 0dc4622e-9277-4f11-97d0-cb21b6db8973 status: code: 200 message: OK @@ -416,13 +450,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/84925a42-828f-474c-bc74-47f59d2c69e9/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/0dc4622e-9277-4f11-97d0-cb21b6db8973/result response: body: - string: '{"id": "2402afe3-6ef3-4a96-b68e-14311c00f888", "type": "Report", "displayName": - "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}' + string: '{"id": "f965063d-e1d0-42b3-8ff0-137dc4f20def", "type": "Report", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId @@ -433,11 +467,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 31 Dec 2025 14:28:50 GMT + - Fri, 22 May 2026 09:02:30 GMT Pragma: - no-cache RequestId: - - fd2061c1-5274-479d-86fb-5290449e9af6 + - d24ca469-c3bf-4782-aefa-8a4ddefca84b Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -461,14 +495,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -477,15 +512,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2061' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:28:50 GMT + - Fri, 22 May 2026 09:02:31 GMT Pragma: - no-cache RequestId: - - 8efd2c13-8ddb-4cac-97a8-032840caa459 + - 9e400662-3d6c-44da-be51-efdc712ac631 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -511,16 +546,23 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "2402afe3-6ef3-4a96-b68e-14311c00f888", "type": "Report", - "displayName": "fabcli000001", "workspaceId": - "81065bd8-e334-4715-b170-dedb4cd514e6"}, {"id": "3e75a415-b907-4295-b163-a746b3af88d1", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "f965063d-e1d0-42b3-8ff0-137dc4f20def", "type": "Report", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -529,15 +571,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '231' + - '366' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:28:51 GMT + - Fri, 22 May 2026 09:02:31 GMT Pragma: - no-cache RequestId: - - 65f3a2a8-0218-4023-b6fc-d1ec74a497ca + - 8da55e1f-6fe0-4ef3-adfd-a060b71c967d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -563,16 +605,23 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "2402afe3-6ef3-4a96-b68e-14311c00f888", "type": "Report", - "displayName": "fabcli000001", "workspaceId": - "81065bd8-e334-4715-b170-dedb4cd514e6"}, {"id": "3e75a415-b907-4295-b163-a746b3af88d1", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "f965063d-e1d0-42b3-8ff0-137dc4f20def", "type": "Report", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -581,15 +630,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '231' + - '366' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:28:51 GMT + - Fri, 22 May 2026 09:02:32 GMT Pragma: - no-cache RequestId: - - 059938fb-39c6-4bee-ae15-24520602fd3c + - 4f46b97d-4cb4-4952-bc35-38ab12793f66 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -604,7 +653,15 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000002", "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": "fabcli000002", "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: - '*/*' @@ -614,13 +671,12 @@ interactions: - keep-alive Content-Length: - '2635' - 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/81065bd8-e334-4715-b170-dedb4cd514e6/semanticModels + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/semanticModels response: body: string: 'null' @@ -636,13 +692,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:28:52 GMT + - Fri, 22 May 2026 09:02:33 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/37f2ec5f-2774-4c46-80fb-7b3f8b0a7490 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7df75d9b-2667-4e7f-83f6-373ac2c97409 Pragma: - no-cache RequestId: - - 3bdc9008-248e-4398-9b0a-8c8cae910b44 + - d2d86cf7-f5e8-4c4c-a473-eb6d9fed7080 Retry-After: - '20' Strict-Transport-Security: @@ -656,7 +712,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 37f2ec5f-2774-4c46-80fb-7b3f8b0a7490 + - 7df75d9b-2667-4e7f-83f6-373ac2c97409 status: code: 202 message: Accepted @@ -672,13 +728,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/37f2ec5f-2774-4c46-80fb-7b3f8b0a7490 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7df75d9b-2667-4e7f-83f6-373ac2c97409 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2025-12-31T14:28:52.7339491", - "lastUpdatedTimeUtc": "2025-12-31T14:29:04.0510431", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-22T09:02:34.3497986", + "lastUpdatedTimeUtc": "2026-05-22T09:02:45.37431", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -688,17 +744,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '133' + - '131' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:29:12 GMT + - Fri, 22 May 2026 09:02:54 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/37f2ec5f-2774-4c46-80fb-7b3f8b0a7490/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7df75d9b-2667-4e7f-83f6-373ac2c97409/result Pragma: - no-cache RequestId: - - 1f631e0b-32cd-4152-b546-aabb9144ef4a + - b7c26714-75b8-48f0-aa98-f8493254a7bb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -706,7 +762,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - 37f2ec5f-2774-4c46-80fb-7b3f8b0a7490 + - 7df75d9b-2667-4e7f-83f6-373ac2c97409 status: code: 200 message: OK @@ -722,13 +778,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/37f2ec5f-2774-4c46-80fb-7b3f8b0a7490/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7df75d9b-2667-4e7f-83f6-373ac2c97409/result response: body: - string: '{"id": "b10e546f-82bb-4abc-a8db-be0e0e79d1ba", "type": "SemanticModel", - "displayName": "fabcli000002", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}' + string: '{"id": "12c82326-e832-4ff4-8843-7c586ff3fbf3", "type": "SemanticModel", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId @@ -739,11 +795,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 31 Dec 2025 14:29:14 GMT + - Fri, 22 May 2026 09:02:55 GMT Pragma: - no-cache RequestId: - - db7027be-f74d-45f0-bce5-5a560247ab1b + - ca6339b5-363e-4052-b85b-418b5f594ac7 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -767,14 +823,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -783,15 +840,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2061' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:29:14 GMT + - Fri, 22 May 2026 09:02:56 GMT Pragma: - no-cache RequestId: - - dffaac48-cb99-4f15-b7c8-acc819496ffa + - 7f4365b6-60d8-4862-ba85-08c0d89c7d6f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -817,18 +874,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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "2402afe3-6ef3-4a96-b68e-14311c00f888", "type": "Report", - "displayName": "fabcli000001", "workspaceId": - "81065bd8-e334-4715-b170-dedb4cd514e6"}, {"id": "3e75a415-b907-4295-b163-a746b3af88d1", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, {"id": "b10e546f-82bb-4abc-a8db-be0e0e79d1ba", - "type": "SemanticModel", "displayName": "fabcli000002", "description": "", - "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "f965063d-e1d0-42b3-8ff0-137dc4f20def", "type": "Report", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "12c82326-e832-4ff4-8843-7c586ff3fbf3", "type": "SemanticModel", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -837,15 +901,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '266' + - '400' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:29:15 GMT + - Fri, 22 May 2026 09:02:56 GMT Pragma: - no-cache RequestId: - - 51443058-edf3-42c8-b7ca-802578d45cb5 + - 4778a1f6-4252-4520-b76a-ebd28a0dadad Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -871,13 +935,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/81065bd8-e334-4715-b170-dedb4cd514e6/semanticModels/b10e546f-82bb-4abc-a8db-be0e0e79d1ba + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/semanticModels/12c82326-e832-4ff4-8843-7c586ff3fbf3 response: body: - string: '{"id": "b10e546f-82bb-4abc-a8db-be0e0e79d1ba", "type": "SemanticModel", - "displayName": "fabcli000002", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}' + string: '{"id": "12c82326-e832-4ff4-8843-7c586ff3fbf3", "type": "SemanticModel", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -890,13 +954,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:29:16 GMT + - Fri, 22 May 2026 09:02:58 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 55b31866-a2b4-4b09-a8be-810252bd7ded + - 1c351e2f-102e-40c4-9943-40a756fc1705 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -922,9 +986,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/81065bd8-e334-4715-b170-dedb4cd514e6/items/b10e546f-82bb-4abc-a8db-be0e0e79d1ba/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/12c82326-e832-4ff4-8843-7c586ff3fbf3/connections response: body: string: '{"value": []}' @@ -940,11 +1004,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:29:15 GMT + - Fri, 22 May 2026 09:02:59 GMT Pragma: - no-cache RequestId: - - d0a4467b-7900-4628-b3d9-9a40c923b29b + - aee681ce-7ff1-411a-bd59-d20533558ac5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -970,14 +1034,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -986,15 +1051,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2061' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:29:17 GMT + - Fri, 22 May 2026 09:02:59 GMT Pragma: - no-cache RequestId: - - 56ab112f-4ca2-4e25-a66c-7ac02d7e51f1 + - ba0d1c23-b5ce-492e-a82f-400748a3a19f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1020,18 +1085,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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "2402afe3-6ef3-4a96-b68e-14311c00f888", "type": "Report", - "displayName": "fabcli000001", "workspaceId": - "81065bd8-e334-4715-b170-dedb4cd514e6"}, {"id": "3e75a415-b907-4295-b163-a746b3af88d1", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, {"id": "b10e546f-82bb-4abc-a8db-be0e0e79d1ba", - "type": "SemanticModel", "displayName": "fabcli000002", "description": "", - "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "f965063d-e1d0-42b3-8ff0-137dc4f20def", "type": "Report", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "12c82326-e832-4ff4-8843-7c586ff3fbf3", "type": "SemanticModel", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1040,15 +1112,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '266' + - '400' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:29:17 GMT + - Fri, 22 May 2026 09:03:00 GMT Pragma: - no-cache RequestId: - - 691769d1-2542-4b32-bbbc-cace4e226bb4 + - 3a10ba9a-7478-4e26-90bc-fac520b241b2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1076,9 +1148,9 @@ interactions: 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/81065bd8-e334-4715-b170-dedb4cd514e6/items/2402afe3-6ef3-4a96-b68e-14311c00f888/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/f965063d-e1d0-42b3-8ff0-137dc4f20def/getDefinition response: body: string: 'null' @@ -1094,13 +1166,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:29:18 GMT + - Fri, 22 May 2026 09:03:02 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c9626f47-e9fc-4590-8df8-84fd977177c2 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/65e77705-44fc-4e66-be90-ff72954bd7d4 Pragma: - no-cache RequestId: - - a517484d-f128-4648-9295-e20501a5a809 + - 1744488b-a478-430f-87f8-f763a8e8796a Retry-After: - '20' Strict-Transport-Security: @@ -1114,7 +1186,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - c9626f47-e9fc-4590-8df8-84fd977177c2 + - 65e77705-44fc-4e66-be90-ff72954bd7d4 status: code: 202 message: Accepted @@ -1130,13 +1202,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c9626f47-e9fc-4590-8df8-84fd977177c2 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/65e77705-44fc-4e66-be90-ff72954bd7d4 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2025-12-31T14:29:18.4443873", - "lastUpdatedTimeUtc": "2025-12-31T14:29:18.6482471", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-22T09:03:02.0940751", + "lastUpdatedTimeUtc": "2026-05-22T09:03:02.334631", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1146,17 +1218,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '130' + - '129' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:29:38 GMT + - Fri, 22 May 2026 09:03:22 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c9626f47-e9fc-4590-8df8-84fd977177c2/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/65e77705-44fc-4e66-be90-ff72954bd7d4/result Pragma: - no-cache RequestId: - - 13100865-5cac-4d2e-b5b0-7a3b9bef3459 + - bb6beeb4-7062-48d0-95d2-c7a21e59403a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1164,7 +1236,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - c9626f47-e9fc-4590-8df8-84fd977177c2 + - 65e77705-44fc-4e66-be90-ff72954bd7d4 status: code: 200 message: OK @@ -1180,13 +1252,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/c9626f47-e9fc-4590-8df8-84fd977177c2/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/65e77705-44fc-4e66-be90-ff72954bd7d4/result response: body: string: '{"definition": {"format": "PBIR", "parts": [{"path": "definition.pbir", - "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgInZlcnNpb24iOiAiNC4wIiwKICAiZGF0YXNldFJlZmVyZW5jZSI6IHsKICAgICJieUNvbm5lY3Rpb24iOiB7CiAgICAgICJjb25uZWN0aW9uU3RyaW5nIjogIkRhdGEgU291cmNlPXBvd2VyYmk6Ly9hcGkucG93ZXJiaS5jb20vdjEuMC9teW9yZy9mYWJyaWNjbGlfV29ya3NwYWNlUGVyVGVzdGNsYXNzXzAwMDAwMTtpbml0aWFsIGNhdGFsb2c9ZmFiY2xpMDAwMDAxX2F1dG87aW50ZWdyYXRlZCBzZWN1cml0eT1DbGFpbXNUb2tlbjtzZW1hbnRpY21vZGVsaWQ9M2U3NWE0MTUtYjkwNy00Mjk1LWIxNjMtYTc0NmIzYWY4OGQxIgogICAgfQogIH0KfQ==", + "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgInZlcnNpb24iOiAiNC4wIiwKICAiZGF0YXNldFJlZmVyZW5jZSI6IHsKICAgICJieUNvbm5lY3Rpb24iOiB7CiAgICAgICJjb25uZWN0aW9uU3RyaW5nIjogIkRhdGEgU291cmNlPXBvd2VyYmk6Ly9hcGkucG93ZXJiaS5jb20vdjEuMC9teW9yZy9mYWJyaWNjbGlfV29ya3NwYWNlUGVyVGVzdGNsYXNzXzAwMDAwMTtpbml0aWFsIGNhdGFsb2c9ZmFiY2xpMDAwMDAxX2F1dG87aW50ZWdyYXRlZCBzZWN1cml0eT1DbGFpbXNUb2tlbjtzZW1hbnRpY21vZGVsaWQ9M2ZiZWUyY2EtYWViZC00OWZkLWEwM2EtMGJkNWJkMmE2NmE1IgogICAgfQogIH0KfQ==", "payloadType": "InlineBase64"}, {"path": "StaticResources/SharedResources/BaseThemes/CY24SU10.json", "payload": "ewogICJuYW1lIjogIkNZMjRTVTEwIiwKICAiZGF0YUNvbG9ycyI6IFsKICAgICIjMTE4REZGIiwKICAgICIjMTIyMzlFIiwKICAgICIjRTY2QzM3IiwKICAgICIjNkIwMDdCIiwKICAgICIjRTA0NEE3IiwKICAgICIjNzQ0RUMyIiwKICAgICIjRDlCMzAwIiwKICAgICIjRDY0NTUwIiwKICAgICIjMTk3Mjc4IiwKICAgICIjMUFBQjQwIiwKICAgICIjMTVDNkY0IiwKICAgICIjNDA5MkZGIiwKICAgICIjRkZBMDU4IiwKICAgICIjQkU1REM5IiwKICAgICIjRjQ3MkQwIiwKICAgICIjQjVBMUZGIiwKICAgICIjQzRBMjAwIiwKICAgICIjRkY4MDgwIiwKICAgICIjMDBEQkJDIiwKICAgICIjNUJENjY3IiwKICAgICIjMDA5MUQ1IiwKICAgICIjNDY2OEM1IiwKICAgICIjRkY2MzAwIiwKICAgICIjOTkwMDhBIiwKICAgICIjRUMwMDhDIiwKICAgICIjNTMzMjg1IiwKICAgICIjOTk3MDBBIiwKICAgICIjRkY0MTQxIiwKICAgICIjMUY5QTg1IiwKICAgICIjMjU4OTFDIiwKICAgICIjMDA1N0EyIiwKICAgICIjMDAyMDUwIiwKICAgICIjQzk0RjBGIiwKICAgICIjNDUwRjU0IiwKICAgICIjQjYwMDY0IiwKICAgICIjMzQxMjRGIiwKICAgICIjNkE1QTI5IiwKICAgICIjMUFBQjQwIiwKICAgICIjQkExNDFBIiwKICAgICIjMEMzRDM3IiwKICAgICIjMEI1MTFGIgogIF0sCiAgImZvcmVncm91bmQiOiAiIzI1MjQyMyIsCiAgImZvcmVncm91bmROZXV0cmFsU2Vjb25kYXJ5IjogIiM2MDVFNUMiLAogICJmb3JlZ3JvdW5kTmV1dHJhbFRlcnRpYXJ5IjogIiNCM0IwQUQiLAogICJiYWNrZ3JvdW5kIjogIiNGRkZGRkYiLAogICJiYWNrZ3JvdW5kTGlnaHQiOiAiI0YzRjJGMSIsCiAgImJhY2tncm91bmROZXV0cmFsIjogIiNDOEM2QzQiLAogICJ0YWJsZUFjY2VudCI6ICIjMTE4REZGIiwKICAiZ29vZCI6ICIjMUFBQjQwIiwKICAibmV1dHJhbCI6ICIjRDlCMzAwIiwKICAiYmFkIjogIiNENjQ1NTQiLAogICJtYXhpbXVtIjogIiMxMThERkYiLAogICJjZW50ZXIiOiAiI0Q5QjMwMCIsCiAgIm1pbmltdW0iOiAiI0RFRUZGRiIsCiAgIm51bGwiOiAiI0ZGN0Y0OCIsCiAgImh5cGVybGluayI6ICIjMDA3OGQ0IiwKICAidmlzaXRlZEh5cGVybGluayI6ICIjMDA3OGQ0IiwKICAidGV4dENsYXNzZXMiOiB7CiAgICAiY2FsbG91dCI6IHsKICAgICAgImZvbnRTaXplIjogNDUsCiAgICAgICJmb250RmFjZSI6ICJESU4iLAogICAgICAiY29sb3IiOiAiIzI1MjQyMyIKICAgIH0sCiAgICAidGl0bGUiOiB7CiAgICAgICJmb250U2l6ZSI6IDEyLAogICAgICAiZm9udEZhY2UiOiAiRElOIiwKICAgICAgImNvbG9yIjogIiMyNTI0MjMiCiAgICB9LAogICAgImhlYWRlciI6IHsKICAgICAgImZvbnRTaXplIjogMTIsCiAgICAgICJmb250RmFjZSI6ICJTZWdvZSBVSSBTZW1pYm9sZCIsCiAgICAgICJjb2xvciI6ICIjMjUyNDIzIgogICAgfSwKICAgICJsYWJlbCI6IHsKICAgICAgImZvbnRTaXplIjogMTAsCiAgICAgICJmb250RmFjZSI6ICJTZWdvZSBVSSIsCiAgICAgICJjb2xvciI6ICIjMjUyNDIzIgogICAgfQogIH0sCiAgInZpc3VhbFN0eWxlcyI6IHsKICAgICIqIjogewogICAgICAiKiI6IHsKICAgICAgICAiKiI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgIndvcmRXcmFwIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImxpbmUiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAwCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAib3V0bGluZSI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJwbG90QXJlYSI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJjYXRlZ29yeUF4aXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93QXhpc1RpdGxlIjogdHJ1ZSwKICAgICAgICAgICAgImdyaWRsaW5lU3R5bGUiOiAiZG90dGVkIiwKICAgICAgICAgICAgImNvbmNhdGVuYXRlTGFiZWxzIjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJ2YWx1ZUF4aXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93QXhpc1RpdGxlIjogdHJ1ZSwKICAgICAgICAgICAgImdyaWRsaW5lU3R5bGUiOiAiZG90dGVkIgogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInkyQXhpcyI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidGl0bGUiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJ0aXRsZVdyYXAiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGluZVN0eWxlcyI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInN0cm9rZVdpZHRoIjogMwogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgIndvcmRXcmFwIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUsCiAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAwCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiYm9yZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAid2lkdGgiOiAxCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAib3V0c3BhY2VQYW5lIjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZENvbG9yIjogewogICAgICAgICAgICAgICJzb2xpZCI6IHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZmZmZmZmIgogICAgICAgICAgICAgIH0KICAgICAgICAgICAgfSwKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJib3JkZXIiOiB0cnVlLAogICAgICAgICAgICAiYm9yZGVyQ29sb3IiOiB7CiAgICAgICAgICAgICAgInNvbGlkIjogewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNCM0IwQUQiCiAgICAgICAgICAgICAgfQogICAgICAgICAgICB9CiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZmlsdGVyQ2FyZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgIiRpZCI6ICJBcHBsaWVkIiwKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJmb3JlZ3JvdW5kQ29sb3IiOiB7CiAgICAgICAgICAgICAgInNvbGlkIjogewogICAgICAgICAgICAgICAgImNvbG9yIjogIiMyNTI0MjMiCiAgICAgICAgICAgICAgfQogICAgICAgICAgICB9LAogICAgICAgICAgICAiYm9yZGVyIjogdHJ1ZQogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgIiRpZCI6ICJBdmFpbGFibGUiLAogICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgImZvcmVncm91bmRDb2xvciI6IHsKICAgICAgICAgICAgICAic29saWQiOiB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzI1MjQyMyIKICAgICAgICAgICAgICB9CiAgICAgICAgICAgIH0sCiAgICAgICAgICAgICJib3JkZXIiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInNjYXR0ZXJDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJ1YmJsZXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJidWJibGVTaXplIjogLTEwLAogICAgICAgICAgICAibWFya2VyUmFuZ2VUeXBlIjogImF1dG8iCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZmlsbFBvaW50IjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJsZWdlbmQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93R3JhZGllbnRMZWdlbmQiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImxpbmVDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZm9yZWNhc3QiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJtYXRjaFNlcmllc0ludGVycG9sYXRpb24iOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgIm1hcCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJ1YmJsZXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJidWJibGVTaXplIjogLTEwLAogICAgICAgICAgICAibWFya2VyUmFuZ2VUeXBlIjogImF1dG8iCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImF6dXJlTWFwIjogewogICAgICAiKiI6IHsKICAgICAgICAiYnViYmxlTGF5ZXIiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJidWJibGVSYWRpdXMiOiA4LAogICAgICAgICAgICAibWluQnViYmxlUmFkaXVzIjogOCwKICAgICAgICAgICAgIm1heFJhZGl1cyI6IDQwCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiYmFyQ2hhcnQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJiYXJIZWlnaHQiOiAzLAogICAgICAgICAgICAidGhpY2tuZXNzIjogMwogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJwaWVDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImxlZ2VuZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiB0cnVlLAogICAgICAgICAgICAicG9zaXRpb24iOiAiUmlnaHRDZW50ZXIiCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGFiZWxzIjogWwogICAgICAgICAgewogICAgICAgICAgICAibGFiZWxTdHlsZSI6ICJEYXRhIHZhbHVlLCBwZXJjZW50IG9mIHRvdGFsIgogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJkb251dENoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUsCiAgICAgICAgICAgICJwb3NpdGlvbiI6ICJSaWdodENlbnRlciIKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJsYWJlbHMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJsYWJlbFN0eWxlIjogIkRhdGEgdmFsdWUsIHBlcmNlbnQgb2YgdG90YWwiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInBpdm90VGFibGUiOiB7CiAgICAgICIqIjogewogICAgICAgICJyb3dIZWFkZXJzIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0V4cGFuZENvbGxhcHNlQnV0dG9ucyI6IHRydWUsCiAgICAgICAgICAgICJsZWdhY3lTdHlsZURpc2FibGVkIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJtdWx0aVJvd0NhcmQiOiB7CiAgICAgICIqIjogewogICAgICAgICJjYXJkIjogWwogICAgICAgICAgewogICAgICAgICAgICAib3V0bGluZVdlaWdodCI6IDIsCiAgICAgICAgICAgICJiYXJTaG93IjogdHJ1ZSwKICAgICAgICAgICAgImJhcldlaWdodCI6IDIKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAia3BpIjogewogICAgICAiKiI6IHsKICAgICAgICAidHJlbmRsaW5lIjogWwogICAgICAgICAgewogICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMjAKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAiY2FyZFZpc3VhbCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImxheW91dCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgIm1heFRpbGVzIjogMwogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgIm92ZXJmbG93IjogWwogICAgICAgICAgewogICAgICAgICAgICAidHlwZSI6IDAKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJpbWFnZSI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImZpeGVkU2l6ZSI6IGZhbHNlCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICAiaW1hZ2VBcmVhU2l6ZSI6IDUwCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImFkdmFuY2VkU2xpY2VyVmlzdWFsIjogewogICAgICAiKiI6IHsKICAgICAgICAibGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAibWF4VGlsZXMiOiAzCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInNsaWNlciI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImRhdGUiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJoaWRlRGF0ZVBpY2tlckJ1dHRvbiI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiaXRlbXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJwYWRkaW5nIjogNCwKICAgICAgICAgICAgImFjY2Vzc2liaWxpdHlDb250cmFzdFByb3BlcnRpZXMiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgIndhdGVyZmFsbENoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImNvbHVtbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImNsdXN0ZXJlZENvbHVtbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImh1bmRyZWRQZXJjZW50U3RhY2tlZENvbHVtbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImJhckNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImNsdXN0ZXJlZEJhckNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImh1bmRyZWRQZXJjZW50U3RhY2tlZEJhckNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImFyZWFDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInN0YWNrZWRBcmVhQ2hhcnQiOiB7CiAgICAgICIqIjogewogICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgewogICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLAogICAgICAgICAgICAiZ3JpZExpbmVUeXBlIjogImlubmVyIgogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJsaW5lQ2x1c3RlcmVkQ29sdW1uQ29tYm9DaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImxpbmVTdGFja2VkQ29sdW1uQ29tYm9DaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInJpYmJvbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAic21hbGxNdWx0aXBsZXNMYXlvdXQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJiYWNrZ3JvdW5kVHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgImdyaWRMaW5lVHlwZSI6ICJpbm5lciIKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJ2YWx1ZUF4aXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJodW5kcmVkUGVyY2VudFN0YWNrZWRBcmVhQ2hhcnQiOiB7CiAgICAgICIqIjogewogICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgewogICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLAogICAgICAgICAgICAiZ3JpZExpbmVUeXBlIjogImlubmVyIgogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJncm91cCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJhY2tncm91bmQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAiYmFzaWNTaGFwZSI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJhY2tncm91bmQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgewogICAgICAgICAgICAia2VlcExheWVyT3JkZXIiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInNoYXBlIjogewogICAgICAiKiI6IHsKICAgICAgICAiYmFja2dyb3VuZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJrZWVwTGF5ZXJPcmRlciI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJ2aXN1YWxIZWFkZXIiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAiaW1hZ2UiOiB7CiAgICAgICIqIjogewogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImtlZXBMYXllck9yZGVyIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImxvY2tBc3BlY3QiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJhY3Rpb25CdXR0b24iOiB7CiAgICAgICIqIjogewogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInBhZ2VOYXZpZ2F0b3IiOiB7CiAgICAgICIqIjogewogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImJvb2ttYXJrTmF2aWdhdG9yIjogewogICAgICAiKiI6IHsKICAgICAgICAiYmFja2dyb3VuZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJ0ZXh0Ym94IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImtlZXBMYXllck9yZGVyIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJwYWdlIjogewogICAgICAiKiI6IHsKICAgICAgICAib3V0c3BhY2UiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJjb2xvciI6IHsKICAgICAgICAgICAgICAic29saWQiOiB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiI0ZGRkZGRiIKICAgICAgICAgICAgICB9CiAgICAgICAgICAgIH0KICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMTAwCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9CiAgfQp9", "payloadType": "InlineBase64"}, {"path": "definition/version.json", "payload": @@ -1197,7 +1269,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: @@ -1209,11 +1281,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 31 Dec 2025 14:29:39 GMT + - Fri, 22 May 2026 09:03:23 GMT Pragma: - no-cache RequestId: - - c25d3e4d-9f78-417d-9906-e5523896fd44 + - 6792c5a8-b915-46d9-a9f0-ddf682583f65 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1227,7 +1299,7 @@ interactions: message: OK - request: body: '{"definition": {"format": "PBIR", "parts": [{"path": "definition.pbir", - "payload": "eyIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsICJ2ZXJzaW9uIjogIjQuMCIsICJkYXRhc2V0UmVmZXJlbmNlIjogeyJieUNvbm5lY3Rpb24iOiB7ImNvbm5lY3Rpb25TdHJpbmciOiAiRGF0YSBTb3VyY2U9cGJpYXp1cmU6Ly9hcGkucG93ZXJiaS5jb207SW5pdGlhbCBDYXRhbG9nPWZhYnJpY2NsaV9Xb3Jrc3BhY2VQZXJUZXN0Y2xhc3NfMDAwMDAxL2ZhYmNsaTAwMDAwMjtzZW1hbnRpY21vZGVsaWQ9YjEwZTU0NmYtODJiYi00YWJjLWE4ZGItYmUwZTBlNzlkMWJhIn19fQ==", + "payload": "eyIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsICJ2ZXJzaW9uIjogIjQuMCIsICJkYXRhc2V0UmVmZXJlbmNlIjogeyJieUNvbm5lY3Rpb24iOiB7ImNvbm5lY3Rpb25TdHJpbmciOiAiRGF0YSBTb3VyY2U9cGJpYXp1cmU6Ly9hcGkucG93ZXJiaS5jb207SW5pdGlhbCBDYXRhbG9nPWZhYnJpY2NsaV9Xb3Jrc3BhY2VQZXJUZXN0Y2xhc3NfMDAwMDAxL2ZhYmNsaTAwMDAwMjtzZW1hbnRpY21vZGVsaWQ9MTJjODIzMjYtZTgzMi00ZmY0LTg4NDMtN2M1ODZmZjNmYmYzIn19fQ==", "payloadType": "InlineBase64"}, {"path": "StaticResources/SharedResources/BaseThemes/CY24SU10.json", "payload": "eyJuYW1lIjogIkNZMjRTVTEwIiwgImRhdGFDb2xvcnMiOiBbIiMxMThERkYiLCAiIzEyMjM5RSIsICIjRTY2QzM3IiwgIiM2QjAwN0IiLCAiI0UwNDRBNyIsICIjNzQ0RUMyIiwgIiNEOUIzMDAiLCAiI0Q2NDU1MCIsICIjMTk3Mjc4IiwgIiMxQUFCNDAiLCAiIzE1QzZGNCIsICIjNDA5MkZGIiwgIiNGRkEwNTgiLCAiI0JFNURDOSIsICIjRjQ3MkQwIiwgIiNCNUExRkYiLCAiI0M0QTIwMCIsICIjRkY4MDgwIiwgIiMwMERCQkMiLCAiIzVCRDY2NyIsICIjMDA5MUQ1IiwgIiM0NjY4QzUiLCAiI0ZGNjMwMCIsICIjOTkwMDhBIiwgIiNFQzAwOEMiLCAiIzUzMzI4NSIsICIjOTk3MDBBIiwgIiNGRjQxNDEiLCAiIzFGOUE4NSIsICIjMjU4OTFDIiwgIiMwMDU3QTIiLCAiIzAwMjA1MCIsICIjQzk0RjBGIiwgIiM0NTBGNTQiLCAiI0I2MDA2NCIsICIjMzQxMjRGIiwgIiM2QTVBMjkiLCAiIzFBQUI0MCIsICIjQkExNDFBIiwgIiMwQzNEMzciLCAiIzBCNTExRiJdLCAiZm9yZWdyb3VuZCI6ICIjMjUyNDIzIiwgImZvcmVncm91bmROZXV0cmFsU2Vjb25kYXJ5IjogIiM2MDVFNUMiLCAiZm9yZWdyb3VuZE5ldXRyYWxUZXJ0aWFyeSI6ICIjQjNCMEFEIiwgImJhY2tncm91bmQiOiAiI0ZGRkZGRiIsICJiYWNrZ3JvdW5kTGlnaHQiOiAiI0YzRjJGMSIsICJiYWNrZ3JvdW5kTmV1dHJhbCI6ICIjQzhDNkM0IiwgInRhYmxlQWNjZW50IjogIiMxMThERkYiLCAiZ29vZCI6ICIjMUFBQjQwIiwgIm5ldXRyYWwiOiAiI0Q5QjMwMCIsICJiYWQiOiAiI0Q2NDU1NCIsICJtYXhpbXVtIjogIiMxMThERkYiLCAiY2VudGVyIjogIiNEOUIzMDAiLCAibWluaW11bSI6ICIjREVFRkZGIiwgIm51bGwiOiAiI0ZGN0Y0OCIsICJoeXBlcmxpbmsiOiAiIzAwNzhkNCIsICJ2aXNpdGVkSHlwZXJsaW5rIjogIiMwMDc4ZDQiLCAidGV4dENsYXNzZXMiOiB7ImNhbGxvdXQiOiB7ImZvbnRTaXplIjogNDUsICJmb250RmFjZSI6ICJESU4iLCAiY29sb3IiOiAiIzI1MjQyMyJ9LCAidGl0bGUiOiB7ImZvbnRTaXplIjogMTIsICJmb250RmFjZSI6ICJESU4iLCAiY29sb3IiOiAiIzI1MjQyMyJ9LCAiaGVhZGVyIjogeyJmb250U2l6ZSI6IDEyLCAiZm9udEZhY2UiOiAiU2Vnb2UgVUkgU2VtaWJvbGQiLCAiY29sb3IiOiAiIzI1MjQyMyJ9LCAibGFiZWwiOiB7ImZvbnRTaXplIjogMTAsICJmb250RmFjZSI6ICJTZWdvZSBVSSIsICJjb2xvciI6ICIjMjUyNDIzIn19LCAidmlzdWFsU3R5bGVzIjogeyIqIjogeyIqIjogeyIqIjogW3sid29yZFdyYXAiOiB0cnVlfV0sICJsaW5lIjogW3sidHJhbnNwYXJlbmN5IjogMH1dLCAib3V0bGluZSI6IFt7InRyYW5zcGFyZW5jeSI6IDB9XSwgInBsb3RBcmVhIjogW3sidHJhbnNwYXJlbmN5IjogMH1dLCAiY2F0ZWdvcnlBeGlzIjogW3sic2hvd0F4aXNUaXRsZSI6IHRydWUsICJncmlkbGluZVN0eWxlIjogImRvdHRlZCIsICJjb25jYXRlbmF0ZUxhYmVscyI6IGZhbHNlfV0sICJ2YWx1ZUF4aXMiOiBbeyJzaG93QXhpc1RpdGxlIjogdHJ1ZSwgImdyaWRsaW5lU3R5bGUiOiAiZG90dGVkIn1dLCAieTJBeGlzIjogW3sic2hvdyI6IHRydWV9XSwgInRpdGxlIjogW3sidGl0bGVXcmFwIjogdHJ1ZX1dLCAibGluZVN0eWxlcyI6IFt7InN0cm9rZVdpZHRoIjogM31dLCAid29yZFdyYXAiOiBbeyJzaG93IjogdHJ1ZX1dLCAiYmFja2dyb3VuZCI6IFt7InNob3ciOiB0cnVlLCAidHJhbnNwYXJlbmN5IjogMH1dLCAiYm9yZGVyIjogW3sid2lkdGgiOiAxfV0sICJvdXRzcGFjZVBhbmUiOiBbeyJiYWNrZ3JvdW5kQ29sb3IiOiB7InNvbGlkIjogeyJjb2xvciI6ICIjZmZmZmZmIn19LCAidHJhbnNwYXJlbmN5IjogMCwgImJvcmRlciI6IHRydWUsICJib3JkZXJDb2xvciI6IHsic29saWQiOiB7ImNvbG9yIjogIiNCM0IwQUQifX19XSwgImZpbHRlckNhcmQiOiBbeyIkaWQiOiAiQXBwbGllZCIsICJ0cmFuc3BhcmVuY3kiOiAwLCAiZm9yZWdyb3VuZENvbG9yIjogeyJzb2xpZCI6IHsiY29sb3IiOiAiIzI1MjQyMyJ9fSwgImJvcmRlciI6IHRydWV9LCB7IiRpZCI6ICJBdmFpbGFibGUiLCAidHJhbnNwYXJlbmN5IjogMCwgImZvcmVncm91bmRDb2xvciI6IHsic29saWQiOiB7ImNvbG9yIjogIiMyNTI0MjMifX0sICJib3JkZXIiOiB0cnVlfV19fSwgInNjYXR0ZXJDaGFydCI6IHsiKiI6IHsiYnViYmxlcyI6IFt7ImJ1YmJsZVNpemUiOiAtMTAsICJtYXJrZXJSYW5nZVR5cGUiOiAiYXV0byJ9XSwgImdlbmVyYWwiOiBbeyJyZXNwb25zaXZlIjogdHJ1ZX1dLCAiZmlsbFBvaW50IjogW3sic2hvdyI6IHRydWV9XSwgImxlZ2VuZCI6IFt7InNob3dHcmFkaWVudExlZ2VuZCI6IHRydWV9XX19LCAibGluZUNoYXJ0IjogeyIqIjogeyJnZW5lcmFsIjogW3sicmVzcG9uc2l2ZSI6IHRydWV9XSwgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogW3siYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsICJncmlkTGluZVR5cGUiOiAiaW5uZXIifV0sICJmb3JlY2FzdCI6IFt7Im1hdGNoU2VyaWVzSW50ZXJwb2xhdGlvbiI6IHRydWV9XX19LCAibWFwIjogeyIqIjogeyJidWJibGVzIjogW3siYnViYmxlU2l6ZSI6IC0xMCwgIm1hcmtlclJhbmdlVHlwZSI6ICJhdXRvIn1dfX0sICJhenVyZU1hcCI6IHsiKiI6IHsiYnViYmxlTGF5ZXIiOiBbeyJidWJibGVSYWRpdXMiOiA4LCAibWluQnViYmxlUmFkaXVzIjogOCwgIm1heFJhZGl1cyI6IDQwfV0sICJiYXJDaGFydCI6IFt7ImJhckhlaWdodCI6IDMsICJ0aGlja25lc3MiOiAzfV19fSwgInBpZUNoYXJ0IjogeyIqIjogeyJsZWdlbmQiOiBbeyJzaG93IjogdHJ1ZSwgInBvc2l0aW9uIjogIlJpZ2h0Q2VudGVyIn1dLCAibGFiZWxzIjogW3sibGFiZWxTdHlsZSI6ICJEYXRhIHZhbHVlLCBwZXJjZW50IG9mIHRvdGFsIn1dfX0sICJkb251dENoYXJ0IjogeyIqIjogeyJsZWdlbmQiOiBbeyJzaG93IjogdHJ1ZSwgInBvc2l0aW9uIjogIlJpZ2h0Q2VudGVyIn1dLCAibGFiZWxzIjogW3sibGFiZWxTdHlsZSI6ICJEYXRhIHZhbHVlLCBwZXJjZW50IG9mIHRvdGFsIn1dfX0sICJwaXZvdFRhYmxlIjogeyIqIjogeyJyb3dIZWFkZXJzIjogW3sic2hvd0V4cGFuZENvbGxhcHNlQnV0dG9ucyI6IHRydWUsICJsZWdhY3lTdHlsZURpc2FibGVkIjogdHJ1ZX1dfX0sICJtdWx0aVJvd0NhcmQiOiB7IioiOiB7ImNhcmQiOiBbeyJvdXRsaW5lV2VpZ2h0IjogMiwgImJhclNob3ciOiB0cnVlLCAiYmFyV2VpZ2h0IjogMn1dfX0sICJrcGkiOiB7IioiOiB7InRyZW5kbGluZSI6IFt7InRyYW5zcGFyZW5jeSI6IDIwfV19fSwgImNhcmRWaXN1YWwiOiB7IioiOiB7ImxheW91dCI6IFt7Im1heFRpbGVzIjogM31dLCAib3ZlcmZsb3ciOiBbeyJ0eXBlIjogMH1dLCAiaW1hZ2UiOiBbeyJmaXhlZFNpemUiOiBmYWxzZX0sIHsiaW1hZ2VBcmVhU2l6ZSI6IDUwfV19fSwgImFkdmFuY2VkU2xpY2VyVmlzdWFsIjogeyIqIjogeyJsYXlvdXQiOiBbeyJtYXhUaWxlcyI6IDN9XX19LCAic2xpY2VyIjogeyIqIjogeyJnZW5lcmFsIjogW3sicmVzcG9uc2l2ZSI6IHRydWV9XSwgImRhdGUiOiBbeyJoaWRlRGF0ZVBpY2tlckJ1dHRvbiI6IGZhbHNlfV0sICJpdGVtcyI6IFt7InBhZGRpbmciOiA0LCAiYWNjZXNzaWJpbGl0eUNvbnRyYXN0UHJvcGVydGllcyI6IHRydWV9XX19LCAid2F0ZXJmYWxsQ2hhcnQiOiB7IioiOiB7ImdlbmVyYWwiOiBbeyJyZXNwb25zaXZlIjogdHJ1ZX1dfX0sICJjb2x1bW5DaGFydCI6IHsiKiI6IHsiZ2VuZXJhbCI6IFt7InJlc3BvbnNpdmUiOiB0cnVlfV0sICJsZWdlbmQiOiBbeyJzaG93R3JhZGllbnRMZWdlbmQiOiB0cnVlfV0sICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFt7ImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLCAiZ3JpZExpbmVUeXBlIjogImlubmVyIn1dfX0sICJjbHVzdGVyZWRDb2x1bW5DaGFydCI6IHsiKiI6IHsiZ2VuZXJhbCI6IFt7InJlc3BvbnNpdmUiOiB0cnVlfV0sICJsZWdlbmQiOiBbeyJzaG93R3JhZGllbnRMZWdlbmQiOiB0cnVlfV0sICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFt7ImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLCAiZ3JpZExpbmVUeXBlIjogImlubmVyIn1dfX0sICJodW5kcmVkUGVyY2VudFN0YWNrZWRDb2x1bW5DaGFydCI6IHsiKiI6IHsiZ2VuZXJhbCI6IFt7InJlc3BvbnNpdmUiOiB0cnVlfV0sICJsZWdlbmQiOiBbeyJzaG93R3JhZGllbnRMZWdlbmQiOiB0cnVlfV0sICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFt7ImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLCAiZ3JpZExpbmVUeXBlIjogImlubmVyIn1dfX0sICJiYXJDaGFydCI6IHsiKiI6IHsiZ2VuZXJhbCI6IFt7InJlc3BvbnNpdmUiOiB0cnVlfV0sICJsZWdlbmQiOiBbeyJzaG93R3JhZGllbnRMZWdlbmQiOiB0cnVlfV0sICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFt7ImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLCAiZ3JpZExpbmVUeXBlIjogImlubmVyIn1dfX0sICJjbHVzdGVyZWRCYXJDaGFydCI6IHsiKiI6IHsiZ2VuZXJhbCI6IFt7InJlc3BvbnNpdmUiOiB0cnVlfV0sICJsZWdlbmQiOiBbeyJzaG93R3JhZGllbnRMZWdlbmQiOiB0cnVlfV0sICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFt7ImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLCAiZ3JpZExpbmVUeXBlIjogImlubmVyIn1dfX0sICJodW5kcmVkUGVyY2VudFN0YWNrZWRCYXJDaGFydCI6IHsiKiI6IHsiZ2VuZXJhbCI6IFt7InJlc3BvbnNpdmUiOiB0cnVlfV0sICJsZWdlbmQiOiBbeyJzaG93R3JhZGllbnRMZWdlbmQiOiB0cnVlfV0sICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFt7ImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLCAiZ3JpZExpbmVUeXBlIjogImlubmVyIn1dfX0sICJhcmVhQ2hhcnQiOiB7IioiOiB7ImdlbmVyYWwiOiBbeyJyZXNwb25zaXZlIjogdHJ1ZX1dLCAic21hbGxNdWx0aXBsZXNMYXlvdXQiOiBbeyJiYWNrZ3JvdW5kVHJhbnNwYXJlbmN5IjogMCwgImdyaWRMaW5lVHlwZSI6ICJpbm5lciJ9XX19LCAic3RhY2tlZEFyZWFDaGFydCI6IHsiKiI6IHsiZ2VuZXJhbCI6IFt7InJlc3BvbnNpdmUiOiB0cnVlfV0sICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFt7ImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLCAiZ3JpZExpbmVUeXBlIjogImlubmVyIn1dfX0sICJsaW5lQ2x1c3RlcmVkQ29sdW1uQ29tYm9DaGFydCI6IHsiKiI6IHsiZ2VuZXJhbCI6IFt7InJlc3BvbnNpdmUiOiB0cnVlfV0sICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFt7ImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLCAiZ3JpZExpbmVUeXBlIjogImlubmVyIn1dfX0sICJsaW5lU3RhY2tlZENvbHVtbkNvbWJvQ2hhcnQiOiB7IioiOiB7ImdlbmVyYWwiOiBbeyJyZXNwb25zaXZlIjogdHJ1ZX1dLCAic21hbGxNdWx0aXBsZXNMYXlvdXQiOiBbeyJiYWNrZ3JvdW5kVHJhbnNwYXJlbmN5IjogMCwgImdyaWRMaW5lVHlwZSI6ICJpbm5lciJ9XX19LCAicmliYm9uQ2hhcnQiOiB7IioiOiB7ImdlbmVyYWwiOiBbeyJyZXNwb25zaXZlIjogdHJ1ZX1dLCAic21hbGxNdWx0aXBsZXNMYXlvdXQiOiBbeyJiYWNrZ3JvdW5kVHJhbnNwYXJlbmN5IjogMCwgImdyaWRMaW5lVHlwZSI6ICJpbm5lciJ9XSwgInZhbHVlQXhpcyI6IFt7InNob3ciOiB0cnVlfV19fSwgImh1bmRyZWRQZXJjZW50U3RhY2tlZEFyZWFDaGFydCI6IHsiKiI6IHsiZ2VuZXJhbCI6IFt7InJlc3BvbnNpdmUiOiB0cnVlfV0sICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFt7ImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLCAiZ3JpZExpbmVUeXBlIjogImlubmVyIn1dfX0sICJncm91cCI6IHsiKiI6IHsiYmFja2dyb3VuZCI6IFt7InNob3ciOiBmYWxzZX1dfX0sICJiYXNpY1NoYXBlIjogeyIqIjogeyJiYWNrZ3JvdW5kIjogW3sic2hvdyI6IGZhbHNlfV0sICJnZW5lcmFsIjogW3sia2VlcExheWVyT3JkZXIiOiB0cnVlfV0sICJ2aXN1YWxIZWFkZXIiOiBbeyJzaG93IjogZmFsc2V9XX19LCAic2hhcGUiOiB7IioiOiB7ImJhY2tncm91bmQiOiBbeyJzaG93IjogZmFsc2V9XSwgImdlbmVyYWwiOiBbeyJrZWVwTGF5ZXJPcmRlciI6IHRydWV9XSwgInZpc3VhbEhlYWRlciI6IFt7InNob3ciOiBmYWxzZX1dfX0sICJpbWFnZSI6IHsiKiI6IHsiYmFja2dyb3VuZCI6IFt7InNob3ciOiBmYWxzZX1dLCAiZ2VuZXJhbCI6IFt7ImtlZXBMYXllck9yZGVyIjogdHJ1ZX1dLCAidmlzdWFsSGVhZGVyIjogW3sic2hvdyI6IGZhbHNlfV0sICJsb2NrQXNwZWN0IjogW3sic2hvdyI6IHRydWV9XX19LCAiYWN0aW9uQnV0dG9uIjogeyIqIjogeyJiYWNrZ3JvdW5kIjogW3sic2hvdyI6IGZhbHNlfV0sICJ2aXN1YWxIZWFkZXIiOiBbeyJzaG93IjogZmFsc2V9XX19LCAicGFnZU5hdmlnYXRvciI6IHsiKiI6IHsiYmFja2dyb3VuZCI6IFt7InNob3ciOiBmYWxzZX1dLCAidmlzdWFsSGVhZGVyIjogW3sic2hvdyI6IGZhbHNlfV19fSwgImJvb2ttYXJrTmF2aWdhdG9yIjogeyIqIjogeyJiYWNrZ3JvdW5kIjogW3sic2hvdyI6IGZhbHNlfV0sICJ2aXN1YWxIZWFkZXIiOiBbeyJzaG93IjogZmFsc2V9XX19LCAidGV4dGJveCI6IHsiKiI6IHsiZ2VuZXJhbCI6IFt7ImtlZXBMYXllck9yZGVyIjogdHJ1ZX1dLCAidmlzdWFsSGVhZGVyIjogW3sic2hvdyI6IGZhbHNlfV19fSwgInBhZ2UiOiB7IioiOiB7Im91dHNwYWNlIjogW3siY29sb3IiOiB7InNvbGlkIjogeyJjb2xvciI6ICIjRkZGRkZGIn19fV0sICJiYWNrZ3JvdW5kIjogW3sidHJhbnNwYXJlbmN5IjogMTAwfV19fX19", "payloadType": "InlineBase64"}, {"path": "definition/version.json", "payload": @@ -1238,7 +1310,7 @@ interactions: "eyIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uL3BhZ2VzTWV0YWRhdGEvMS4wLjAvc2NoZW1hLmpzb24iLCAicGFnZU9yZGVyIjogWyJiOGM1ZmI4ZDYzNWY4OTgzMjZjNiJdLCAiYWN0aXZlUGFnZU5hbWUiOiAiYjhjNWZiOGQ2MzVmODk4MzI2YzYifQ==", "payloadType": "InlineBase64"}, {"path": "definition/pages/b8c5fb8d635f898326c6/page.json", "payload": "eyIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uL3BhZ2UvMS4zLjAvc2NoZW1hLmpzb24iLCAibmFtZSI6ICJiOGM1ZmI4ZDYzNWY4OTgzMjZjNiIsICJkaXNwbGF5TmFtZSI6ICJQYWdlIDEiLCAiZGlzcGxheU9wdGlvbiI6ICJGaXRUb1BhZ2UiLCAiaGVpZ2h0IjogNzIwLCAid2lkdGgiOiAxMjgwfQ==", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "eyIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLCAibWV0YWRhdGEiOiB7InR5cGUiOiAiUmVwb3J0IiwgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSIsICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiJ9LCAiY29uZmlnIjogeyJ2ZXJzaW9uIjogIjIuMCIsICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIn19", + "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "eyIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLCAibWV0YWRhdGEiOiB7InR5cGUiOiAiUmVwb3J0IiwgImRpc3BsYXlOYW1lIjogImZhYmNsaTAwMDAwMSJ9LCAiY29uZmlnIjogeyJ2ZXJzaW9uIjogIjIuMCIsICJsb2dpY2FsSWQiOiAiMDAwMDAwMDAtMDAwMC0wMDAwLTAwMDAtMDAwMDAwMDAwMDAwIn19", "payloadType": "InlineBase64"}]}}' headers: Accept: @@ -1248,13 +1320,13 @@ interactions: Connection: - keep-alive Content-Length: - - '12268' + - '12224' 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/81065bd8-e334-4715-b170-dedb4cd514e6/items/2402afe3-6ef3-4a96-b68e-14311c00f888/updateDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/f965063d-e1d0-42b3-8ff0-137dc4f20def/updateDefinition response: body: string: 'null' @@ -1270,13 +1342,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:29:41 GMT + - Fri, 22 May 2026 09:03:24 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2df0e196-6177-4aee-8f87-146571c22155 + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/522463d1-c664-418f-89b0-d09e2f17149a Pragma: - no-cache RequestId: - - f80a9809-016b-4981-9314-b2a1c33e5131 + - b2560575-47c3-4aaa-bd7a-a4ae10de0700 Retry-After: - '20' Strict-Transport-Security: @@ -1290,7 +1362,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 2df0e196-6177-4aee-8f87-146571c22155 + - 522463d1-c664-418f-89b0-d09e2f17149a status: code: 202 message: Accepted @@ -1306,13 +1378,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/2df0e196-6177-4aee-8f87-146571c22155 + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/522463d1-c664-418f-89b0-d09e2f17149a response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2025-12-31T14:29:41.293677", - "lastUpdatedTimeUtc": "2025-12-31T14:29:41.8249217", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-22T09:03:25.2742132", + "lastUpdatedTimeUtc": "2026-05-22T09:03:25.8354898", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1322,15 +1394,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '129' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:30:01 GMT + - Fri, 22 May 2026 09:03:45 GMT Pragma: - no-cache RequestId: - - d74c4204-b136-49e9-9e22-aa392743da25 + - 7579b6af-1ae5-4ca6-a97c-535905b141a1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1352,14 +1424,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1368,15 +1441,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2061' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:30:02 GMT + - Fri, 22 May 2026 09:03:46 GMT Pragma: - no-cache RequestId: - - d0c209d3-b88a-4ec7-8996-1e31b47018c9 + - 26733f29-aae5-4932-ae9b-515d2ffbb691 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1402,18 +1475,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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "2402afe3-6ef3-4a96-b68e-14311c00f888", "type": "Report", - "displayName": "fabcli000001", "workspaceId": - "81065bd8-e334-4715-b170-dedb4cd514e6"}, {"id": "3e75a415-b907-4295-b163-a746b3af88d1", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, {"id": "b10e546f-82bb-4abc-a8db-be0e0e79d1ba", - "type": "SemanticModel", "displayName": "fabcli000002", "description": "", - "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "f965063d-e1d0-42b3-8ff0-137dc4f20def", "type": "Report", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "12c82326-e832-4ff4-8843-7c586ff3fbf3", "type": "SemanticModel", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1422,15 +1502,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '266' + - '400' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:30:02 GMT + - Fri, 22 May 2026 09:03:47 GMT Pragma: - no-cache RequestId: - - b429aee1-a736-4b52-8e96-eec14f2a4a19 + - 124e3a4a-af59-4a5d-95d7-eba9bc7007c4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1456,13 +1536,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/81065bd8-e334-4715-b170-dedb4cd514e6/reports/2402afe3-6ef3-4a96-b68e-14311c00f888 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/reports/f965063d-e1d0-42b3-8ff0-137dc4f20def response: body: - string: '{"id": "2402afe3-6ef3-4a96-b68e-14311c00f888", "type": "Report", "displayName": - "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}' + string: '{"id": "f965063d-e1d0-42b3-8ff0-137dc4f20def", "type": "Report", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1471,17 +1551,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:30:03 GMT + - Fri, 22 May 2026 09:03:47 GMT ETag: - '""' Pragma: - no-cache RequestId: - - e7f7f241-e6d3-4ac0-86e5-c6d787b2de4c + - 6599e45e-25ae-462e-820b-abd82444441e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1509,9 +1589,9 @@ interactions: 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/81065bd8-e334-4715-b170-dedb4cd514e6/items/2402afe3-6ef3-4a96-b68e-14311c00f888/getDefinition + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/f965063d-e1d0-42b3-8ff0-137dc4f20def/getDefinition response: body: string: 'null' @@ -1527,13 +1607,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:30:04 GMT + - Fri, 22 May 2026 09:03:49 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aa8fb1e8-4092-4211-bb76-2fb3dc0c3abc + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/919b7dfe-b9b0-4c8e-96d6-372cfc1f965d Pragma: - no-cache RequestId: - - 4b7a68a9-af19-49d5-8ccd-e918fb38b035 + - 32b89648-7521-4b80-bffb-6017cea40325 Retry-After: - '20' Strict-Transport-Security: @@ -1547,7 +1627,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - aa8fb1e8-4092-4211-bb76-2fb3dc0c3abc + - 919b7dfe-b9b0-4c8e-96d6-372cfc1f965d status: code: 202 message: Accepted @@ -1563,13 +1643,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aa8fb1e8-4092-4211-bb76-2fb3dc0c3abc + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/919b7dfe-b9b0-4c8e-96d6-372cfc1f965d response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2025-12-31T14:30:04.5852701", - "lastUpdatedTimeUtc": "2025-12-31T14:30:05.209345", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-22T09:03:49.5429933", + "lastUpdatedTimeUtc": "2026-05-22T09:03:49.7325004", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -1579,17 +1659,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '130' + - '129' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:30:24 GMT + - Fri, 22 May 2026 09:04:10 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aa8fb1e8-4092-4211-bb76-2fb3dc0c3abc/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/919b7dfe-b9b0-4c8e-96d6-372cfc1f965d/result Pragma: - no-cache RequestId: - - 6805d623-43cd-4c06-83f0-a6d8faa33644 + - ac3da7d5-2d2e-4c1d-b91b-c4cb09e86b35 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1597,7 +1677,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - aa8fb1e8-4092-4211-bb76-2fb3dc0c3abc + - 919b7dfe-b9b0-4c8e-96d6-372cfc1f965d status: code: 200 message: OK @@ -1613,13 +1693,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aa8fb1e8-4092-4211-bb76-2fb3dc0c3abc/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/919b7dfe-b9b0-4c8e-96d6-372cfc1f965d/result response: body: string: '{"definition": {"format": "PBIR", "parts": [{"path": "definition.pbir", - "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgInZlcnNpb24iOiAiNC4wIiwKICAiZGF0YXNldFJlZmVyZW5jZSI6IHsKICAgICJieUNvbm5lY3Rpb24iOiB7CiAgICAgICJjb25uZWN0aW9uU3RyaW5nIjogIkRhdGEgU291cmNlPXBvd2VyYmk6Ly9hcGkucG93ZXJiaS5jb20vdjEuMC9teW9yZy9mYWJyaWNjbGlfV29ya3NwYWNlUGVyVGVzdGNsYXNzXzAwMDAwMTtpbml0aWFsIGNhdGFsb2c9ZmFiY2xpMDAwMDAyO2ludGVncmF0ZWQgc2VjdXJpdHk9Q2xhaW1zVG9rZW47c2VtYW50aWNtb2RlbGlkPWIxMGU1NDZmLTgyYmItNGFiYy1hOGRiLWJlMGUwZTc5ZDFiYSIKICAgIH0KICB9Cn0=", + "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9pdGVtL3JlcG9ydC9kZWZpbml0aW9uUHJvcGVydGllcy8yLjAuMC9zY2hlbWEuanNvbiIsCiAgInZlcnNpb24iOiAiNC4wIiwKICAiZGF0YXNldFJlZmVyZW5jZSI6IHsKICAgICJieUNvbm5lY3Rpb24iOiB7CiAgICAgICJjb25uZWN0aW9uU3RyaW5nIjogIkRhdGEgU291cmNlPXBvd2VyYmk6Ly9hcGkucG93ZXJiaS5jb20vdjEuMC9teW9yZy9mYWJyaWNjbGlfV29ya3NwYWNlUGVyVGVzdGNsYXNzXzAwMDAwMTtpbml0aWFsIGNhdGFsb2c9ZmFiY2xpMDAwMDAyO2ludGVncmF0ZWQgc2VjdXJpdHk9Q2xhaW1zVG9rZW47c2VtYW50aWNtb2RlbGlkPTEyYzgyMzI2LWU4MzItNGZmNC04ODQzLTdjNTg2ZmYzZmJmMyIKICAgIH0KICB9Cn0=", "payloadType": "InlineBase64"}, {"path": "StaticResources/SharedResources/BaseThemes/CY24SU10.json", "payload": "ewogICJuYW1lIjogIkNZMjRTVTEwIiwKICAiZGF0YUNvbG9ycyI6IFsKICAgICIjMTE4REZGIiwKICAgICIjMTIyMzlFIiwKICAgICIjRTY2QzM3IiwKICAgICIjNkIwMDdCIiwKICAgICIjRTA0NEE3IiwKICAgICIjNzQ0RUMyIiwKICAgICIjRDlCMzAwIiwKICAgICIjRDY0NTUwIiwKICAgICIjMTk3Mjc4IiwKICAgICIjMUFBQjQwIiwKICAgICIjMTVDNkY0IiwKICAgICIjNDA5MkZGIiwKICAgICIjRkZBMDU4IiwKICAgICIjQkU1REM5IiwKICAgICIjRjQ3MkQwIiwKICAgICIjQjVBMUZGIiwKICAgICIjQzRBMjAwIiwKICAgICIjRkY4MDgwIiwKICAgICIjMDBEQkJDIiwKICAgICIjNUJENjY3IiwKICAgICIjMDA5MUQ1IiwKICAgICIjNDY2OEM1IiwKICAgICIjRkY2MzAwIiwKICAgICIjOTkwMDhBIiwKICAgICIjRUMwMDhDIiwKICAgICIjNTMzMjg1IiwKICAgICIjOTk3MDBBIiwKICAgICIjRkY0MTQxIiwKICAgICIjMUY5QTg1IiwKICAgICIjMjU4OTFDIiwKICAgICIjMDA1N0EyIiwKICAgICIjMDAyMDUwIiwKICAgICIjQzk0RjBGIiwKICAgICIjNDUwRjU0IiwKICAgICIjQjYwMDY0IiwKICAgICIjMzQxMjRGIiwKICAgICIjNkE1QTI5IiwKICAgICIjMUFBQjQwIiwKICAgICIjQkExNDFBIiwKICAgICIjMEMzRDM3IiwKICAgICIjMEI1MTFGIgogIF0sCiAgImZvcmVncm91bmQiOiAiIzI1MjQyMyIsCiAgImZvcmVncm91bmROZXV0cmFsU2Vjb25kYXJ5IjogIiM2MDVFNUMiLAogICJmb3JlZ3JvdW5kTmV1dHJhbFRlcnRpYXJ5IjogIiNCM0IwQUQiLAogICJiYWNrZ3JvdW5kIjogIiNGRkZGRkYiLAogICJiYWNrZ3JvdW5kTGlnaHQiOiAiI0YzRjJGMSIsCiAgImJhY2tncm91bmROZXV0cmFsIjogIiNDOEM2QzQiLAogICJ0YWJsZUFjY2VudCI6ICIjMTE4REZGIiwKICAiZ29vZCI6ICIjMUFBQjQwIiwKICAibmV1dHJhbCI6ICIjRDlCMzAwIiwKICAiYmFkIjogIiNENjQ1NTQiLAogICJtYXhpbXVtIjogIiMxMThERkYiLAogICJjZW50ZXIiOiAiI0Q5QjMwMCIsCiAgIm1pbmltdW0iOiAiI0RFRUZGRiIsCiAgIm51bGwiOiAiI0ZGN0Y0OCIsCiAgImh5cGVybGluayI6ICIjMDA3OGQ0IiwKICAidmlzaXRlZEh5cGVybGluayI6ICIjMDA3OGQ0IiwKICAidGV4dENsYXNzZXMiOiB7CiAgICAiY2FsbG91dCI6IHsKICAgICAgImZvbnRTaXplIjogNDUsCiAgICAgICJmb250RmFjZSI6ICJESU4iLAogICAgICAiY29sb3IiOiAiIzI1MjQyMyIKICAgIH0sCiAgICAidGl0bGUiOiB7CiAgICAgICJmb250U2l6ZSI6IDEyLAogICAgICAiZm9udEZhY2UiOiAiRElOIiwKICAgICAgImNvbG9yIjogIiMyNTI0MjMiCiAgICB9LAogICAgImhlYWRlciI6IHsKICAgICAgImZvbnRTaXplIjogMTIsCiAgICAgICJmb250RmFjZSI6ICJTZWdvZSBVSSBTZW1pYm9sZCIsCiAgICAgICJjb2xvciI6ICIjMjUyNDIzIgogICAgfSwKICAgICJsYWJlbCI6IHsKICAgICAgImZvbnRTaXplIjogMTAsCiAgICAgICJmb250RmFjZSI6ICJTZWdvZSBVSSIsCiAgICAgICJjb2xvciI6ICIjMjUyNDIzIgogICAgfQogIH0sCiAgInZpc3VhbFN0eWxlcyI6IHsKICAgICIqIjogewogICAgICAiKiI6IHsKICAgICAgICAiKiI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgIndvcmRXcmFwIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImxpbmUiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAwCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAib3V0bGluZSI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJwbG90QXJlYSI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJjYXRlZ29yeUF4aXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93QXhpc1RpdGxlIjogdHJ1ZSwKICAgICAgICAgICAgImdyaWRsaW5lU3R5bGUiOiAiZG90dGVkIiwKICAgICAgICAgICAgImNvbmNhdGVuYXRlTGFiZWxzIjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJ2YWx1ZUF4aXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93QXhpc1RpdGxlIjogdHJ1ZSwKICAgICAgICAgICAgImdyaWRsaW5lU3R5bGUiOiAiZG90dGVkIgogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInkyQXhpcyI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidGl0bGUiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJ0aXRsZVdyYXAiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGluZVN0eWxlcyI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInN0cm9rZVdpZHRoIjogMwogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgIndvcmRXcmFwIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUsCiAgICAgICAgICAgICJ0cmFuc3BhcmVuY3kiOiAwCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiYm9yZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAid2lkdGgiOiAxCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAib3V0c3BhY2VQYW5lIjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZENvbG9yIjogewogICAgICAgICAgICAgICJzb2xpZCI6IHsKICAgICAgICAgICAgICAgICJjb2xvciI6ICIjZmZmZmZmIgogICAgICAgICAgICAgIH0KICAgICAgICAgICAgfSwKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJib3JkZXIiOiB0cnVlLAogICAgICAgICAgICAiYm9yZGVyQ29sb3IiOiB7CiAgICAgICAgICAgICAgInNvbGlkIjogewogICAgICAgICAgICAgICAgImNvbG9yIjogIiNCM0IwQUQiCiAgICAgICAgICAgICAgfQogICAgICAgICAgICB9CiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZmlsdGVyQ2FyZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgIiRpZCI6ICJBcHBsaWVkIiwKICAgICAgICAgICAgInRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJmb3JlZ3JvdW5kQ29sb3IiOiB7CiAgICAgICAgICAgICAgInNvbGlkIjogewogICAgICAgICAgICAgICAgImNvbG9yIjogIiMyNTI0MjMiCiAgICAgICAgICAgICAgfQogICAgICAgICAgICB9LAogICAgICAgICAgICAiYm9yZGVyIjogdHJ1ZQogICAgICAgICAgfSwKICAgICAgICAgIHsKICAgICAgICAgICAgIiRpZCI6ICJBdmFpbGFibGUiLAogICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgImZvcmVncm91bmRDb2xvciI6IHsKICAgICAgICAgICAgICAic29saWQiOiB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiIzI1MjQyMyIKICAgICAgICAgICAgICB9CiAgICAgICAgICAgIH0sCiAgICAgICAgICAgICJib3JkZXIiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInNjYXR0ZXJDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJ1YmJsZXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJidWJibGVTaXplIjogLTEwLAogICAgICAgICAgICAibWFya2VyUmFuZ2VUeXBlIjogImF1dG8iCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZmlsbFBvaW50IjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJsZWdlbmQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93R3JhZGllbnRMZWdlbmQiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImxpbmVDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZm9yZWNhc3QiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJtYXRjaFNlcmllc0ludGVycG9sYXRpb24iOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgIm1hcCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJ1YmJsZXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJidWJibGVTaXplIjogLTEwLAogICAgICAgICAgICAibWFya2VyUmFuZ2VUeXBlIjogImF1dG8iCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImF6dXJlTWFwIjogewogICAgICAiKiI6IHsKICAgICAgICAiYnViYmxlTGF5ZXIiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJidWJibGVSYWRpdXMiOiA4LAogICAgICAgICAgICAibWluQnViYmxlUmFkaXVzIjogOCwKICAgICAgICAgICAgIm1heFJhZGl1cyI6IDQwCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiYmFyQ2hhcnQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJiYXJIZWlnaHQiOiAzLAogICAgICAgICAgICAidGhpY2tuZXNzIjogMwogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJwaWVDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImxlZ2VuZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiB0cnVlLAogICAgICAgICAgICAicG9zaXRpb24iOiAiUmlnaHRDZW50ZXIiCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGFiZWxzIjogWwogICAgICAgICAgewogICAgICAgICAgICAibGFiZWxTdHlsZSI6ICJEYXRhIHZhbHVlLCBwZXJjZW50IG9mIHRvdGFsIgogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJkb251dENoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IHRydWUsCiAgICAgICAgICAgICJwb3NpdGlvbiI6ICJSaWdodENlbnRlciIKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJsYWJlbHMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJsYWJlbFN0eWxlIjogIkRhdGEgdmFsdWUsIHBlcmNlbnQgb2YgdG90YWwiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInBpdm90VGFibGUiOiB7CiAgICAgICIqIjogewogICAgICAgICJyb3dIZWFkZXJzIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0V4cGFuZENvbGxhcHNlQnV0dG9ucyI6IHRydWUsCiAgICAgICAgICAgICJsZWdhY3lTdHlsZURpc2FibGVkIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJtdWx0aVJvd0NhcmQiOiB7CiAgICAgICIqIjogewogICAgICAgICJjYXJkIjogWwogICAgICAgICAgewogICAgICAgICAgICAib3V0bGluZVdlaWdodCI6IDIsCiAgICAgICAgICAgICJiYXJTaG93IjogdHJ1ZSwKICAgICAgICAgICAgImJhcldlaWdodCI6IDIKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAia3BpIjogewogICAgICAiKiI6IHsKICAgICAgICAidHJlbmRsaW5lIjogWwogICAgICAgICAgewogICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMjAKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAiY2FyZFZpc3VhbCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImxheW91dCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgIm1heFRpbGVzIjogMwogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgIm92ZXJmbG93IjogWwogICAgICAgICAgewogICAgICAgICAgICAidHlwZSI6IDAKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJpbWFnZSI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImZpeGVkU2l6ZSI6IGZhbHNlCiAgICAgICAgICB9LAogICAgICAgICAgewogICAgICAgICAgICAiaW1hZ2VBcmVhU2l6ZSI6IDUwCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImFkdmFuY2VkU2xpY2VyVmlzdWFsIjogewogICAgICAiKiI6IHsKICAgICAgICAibGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAibWF4VGlsZXMiOiAzCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInNsaWNlciI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImRhdGUiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJoaWRlRGF0ZVBpY2tlckJ1dHRvbiI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiaXRlbXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJwYWRkaW5nIjogNCwKICAgICAgICAgICAgImFjY2Vzc2liaWxpdHlDb250cmFzdFByb3BlcnRpZXMiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgIndhdGVyZmFsbENoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImNvbHVtbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImNsdXN0ZXJlZENvbHVtbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImh1bmRyZWRQZXJjZW50U3RhY2tlZENvbHVtbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImJhckNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImNsdXN0ZXJlZEJhckNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImh1bmRyZWRQZXJjZW50U3RhY2tlZEJhckNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAibGVnZW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvd0dyYWRpZW50TGVnZW5kIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImFyZWFDaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInN0YWNrZWRBcmVhQ2hhcnQiOiB7CiAgICAgICIqIjogewogICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgewogICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLAogICAgICAgICAgICAiZ3JpZExpbmVUeXBlIjogImlubmVyIgogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJsaW5lQ2x1c3RlcmVkQ29sdW1uQ29tYm9DaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImxpbmVTdGFja2VkQ29sdW1uQ29tYm9DaGFydCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJyZXNwb25zaXZlIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInNtYWxsTXVsdGlwbGVzTGF5b3V0IjogWwogICAgICAgICAgewogICAgICAgICAgICAiYmFja2dyb3VuZFRyYW5zcGFyZW5jeSI6IDAsCiAgICAgICAgICAgICJncmlkTGluZVR5cGUiOiAiaW5uZXIiCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInJpYmJvbkNoYXJ0IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInJlc3BvbnNpdmUiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAic21hbGxNdWx0aXBsZXNMYXlvdXQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJiYWNrZ3JvdW5kVHJhbnNwYXJlbmN5IjogMCwKICAgICAgICAgICAgImdyaWRMaW5lVHlwZSI6ICJpbm5lciIKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJ2YWx1ZUF4aXMiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJodW5kcmVkUGVyY2VudFN0YWNrZWRBcmVhQ2hhcnQiOiB7CiAgICAgICIqIjogewogICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgewogICAgICAgICAgICAicmVzcG9uc2l2ZSI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJzbWFsbE11bHRpcGxlc0xheW91dCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImJhY2tncm91bmRUcmFuc3BhcmVuY3kiOiAwLAogICAgICAgICAgICAiZ3JpZExpbmVUeXBlIjogImlubmVyIgogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJncm91cCI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJhY2tncm91bmQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAiYmFzaWNTaGFwZSI6IHsKICAgICAgIioiOiB7CiAgICAgICAgImJhY2tncm91bmQiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJnZW5lcmFsIjogWwogICAgICAgICAgewogICAgICAgICAgICAia2VlcExheWVyT3JkZXIiOiB0cnVlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInNoYXBlIjogewogICAgICAiKiI6IHsKICAgICAgICAiYmFja2dyb3VuZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImdlbmVyYWwiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJrZWVwTGF5ZXJPcmRlciI6IHRydWUKICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJ2aXN1YWxIZWFkZXIiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogZmFsc2UKICAgICAgICAgIH0KICAgICAgICBdCiAgICAgIH0KICAgIH0sCiAgICAiaW1hZ2UiOiB7CiAgICAgICIqIjogewogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImtlZXBMYXllck9yZGVyIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgImxvY2tBc3BlY3QiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJzaG93IjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJhY3Rpb25CdXR0b24iOiB7CiAgICAgICIqIjogewogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgInBhZ2VOYXZpZ2F0b3IiOiB7CiAgICAgICIqIjogewogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXSwKICAgICAgICAidmlzdWFsSGVhZGVyIjogWwogICAgICAgICAgewogICAgICAgICAgICAic2hvdyI6IGZhbHNlCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9LAogICAgImJvb2ttYXJrTmF2aWdhdG9yIjogewogICAgICAiKiI6IHsKICAgICAgICAiYmFja2dyb3VuZCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJ0ZXh0Ym94IjogewogICAgICAiKiI6IHsKICAgICAgICAiZ2VuZXJhbCI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgImtlZXBMYXllck9yZGVyIjogdHJ1ZQogICAgICAgICAgfQogICAgICAgIF0sCiAgICAgICAgInZpc3VhbEhlYWRlciI6IFsKICAgICAgICAgIHsKICAgICAgICAgICAgInNob3ciOiBmYWxzZQogICAgICAgICAgfQogICAgICAgIF0KICAgICAgfQogICAgfSwKICAgICJwYWdlIjogewogICAgICAiKiI6IHsKICAgICAgICAib3V0c3BhY2UiOiBbCiAgICAgICAgICB7CiAgICAgICAgICAgICJjb2xvciI6IHsKICAgICAgICAgICAgICAic29saWQiOiB7CiAgICAgICAgICAgICAgICAiY29sb3IiOiAiI0ZGRkZGRiIKICAgICAgICAgICAgICB9CiAgICAgICAgICAgIH0KICAgICAgICAgIH0KICAgICAgICBdLAogICAgICAgICJiYWNrZ3JvdW5kIjogWwogICAgICAgICAgewogICAgICAgICAgICAidHJhbnNwYXJlbmN5IjogMTAwCiAgICAgICAgICB9CiAgICAgICAgXQogICAgICB9CiAgICB9CiAgfQp9", "payloadType": "InlineBase64"}, {"path": "definition/version.json", "payload": @@ -1630,7 +1710,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: @@ -1642,11 +1722,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 31 Dec 2025 14:30:25 GMT + - Fri, 22 May 2026 09:04:11 GMT Pragma: - no-cache RequestId: - - b5214b62-961d-46bc-9a33-e5a008c40616 + - 75ffbfa0-bd56-4d31-bb63-ab43a443e169 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -1670,9 +1750,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/81065bd8-e334-4715-b170-dedb4cd514e6/items/2402afe3-6ef3-4a96-b68e-14311c00f888/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/f965063d-e1d0-42b3-8ff0-137dc4f20def/connections response: body: string: '{"value": []}' @@ -1688,11 +1768,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:30:27 GMT + - Fri, 22 May 2026 09:04:12 GMT Pragma: - no-cache RequestId: - - 7954ee53-e342-40d1-9ee1-622840429518 + - bf5d8ccc-556c-47a7-aba1-0b9277a86b07 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1718,14 +1798,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1734,15 +1815,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2061' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:30:27 GMT + - Fri, 22 May 2026 09:04:12 GMT Pragma: - no-cache RequestId: - - 50370e6c-0784-49be-ab44-4683cc5b98be + - 2c219e72-fc59-42fb-a1bf-3772043a898e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1768,18 +1849,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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "2402afe3-6ef3-4a96-b68e-14311c00f888", "type": "Report", - "displayName": "fabcli000001", "workspaceId": - "81065bd8-e334-4715-b170-dedb4cd514e6"}, {"id": "3e75a415-b907-4295-b163-a746b3af88d1", - "type": "SemanticModel", "displayName": "fabcli000001_auto", "description": - "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, {"id": "b10e546f-82bb-4abc-a8db-be0e0e79d1ba", - "type": "SemanticModel", "displayName": "fabcli000002", "description": "", - "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "f965063d-e1d0-42b3-8ff0-137dc4f20def", "type": "Report", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", "displayName": + "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "12c82326-e832-4ff4-8843-7c586ff3fbf3", "type": "SemanticModel", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1788,15 +1876,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '266' + - '400' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:30:28 GMT + - Fri, 22 May 2026 09:04:14 GMT Pragma: - no-cache RequestId: - - e82181f6-f3f2-4fc9-8a4c-3fe302a11815 + - f58c3e86-de8c-4c70-8d83-f29940147686 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1824,9 +1912,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/81065bd8-e334-4715-b170-dedb4cd514e6/items/b10e546f-82bb-4abc-a8db-be0e0e79d1ba + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/12c82326-e832-4ff4-8843-7c586ff3fbf3 response: body: string: '' @@ -1842,11 +1930,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 31 Dec 2025 14:30:29 GMT + - Fri, 22 May 2026 09:04:14 GMT Pragma: - no-cache RequestId: - - 9b565a10-8eba-4dbf-b932-d8ab9f096cb5 + - 2c962826-41cc-4bb6-8787-45313b4a788d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_item_variable_library_properties_success.yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_item_variable_library_properties_success.yaml index c09b2a0ef..ba59b6525 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_item_variable_library_properties_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_item_variable_library_properties_success.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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2061' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:30:29 GMT + - Fri, 22 May 2026 09:04:16 GMT Pragma: - no-cache RequestId: - - 0afea65c-31fa-4769-9e6f-ac1db8ae58ce + - 09edb57c-f0dd-4e94-8a64-d5cc0758a5ac Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,13 +62,21 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -76,15 +85,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '329' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:30:31 GMT + - Fri, 22 May 2026 09:04:17 GMT Pragma: - no-cache RequestId: - - 6650d5d9-25f0-4cda-8d5e-fb3320a977b4 + - 7d2e7c2a-81e2-4dab-bb11-09662593c368 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -110,13 +119,21 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -125,15 +142,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '329' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:30:31 GMT + - Fri, 22 May 2026 09:04:17 GMT Pragma: - no-cache RequestId: - - 25692ca4-b0bd-4169-a1eb-9bf84f608397 + - ffcd3969-65d7-41d6-a65f-01cc72616bb6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -148,7 +165,8 @@ interactions: code: 200 message: OK - request: - body: '{"displayName": "fabcli000001", "type": "VariableLibrary", "folderId": null}' + body: '{"displayName": "fabcli000001", "type": "VariableLibrary", "folderId": + null}' headers: Accept: - '*/*' @@ -158,18 +176,16 @@ interactions: - keep-alive Content-Length: - '80' - 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/81065bd8-e334-4715-b170-dedb4cd514e6/variablelibraries + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/variablelibraries response: body: - string: '{"id": "f3c23c38-8807-4b47-b1af-e3028cc672e1", "type": "VariableLibrary", - "displayName": "fabcli000001", "workspaceId": - "81065bd8-e334-4715-b170-dedb4cd514e6"}' + string: '{"id": "0bbed76c-8527-4e33-a067-e50673070014", "type": "VariableLibrary", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -178,17 +194,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '170' + - '161' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:30:33 GMT + - Fri, 22 May 2026 09:04:20 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 7fe16d47-81cc-4c83-b045-003d06b12626 + - 6592ddd9-45ef-4e87-8d5f-c798072d62d3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,14 +230,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -230,15 +247,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2061' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:30:33 GMT + - Fri, 22 May 2026 09:04:19 GMT Pragma: - no-cache RequestId: - - 450b5ab7-dd70-48ea-a5a3-646f7eea0987 + - 6529f86b-2648-468e-a777-e0ca5d00459e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -264,16 +281,23 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "f3c23c38-8807-4b47-b1af-e3028cc672e1", "type": "VariableLibrary", - "displayName": "fabcli000001", "workspaceId": - "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "0bbed76c-8527-4e33-a067-e50673070014", "type": "VariableLibrary", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -282,15 +306,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '244' + - '381' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:30:33 GMT + - Fri, 22 May 2026 09:04:21 GMT Pragma: - no-cache RequestId: - - 39e1a0e2-e313-478f-ae4e-4b0838a1ce0e + - 9cfaf033-ef85-4f00-a76c-d879ed015656 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,15 +340,14 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/variablelibraries/f3c23c38-8807-4b47-b1af-e3028cc672e1 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/variablelibraries/0bbed76c-8527-4e33-a067-e50673070014 response: body: - string: '{"id": "f3c23c38-8807-4b47-b1af-e3028cc672e1", "type": "VariableLibrary", - "displayName": "fabcli000001", "workspaceId": - "81065bd8-e334-4715-b170-dedb4cd514e6", "properties": {"activeValueSetName": - "Default value set"}}' + string: '{"id": "0bbed76c-8527-4e33-a067-e50673070014", "type": "VariableLibrary", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "properties": {"activeValueSetName": "Default value set"}}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -333,17 +356,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '208' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:30:35 GMT + - Fri, 22 May 2026 09:04:22 GMT ETag: - '""' Pragma: - no-cache RequestId: - - f2abb60c-7db9-4cde-ad27-917e7e1ec251 + - ba638187-5206-4c44-96ad-0a11ad8245ba Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -371,15 +394,15 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/variablelibraries/f3c23c38-8807-4b47-b1af-e3028cc672e1 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/variablelibraries/0bbed76c-8527-4e33-a067-e50673070014 response: body: - string: '{"id": "f3c23c38-8807-4b47-b1af-e3028cc672e1", "type": "VariableLibrary", - "displayName": "fabcli000001", "workspaceId": - "81065bd8-e334-4715-b170-dedb4cd514e6", "properties": {"$type": "VariableLibraryProperties", - "activeValueSetName": "Default value set"}}' + string: '{"id": "0bbed76c-8527-4e33-a067-e50673070014", "type": "VariableLibrary", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "properties": {"$type": "VariableLibraryProperties", "activeValueSetName": + "Default value set"}}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -388,17 +411,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '219' + - '211' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:30:36 GMT + - Fri, 22 May 2026 09:04:23 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 2a129e25-3d6e-4d3a-a68f-2a45c3ad039c + - 5700ab0d-fc46-4af0-8e98-901f3a252c7d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -424,14 +447,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -440,15 +464,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2061' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:30:36 GMT + - Fri, 22 May 2026 09:04:25 GMT Pragma: - no-cache RequestId: - - 670bf109-aa81-42b7-b83c-d27afe63d3e0 + - 4a2d8b17-1342-4536-b0ad-6e338c387a28 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -474,16 +498,23 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "f3c23c38-8807-4b47-b1af-e3028cc672e1", "type": "VariableLibrary", - "displayName": "fabcli000001", "workspaceId": - "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "0bbed76c-8527-4e33-a067-e50673070014", "type": "VariableLibrary", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -492,15 +523,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '244' + - '381' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:30:36 GMT + - Fri, 22 May 2026 09:04:25 GMT Pragma: - no-cache RequestId: - - 759749e0-0cae-494a-ad38-42c3a4265e21 + - fed9936a-43e6-4cef-a227-7676b2607ddb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -526,15 +557,14 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/variablelibraries/f3c23c38-8807-4b47-b1af-e3028cc672e1 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/variablelibraries/0bbed76c-8527-4e33-a067-e50673070014 response: body: - string: '{"id": "f3c23c38-8807-4b47-b1af-e3028cc672e1", "type": "VariableLibrary", - "displayName": "fabcli000001", "workspaceId": - "81065bd8-e334-4715-b170-dedb4cd514e6", "properties": {"activeValueSetName": - "Default value set"}}' + string: '{"id": "0bbed76c-8527-4e33-a067-e50673070014", "type": "VariableLibrary", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "properties": {"activeValueSetName": "Default value set"}}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -543,17 +573,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '208' + - '199' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:30:37 GMT + - Fri, 22 May 2026 09:04:25 GMT ETag: - '""' Pragma: - no-cache RequestId: - - d2d8447a-af7d-4097-85bd-12da4ee02e8c + - eac4e45d-2393-4adf-95cd-fce24106d82e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -567,159 +597,6 @@ 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.3.1 - method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/f3c23c38-8807-4b47-b1af-e3028cc672e1/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: - - Wed, 31 Dec 2025 14:30:38 GMT - Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7699831b-1a58-4c90-9321-2afdf9ab001a - Pragma: - - no-cache - RequestId: - - 8c2fe6c7-48aa-4deb-93ea-8bb00c322b89 - 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: - - 7699831b-1a58-4c90-9321-2afdf9ab001a - status: - code: 202 - message: Accepted -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7699831b-1a58-4c90-9321-2afdf9ab001a - response: - body: - string: '{"status": "Succeeded", "createdTimeUtc": "2025-12-31T14:30:38.1043338", - "lastUpdatedTimeUtc": "2025-12-31T14:30:38.4949541", "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: - - Wed, 31 Dec 2025 14:30:58 GMT - Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7699831b-1a58-4c90-9321-2afdf9ab001a/result - Pragma: - - no-cache - RequestId: - - ea52ca5d-b4cb-4148-a10b-5f3093e941c1 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - x-ms-operation-id: - - 7699831b-1a58-4c90-9321-2afdf9ab001a - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7699831b-1a58-4c90-9321-2afdf9ab001a/result - response: - body: - string: '{"definition": {"parts": [{"path": "variables.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS92YXJpYWJsZUxpYnJhcnkvZGVmaW5pdGlvbi92YXJpYWJsZXMvMS4wLjAvc2NoZW1hLmpzb24iLA0KICAidmFyaWFibGVzIjogW10NCn0=", - "payloadType": "InlineBase64"}, {"path": "settings.json", "payload": "ew0KICAiJHNjaGVtYSI6ICJodHRwczovL2RldmVsb3Blci5taWNyb3NvZnQuY29tL2pzb24tc2NoZW1hcy9mYWJyaWMvaXRlbS92YXJpYWJsZUxpYnJhcnkvZGVmaW5pdGlvbi9zZXR0aW5ncy8xLjAuMC9zY2hlbWEuanNvbiIsDQogICJ2YWx1ZVNldHNPcmRlciI6IFtdDQp9", - "payloadType": "InlineBase64"}, {"path": ".platform", "payload": "ewogICIkc2NoZW1hIjogImh0dHBzOi8vZGV2ZWxvcGVyLm1pY3Jvc29mdC5jb20vanNvbi1zY2hlbWFzL2ZhYnJpYy9naXRJbnRlZ3JhdGlvbi9wbGF0Zm9ybVByb3BlcnRpZXMvMi4wLjAvc2NoZW1hLmpzb24iLAogICJtZXRhZGF0YSI6IHsKICAgICJ0eXBlIjogIlZhcmlhYmxlTGlicmFyeSIsCiAgICAiZGlzcGxheU5hbWUiOiAiZmFiY2xpMDAwMDAxIiwKICAgICJkZXNjcmlwdGlvbiI6ICJDcmVhdGVkIGJ5IGZhYiIKICB9LAogICJjb25maWciOiB7CiAgICAidmVyc2lvbiI6ICIyLjAiLAogICAgImxvZ2ljYWxJZCI6ICIwMDAwMDAwMC0wMDAwLTAwMDAtMDAwMC0wMDAwMDAwMDAwMDAiCiAgfQp9", - "payloadType": "InlineBase64"}]}}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Type: - - application/json - Date: - - Wed, 31 Dec 2025 14:30:58 GMT - Pragma: - - no-cache - RequestId: - - 87ab23bc-b000-4338-871b-4897458430ee - 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: @@ -732,9 +609,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/81065bd8-e334-4715-b170-dedb4cd514e6/items/f3c23c38-8807-4b47-b1af-e3028cc672e1/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/0bbed76c-8527-4e33-a067-e50673070014/connections response: body: string: '{"value": []}' @@ -750,11 +627,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:30:59 GMT + - Fri, 22 May 2026 09:04:27 GMT Pragma: - no-cache RequestId: - - d9ffdc37-62a9-473d-a5a5-0f9fe3ebb651 + - 9734c2e5-fb21-4ef3-acbc-d61d91ce0f28 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -780,14 +657,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -796,15 +674,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2061' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:00 GMT + - Fri, 22 May 2026 09:04:27 GMT Pragma: - no-cache RequestId: - - 26cd0feb-c858-4955-b281-865a2c3ec165 + - 37be53f7-801a-4f6e-8dbe-6eb62ec56b27 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -830,16 +708,23 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "f3c23c38-8807-4b47-b1af-e3028cc672e1", "type": "VariableLibrary", - "displayName": "fabcli000001", "workspaceId": - "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "0bbed76c-8527-4e33-a067-e50673070014", "type": "VariableLibrary", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -848,15 +733,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '244' + - '381' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:30:59 GMT + - Fri, 22 May 2026 09:04:29 GMT Pragma: - no-cache RequestId: - - f9366874-349e-48b1-8702-d02330ec9215 + - 72a8ebe0-142d-4cb0-a07e-19eddc319089 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -884,9 +769,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/81065bd8-e334-4715-b170-dedb4cd514e6/items/f3c23c38-8807-4b47-b1af-e3028cc672e1 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/0bbed76c-8527-4e33-a067-e50673070014 response: body: string: '' @@ -902,11 +787,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 31 Dec 2025 14:31:00 GMT + - Fri, 22 May 2026 09:04:29 GMT Pragma: - no-cache RequestId: - - ef820c80-c41b-4463-979e-09df4d47084c + - 7b26d426-30bf-4648-96a9-a2ec87d3397f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_onelake_not_supported_failure.yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_onelake_not_supported_failure.yaml index 688db365c..1cb9d452e 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_onelake_not_supported_failure.yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_onelake_not_supported_failure.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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:34 GMT + - Fri, 22 May 2026 09:16:08 GMT Pragma: - no-cache RequestId: - - b7960c21-1388-4de4-b750-84329f4b7c75 + - 7b0ade8a-1b1f-492d-83fd-9f27d1bc07d9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,13 +62,21 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -76,15 +85,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '329' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:35 GMT + - Fri, 22 May 2026 09:16:09 GMT Pragma: - no-cache RequestId: - - b2cee87d-0254-4180-9cdc-e399315facec + - d01147e8-5a5a-4f2c-8409-434fa86d2d90 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -110,13 +119,21 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -125,15 +142,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '329' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:35 GMT + - Fri, 22 May 2026 09:16:10 GMT Pragma: - no-cache RequestId: - - 6e2046be-16e0-48c6-a6cc-d9fb27f32f40 + - 68bc74bf-8c95-47a7-b8ed-453011a4e6cd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -158,18 +175,16 @@ interactions: - keep-alive Content-Length: - '74' - 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/81065bd8-e334-4715-b170-dedb4cd514e6/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/lakehouses response: body: - string: '{"id": "83bb07ae-e23c-4f35-bfc2-25e070a52e7f", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "81065bd8-e334-4715-b170-dedb4cd514e6"}' + string: '{"id": "bf90152e-7731-4ae0-9169-71d3db3f512f", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -178,17 +193,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:37 GMT + - Fri, 22 May 2026 09:16:13 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 6e334044-63da-463f-9fdc-65ecc3242b4b + - 24f71ea2-742e-4b58-83a7-c94178279f88 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,14 +229,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -230,15 +246,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:38 GMT + - Fri, 22 May 2026 09:16:13 GMT Pragma: - no-cache RequestId: - - abf6e3ef-d6b8-4f8a-b122-849966775f5e + - 0e78f58a-feda-44fc-8908-df2fd0b1afd7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -264,15 +280,23 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "83bb07ae-e23c-4f35-bfc2-25e070a52e7f", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "bf90152e-7731-4ae0-9169-71d3db3f512f", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -281,15 +305,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '242' + - '365' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:38 GMT + - Fri, 22 May 2026 09:16:14 GMT Pragma: - no-cache RequestId: - - c80601b4-f078-44cd-95f4-6560372e1014 + - defddd0f-6cf7-4c0d-851a-66489e161fc4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -315,14 +339,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -331,15 +356,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:38 GMT + - Fri, 22 May 2026 09:16:17 GMT Pragma: - no-cache RequestId: - - c3d90d80-cfbb-4aee-b2d2-48fdb416667a + - fe039b5a-995f-440a-a2d0-eb951e4cc87c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -365,15 +390,23 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "83bb07ae-e23c-4f35-bfc2-25e070a52e7f", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "bf90152e-7731-4ae0-9169-71d3db3f512f", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -382,15 +415,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '242' + - '365' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:39 GMT + - Fri, 22 May 2026 09:16:18 GMT Pragma: - no-cache RequestId: - - cac67a38-03a9-4a86-93fa-bc39dbc512cf + - 22b06199-58cb-4e24-8ca1-bfd6a7b0161b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -418,9 +451,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/81065bd8-e334-4715-b170-dedb4cd514e6/items/83bb07ae-e23c-4f35-bfc2-25e070a52e7f + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/bf90152e-7731-4ae0-9169-71d3db3f512f response: body: string: '' @@ -436,11 +469,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 31 Dec 2025 14:38:39 GMT + - Fri, 22 May 2026 09:16:18 GMT Pragma: - no-cache RequestId: - - 8b38a98f-c977-459e-96c8-06060c5b6650 + - 05ca3512-1cde-4752-a1f5-f26103713bff Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_onelake_shortcut_name_only_success.yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_onelake_shortcut_name_only_success.yaml index f7980f635..54059b5c5 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_onelake_shortcut_name_only_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_onelake_shortcut_name_only_success.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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:37 GMT + - Fri, 22 May 2026 09:14:25 GMT Pragma: - no-cache RequestId: - - e0584eb6-8fff-4af5-8b19-720a78727fd7 + - e6032008-9770-46d2-8255-48a3f357c208 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,13 +62,21 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -76,15 +85,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '329' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:38 GMT + - Fri, 22 May 2026 09:14:26 GMT Pragma: - no-cache RequestId: - - a7828f54-30a8-4f8a-a77c-731fcfc266ea + - 9f021c22-2c51-48fd-9a90-b539c5f674f1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -110,13 +119,21 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -125,15 +142,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '329' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:37 GMT + - Fri, 22 May 2026 09:14:28 GMT Pragma: - no-cache RequestId: - - cc7f80ea-7b30-4d21-a265-97049f852662 + - 8652303f-af9d-46f7-b973-4025414ffab6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -158,18 +175,16 @@ interactions: - keep-alive Content-Length: - '74' - 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/81065bd8-e334-4715-b170-dedb4cd514e6/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/lakehouses response: body: - string: '{"id": "feef205f-3aec-4175-9e2b-0104d11d2202", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "81065bd8-e334-4715-b170-dedb4cd514e6"}' + string: '{"id": "b73f15a6-6c87-465f-bd01-b295921453a2", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -178,17 +193,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:40 GMT + - Fri, 22 May 2026 09:14:31 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 7ca20a1b-b3f6-4bfd-bb29-62fe2b0c0e27 + - dd30d306-c5db-4ce4-a1ed-70e922cc2fab Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,14 +229,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -230,15 +246,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:41 GMT + - Fri, 22 May 2026 09:14:31 GMT Pragma: - no-cache RequestId: - - 6e532fae-1da3-4af7-88a9-84c137c3fabc + - 299ab615-4a9d-4d9e-9b66-f7a893b0e039 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -264,15 +280,23 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "feef205f-3aec-4175-9e2b-0104d11d2202", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "b73f15a6-6c87-465f-bd01-b295921453a2", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -281,15 +305,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '242' + - '366' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:41 GMT + - Fri, 22 May 2026 09:14:32 GMT Pragma: - no-cache RequestId: - - 6d01e3d6-1130-45a8-99a0-3422e76e109c + - 7b557b77-a8b5-485d-80ee-7e47d3381c50 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -315,15 +339,23 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "feef205f-3aec-4175-9e2b-0104d11d2202", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "b73f15a6-6c87-465f-bd01-b295921453a2", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -332,15 +364,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '242' + - '366' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:42 GMT + - Fri, 22 May 2026 09:14:33 GMT Pragma: - no-cache RequestId: - - ad32ea94-dfe1-4199-b6a0-c0410d36fb54 + - 2f441562-bf23-44c9-8e65-5d972249581d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -365,18 +397,16 @@ interactions: - keep-alive Content-Length: - '74' - 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/81065bd8-e334-4715-b170-dedb4cd514e6/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/lakehouses response: body: - string: '{"id": "ee914472-2b9e-4a22-9624-3eac0e96c32f", "type": "Lakehouse", - "displayName": "fabcli000002", "workspaceId": - "81065bd8-e334-4715-b170-dedb4cd514e6"}' + string: '{"id": "ffbdf8c9-64dd-44ed-bd28-a51813144172", "type": "Lakehouse", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -385,17 +415,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:44 GMT + - Fri, 22 May 2026 09:14:36 GMT ETag: - '""' Pragma: - no-cache RequestId: - - c9500505-8672-4f41-9c62-e7484f83a756 + - d8085f28-c2f9-471f-bd88-b90d50d13422 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -421,14 +451,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -437,15 +468,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:44 GMT + - Fri, 22 May 2026 09:14:36 GMT Pragma: - no-cache RequestId: - - 2c8c22c3-a8a6-4d2c-9be4-ee6282f448d7 + - 8612da3f-52bc-4684-89e7-2fc06ec11907 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -471,17 +502,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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "feef205f-3aec-4175-9e2b-0104d11d2202", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "ee914472-2b9e-4a22-9624-3eac0e96c32f", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "b73f15a6-6c87-465f-bd01-b295921453a2", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "ffbdf8c9-64dd-44ed-bd28-a51813144172", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -490,15 +529,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '277' + - '399' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:44 GMT + - Fri, 22 May 2026 09:14:37 GMT Pragma: - no-cache RequestId: - - f60ba768-6fd4-4714-8865-821d999e8efa + - d4cc7ed6-c4db-41f3-b092-ccf14336c566 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -524,9 +563,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/81065bd8-e334-4715-b170-dedb4cd514e6/feef205f-3aec-4175-9e2b-0104d11d2202/Files/originalShortcut + uri: https://onelake.dfs.fabric.microsoft.com/4f3c92ee-023c-48a7-b08b-1c5e91be6534/b73f15a6-6c87-465f-bd01-b295921453a2/Files/originalShortcut response: body: string: '' @@ -540,9 +579,9 @@ interactions: Access-Control-Expose-Headers: - '*,Authorization' Date: - - Wed, 31 Dec 2025 14:37:44 GMT + - Fri, 22 May 2026 09:14:38 GMT Server: - - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -550,10 +589,10 @@ interactions: X-Content-Type-Options: - nosniff x-ms-error-code: - - BlobNotFound + - PathNotFound status: code: 404 - message: The specified blob does not exist. + message: The specified path does not exist. - request: body: null headers: @@ -566,9 +605,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/81065bd8-e334-4715-b170-dedb4cd514e6/feef205f-3aec-4175-9e2b-0104d11d2202/Files/originalShortcut.Shortcut + uri: https://onelake.dfs.fabric.microsoft.com/4f3c92ee-023c-48a7-b08b-1c5e91be6534/b73f15a6-6c87-465f-bd01-b295921453a2/Files/originalShortcut.Shortcut response: body: string: '' @@ -582,9 +621,9 @@ interactions: Access-Control-Expose-Headers: - '*,Authorization' Date: - - Wed, 31 Dec 2025 14:37:45 GMT + - Fri, 22 May 2026 09:14:40 GMT Server: - - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -592,10 +631,10 @@ interactions: X-Content-Type-Options: - nosniff x-ms-error-code: - - BlobNotFound + - PathNotFound status: code: 404 - message: The specified blob does not exist. + message: The specified path does not exist. - request: body: null headers: @@ -608,14 +647,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -624,15 +664,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:45 GMT + - Fri, 22 May 2026 09:14:40 GMT Pragma: - no-cache RequestId: - - a9eb21c2-c41e-412b-8d8f-447368259769 + - 0104aee5-a662-4f7c-9a62-cf36737d8209 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -658,17 +698,27 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "feef205f-3aec-4175-9e2b-0104d11d2202", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "ee914472-2b9e-4a22-9624-3eac0e96c32f", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "c975f984-93e8-42e1-9ce1-c57d7e59b185", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "b73f15a6-6c87-465f-bd01-b295921453a2", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "ffbdf8c9-64dd-44ed-bd28-a51813144172", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -677,15 +727,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '277' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:45 GMT + - Fri, 22 May 2026 09:14:41 GMT Pragma: - no-cache RequestId: - - ba1335cd-b48c-4bcf-86c3-005ecd9ea74e + - 0993a11a-910e-4cb1-a699-4e1dd4c4ce5e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -701,7 +751,7 @@ interactions: message: OK - request: body: '{"path": "Files", "name": "originalShortcut", "target": {"oneLake": {"workspaceId": - "81065bd8-e334-4715-b170-dedb4cd514e6", "itemId": "ee914472-2b9e-4a22-9624-3eac0e96c32f", + "4f3c92ee-023c-48a7-b08b-1c5e91be6534", "itemId": "ffbdf8c9-64dd-44ed-bd28-a51813144172", "path": "Files"}}}' headers: Accept: @@ -715,14 +765,14 @@ interactions: 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/81065bd8-e334-4715-b170-dedb4cd514e6/items/feef205f-3aec-4175-9e2b-0104d11d2202/shortcuts?shortcutConflictPolicy=GenerateUniqueName + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/b73f15a6-6c87-465f-bd01-b295921453a2/shortcuts?shortcutConflictPolicy=GenerateUniqueName response: body: string: '{"name": "originalShortcut", "path": "Files", "target": {"type": "OneLake", - "oneLake": {"workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6", "itemId": - "ee914472-2b9e-4a22-9624-3eac0e96c32f", "path": "Files"}}}' + "oneLake": {"workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", "itemId": + "ffbdf8c9-64dd-44ed-bd28-a51813144172", "path": "Files"}}}' headers: Access-Control-Allow-Headers: - '*' @@ -735,23 +785,25 @@ interactions: - RequestId,Location Cache-Control: - no-store, must-revalidate, no-cache + Connection: + - close Content-Encoding: - gzip - Content-Length: - - '194' Content-Type: - - application/json; charset=utf-8 + - application/json Date: - - Wed, 31 Dec 2025 14:37:46 GMT + - Fri, 22 May 2026 09:14:42 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/feef205f-3aec-4175-9e2b-0104d11d2202/shortcuts/Files/originalShortcut + - https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/b73f15a6-6c87-465f-bd01-b295921453a2/shortcuts/Files/originalShortcut Pragma: - no-cache RequestId: - - 0eff946d-0d7f-424e-8403-41b447fd19f4 + - d8dfabf7-ec9b-4eed-b8be-2ca4b25619e0 Strict-Transport-Security: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked X-Content-Type-Options: - nosniff - nosniff @@ -776,14 +828,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -792,15 +845,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:46 GMT + - Fri, 22 May 2026 09:14:42 GMT Pragma: - no-cache RequestId: - - 4f38bd5a-f7ec-4275-a7c9-1dfa529fba8c + - 8d01e89e-4cec-456b-826c-d5a47cd1e62b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -826,17 +879,27 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "feef205f-3aec-4175-9e2b-0104d11d2202", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "ee914472-2b9e-4a22-9624-3eac0e96c32f", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "c975f984-93e8-42e1-9ce1-c57d7e59b185", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "b73f15a6-6c87-465f-bd01-b295921453a2", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "ffbdf8c9-64dd-44ed-bd28-a51813144172", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -845,15 +908,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '277' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:47 GMT + - Fri, 22 May 2026 09:14:44 GMT Pragma: - no-cache RequestId: - - eca8764c-6e0f-4bc5-9307-38cc64796883 + - 1e8abfd7-2dd7-43d0-8bda-0c0dfe7da2ae Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -879,9 +942,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/81065bd8-e334-4715-b170-dedb4cd514e6/feef205f-3aec-4175-9e2b-0104d11d2202/Files/originalShortcut + uri: https://onelake.dfs.fabric.microsoft.com/4f3c92ee-023c-48a7-b08b-1c5e91be6534/b73f15a6-6c87-465f-bd01-b295921453a2/Files/originalShortcut response: body: string: '' @@ -901,13 +964,14 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:47 GMT + - Fri, 22 May 2026 09:14:45 GMT ETag: - - '"0x8DE487A28128E18"' + - '"0x8DEB7E28A9BA37C"' Last-Modified: - - Wed, 31 Dec 2025 14:37:42 GMT + - Fri, 22 May 2026 09:14:34 GMT Server: - - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Windows-Azure-HDFS/1.0 + - Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -931,14 +995,14 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items/feef205f-3aec-4175-9e2b-0104d11d2202/shortcuts/Files/originalShortcut + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/b73f15a6-6c87-465f-bd01-b295921453a2/shortcuts/Files/originalShortcut response: body: string: '{"name": "originalShortcut", "path": "Files", "target": {"type": "OneLake", - "oneLake": {"workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6", "itemId": - "ee914472-2b9e-4a22-9624-3eac0e96c32f", "path": "Files"}}}' + "oneLake": {"workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", "itemId": + "ffbdf8c9-64dd-44ed-bd28-a51813144172", "path": "Files"}}}' headers: Access-Control-Allow-Headers: - '*' @@ -953,19 +1017,19 @@ interactions: - no-store, must-revalidate, no-cache Content-Encoding: - gzip - Content-Length: - - '194' Content-Type: - - application/json; charset=utf-8 + - application/json Date: - - Wed, 31 Dec 2025 14:37:48 GMT + - Fri, 22 May 2026 09:14:46 GMT Pragma: - no-cache RequestId: - - ee3a3745-271e-48d3-91bb-3aa7aedd1c1e + - b1a32e82-d84b-4d01-956f-d354f80b35ba Strict-Transport-Security: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked X-Content-Type-Options: - nosniff - nosniff @@ -980,7 +1044,7 @@ interactions: message: OK - request: body: '{"name": "fabcli000003", "path": "Files", "target": {"oneLake": {"workspaceId": - "81065bd8-e334-4715-b170-dedb4cd514e6", "itemId": "ee914472-2b9e-4a22-9624-3eac0e96c32f", + "4f3c92ee-023c-48a7-b08b-1c5e91be6534", "itemId": "ffbdf8c9-64dd-44ed-bd28-a51813144172", "path": "Files"}}}' headers: Accept: @@ -994,14 +1058,14 @@ interactions: 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/81065bd8-e334-4715-b170-dedb4cd514e6/items/feef205f-3aec-4175-9e2b-0104d11d2202/shortcuts?shortcutConflictPolicy=Abort + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/b73f15a6-6c87-465f-bd01-b295921453a2/shortcuts?shortcutConflictPolicy=Abort response: body: string: '{"name": "fabcli000003", "path": "Files", "target": {"type": "OneLake", - "oneLake": {"workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6", "itemId": - "ee914472-2b9e-4a22-9624-3eac0e96c32f", "path": "Files"}}}' + "oneLake": {"workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", "itemId": + "ffbdf8c9-64dd-44ed-bd28-a51813144172", "path": "Files"}}}' headers: Access-Control-Allow-Headers: - '*' @@ -1016,21 +1080,21 @@ interactions: - no-store, must-revalidate, no-cache Content-Encoding: - gzip - Content-Length: - - '192' Content-Type: - - application/json; charset=utf-8 + - application/json Date: - - Wed, 31 Dec 2025 14:37:49 GMT + - Fri, 22 May 2026 09:14:47 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/feef205f-3aec-4175-9e2b-0104d11d2202/shortcuts/Files/fabcli9ljwityi6s + - https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/b73f15a6-6c87-465f-bd01-b295921453a2/shortcuts/Files/fabclifmwswz96dz Pragma: - no-cache RequestId: - - 0298bc96-04fb-4352-a137-717c5f10cb06 + - c7d976af-4dc5-461c-9c35-1e933cdeb5ce Strict-Transport-Security: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked X-Content-Type-Options: - nosniff - nosniff @@ -1057,9 +1121,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/81065bd8-e334-4715-b170-dedb4cd514e6/items/feef205f-3aec-4175-9e2b-0104d11d2202/shortcuts/Files/originalShortcut + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/b73f15a6-6c87-465f-bd01-b295921453a2/shortcuts/Files/originalShortcut response: body: string: '' @@ -1082,11 +1146,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 31 Dec 2025 14:37:50 GMT + - Fri, 22 May 2026 09:14:48 GMT Pragma: - no-cache RequestId: - - f8847da2-3099-4a2c-8fa6-ba0f2cc346dd + - 745633a4-6b9d-48fd-8a85-282f44a49edb Strict-Transport-Security: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains @@ -1114,14 +1178,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1130,15 +1195,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:49 GMT + - Fri, 22 May 2026 09:14:49 GMT Pragma: - no-cache RequestId: - - c0b4f074-ea46-48c1-a8eb-b5ca94d15a03 + - 07d7b3a5-bc58-4154-b41e-c755502ec6b3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1164,17 +1229,29 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "feef205f-3aec-4175-9e2b-0104d11d2202", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "ee914472-2b9e-4a22-9624-3eac0e96c32f", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "c975f984-93e8-42e1-9ce1-c57d7e59b185", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "2e38e157-5b67-4f50-90fd-8281232342bc", "type": "SQLEndpoint", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "b73f15a6-6c87-465f-bd01-b295921453a2", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "ffbdf8c9-64dd-44ed-bd28-a51813144172", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1183,15 +1260,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '277' + - '453' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:50 GMT + - Fri, 22 May 2026 09:14:49 GMT Pragma: - no-cache RequestId: - - 5ef7946b-a831-47ef-8b97-056d9b418d16 + - 354e44cf-84af-40bb-bafd-e1c43d87b244 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1217,9 +1294,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/81065bd8-e334-4715-b170-dedb4cd514e6/feef205f-3aec-4175-9e2b-0104d11d2202/Files/fabcli000003 + uri: https://onelake.dfs.fabric.microsoft.com/4f3c92ee-023c-48a7-b08b-1c5e91be6534/b73f15a6-6c87-465f-bd01-b295921453a2/Files/fabcli000003 response: body: string: '' @@ -1239,13 +1316,13 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:52 GMT + - Fri, 22 May 2026 09:14:52 GMT ETag: - - '"0x8DE487A28128E18"' + - '"0x8DEB7E28A9BA37C"' Last-Modified: - - Wed, 31 Dec 2025 14:37:42 GMT + - Fri, 22 May 2026 09:14:34 GMT Server: - - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1269,14 +1346,14 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items/feef205f-3aec-4175-9e2b-0104d11d2202/shortcuts/Files/fabcli000003 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/b73f15a6-6c87-465f-bd01-b295921453a2/shortcuts/Files/fabcli000003 response: body: string: '{"name": "fabcli000003", "path": "Files", "target": {"type": "OneLake", - "oneLake": {"workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6", "itemId": - "ee914472-2b9e-4a22-9624-3eac0e96c32f", "path": "Files"}}}' + "oneLake": {"workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", "itemId": + "ffbdf8c9-64dd-44ed-bd28-a51813144172", "path": "Files"}}}' headers: Access-Control-Allow-Headers: - '*' @@ -1291,19 +1368,19 @@ interactions: - no-store, must-revalidate, no-cache Content-Encoding: - gzip - Content-Length: - - '192' Content-Type: - - application/json; charset=utf-8 + - application/json Date: - - Wed, 31 Dec 2025 14:37:52 GMT + - Fri, 22 May 2026 09:14:52 GMT Pragma: - no-cache RequestId: - - 432dc991-b61e-4f1a-96f6-fb870d023b9e + - 60bf93d9-2213-43c7-a312-f66cd7c335c3 Strict-Transport-Security: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked X-Content-Type-Options: - nosniff - nosniff @@ -1328,14 +1405,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1344,15 +1422,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:53 GMT + - Fri, 22 May 2026 09:14:52 GMT Pragma: - no-cache RequestId: - - a478837f-b41c-46db-ae5a-c88813f4959a + - fa946ddd-bc07-4f9d-8f07-9435c541e055 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1378,17 +1456,29 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "feef205f-3aec-4175-9e2b-0104d11d2202", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "ee914472-2b9e-4a22-9624-3eac0e96c32f", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "c975f984-93e8-42e1-9ce1-c57d7e59b185", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "2e38e157-5b67-4f50-90fd-8281232342bc", "type": "SQLEndpoint", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "b73f15a6-6c87-465f-bd01-b295921453a2", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "ffbdf8c9-64dd-44ed-bd28-a51813144172", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1397,15 +1487,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '277' + - '453' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:53 GMT + - Fri, 22 May 2026 09:14:53 GMT Pragma: - no-cache RequestId: - - 2a477070-1fef-4708-9e28-89bf25c89d16 + - 799bdf8c-fdd8-471d-a00f-baa26a7b592e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1431,18 +1521,17 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/lakehouses/ee914472-2b9e-4a22-9624-3eac0e96c32f + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/lakehouses/ffbdf8c9-64dd-44ed-bd28-a51813144172 response: body: - string: '{"id": "ee914472-2b9e-4a22-9624-3eac0e96c32f", "type": "Lakehouse", - "displayName": "fabcli000002", "workspaceId": - "81065bd8-e334-4715-b170-dedb4cd514e6", "properties": {"oneLakeTablesPath": - "https://onelake.dfs.fabric.microsoft.com/81065bd8-e334-4715-b170-dedb4cd514e6/ee914472-2b9e-4a22-9624-3eac0e96c32f/Tables", - "oneLakeFilesPath": "https://onelake.dfs.fabric.microsoft.com/81065bd8-e334-4715-b170-dedb4cd514e6/ee914472-2b9e-4a22-9624-3eac0e96c32f/Files", - "sqlEndpointProperties": {"connectionString": null, "id": null, "provisioningStatus": - "InProgress"}}}' + string: '{"id": "ffbdf8c9-64dd-44ed-bd28-a51813144172", "type": "Lakehouse", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "properties": {"oneLakeTablesPath": "https://onelake.dfs.fabric.microsoft.com/4f3c92ee-023c-48a7-b08b-1c5e91be6534/ffbdf8c9-64dd-44ed-bd28-a51813144172/Tables", + "oneLakeFilesPath": "https://onelake.dfs.fabric.microsoft.com/4f3c92ee-023c-48a7-b08b-1c5e91be6534/ffbdf8c9-64dd-44ed-bd28-a51813144172/Files", + "sqlEndpointProperties": {"connectionString": "mock_connection_string", "id": + "2e38e157-5b67-4f50-90fd-8281232342bc", "provisioningStatus": "Success"}}}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1451,17 +1540,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '304' + - '361' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:54 GMT + - Fri, 22 May 2026 09:14:53 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 82653e14-af9a-46a0-ace1-195d7f1ca568 + - 1cd4c61e-38c2-4119-9e3a-dde3ba66d325 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1487,9 +1576,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/81065bd8-e334-4715-b170-dedb4cd514e6/items/ee914472-2b9e-4a22-9624-3eac0e96c32f/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/ffbdf8c9-64dd-44ed-bd28-a51813144172/connections response: body: string: '{"value": []}' @@ -1505,11 +1594,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:54 GMT + - Fri, 22 May 2026 09:14:55 GMT Pragma: - no-cache RequestId: - - 2f9ee618-7655-4b0f-92ee-56e760fa21e2 + - 08d1cd86-be4e-4f65-a226-6e21ccb96509 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1535,9 +1624,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/81065bd8-e334-4715-b170-dedb4cd514e6/items/ee914472-2b9e-4a22-9624-3eac0e96c32f/jobs/TableMaintenance/schedules + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/ffbdf8c9-64dd-44ed-bd28-a51813144172/jobs/TableMaintenance/schedules response: body: string: '{"value": []}' @@ -1553,11 +1642,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:55 GMT + - Fri, 22 May 2026 09:14:54 GMT Pragma: - no-cache RequestId: - - 1b7bba4e-4f7c-4928-9c8e-80d37e298e16 + - 1a936bf4-2eb4-4dde-8ad7-5da0852ebc67 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1583,14 +1672,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1599,15 +1689,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:55 GMT + - Fri, 22 May 2026 09:14:55 GMT Pragma: - no-cache RequestId: - - dda8139e-4317-477e-8c14-e3e1249f4bd8 + - e3509de4-6f76-48e4-a9f7-3d1332d36dd7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1633,17 +1723,29 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "feef205f-3aec-4175-9e2b-0104d11d2202", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "ee914472-2b9e-4a22-9624-3eac0e96c32f", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "c975f984-93e8-42e1-9ce1-c57d7e59b185", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "2e38e157-5b67-4f50-90fd-8281232342bc", "type": "SQLEndpoint", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "b73f15a6-6c87-465f-bd01-b295921453a2", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "ffbdf8c9-64dd-44ed-bd28-a51813144172", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1652,15 +1754,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '277' + - '453' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:55 GMT + - Fri, 22 May 2026 09:14:56 GMT Pragma: - no-cache RequestId: - - d0c7f074-0a85-4a75-a951-d04a0a3f6da6 + - 2f2598e0-e3fe-4a34-949b-9e4c8aa6f745 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1686,9 +1788,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/81065bd8-e334-4715-b170-dedb4cd514e6/feef205f-3aec-4175-9e2b-0104d11d2202/Files/fabcli000003 + uri: https://onelake.dfs.fabric.microsoft.com/4f3c92ee-023c-48a7-b08b-1c5e91be6534/b73f15a6-6c87-465f-bd01-b295921453a2/Files/fabcli000003 response: body: string: '' @@ -1708,13 +1810,14 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:56 GMT + - Fri, 22 May 2026 09:14:57 GMT ETag: - - '"0x8DE487A28128E18"' + - '"0x8DEB7E28A9BA37C"' Last-Modified: - - Wed, 31 Dec 2025 14:37:42 GMT + - Fri, 22 May 2026 09:14:34 GMT Server: - - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Windows-Azure-HDFS/1.0 + - Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1738,14 +1841,14 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items/feef205f-3aec-4175-9e2b-0104d11d2202/shortcuts/Files/fabcli000003 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/b73f15a6-6c87-465f-bd01-b295921453a2/shortcuts/Files/fabcli000003 response: body: string: '{"name": "fabcli000003", "path": "Files", "target": {"type": "OneLake", - "oneLake": {"workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6", "itemId": - "ee914472-2b9e-4a22-9624-3eac0e96c32f", "path": "Files"}}}' + "oneLake": {"workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", "itemId": + "ffbdf8c9-64dd-44ed-bd28-a51813144172", "path": "Files"}}}' headers: Access-Control-Allow-Headers: - '*' @@ -1760,19 +1863,19 @@ interactions: - no-store, must-revalidate, no-cache Content-Encoding: - gzip - Content-Length: - - '192' Content-Type: - - application/json; charset=utf-8 + - application/json Date: - - Wed, 31 Dec 2025 14:37:56 GMT + - Fri, 22 May 2026 09:14:58 GMT Pragma: - no-cache RequestId: - - 3f3752bd-35e6-4220-8ed9-11e5361e0bb9 + - 3f243652-8ed2-4ec4-99b1-d9289122a68b Strict-Transport-Security: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked X-Content-Type-Options: - nosniff - nosniff @@ -1797,14 +1900,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1813,15 +1917,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:56 GMT + - Fri, 22 May 2026 09:14:59 GMT Pragma: - no-cache RequestId: - - b5cd8002-1f96-48d0-b45a-91381e111d23 + - e5e70973-d001-4806-b031-b7deafc0ca9c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1847,17 +1951,29 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "feef205f-3aec-4175-9e2b-0104d11d2202", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "ee914472-2b9e-4a22-9624-3eac0e96c32f", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "c975f984-93e8-42e1-9ce1-c57d7e59b185", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "2e38e157-5b67-4f50-90fd-8281232342bc", "type": "SQLEndpoint", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "b73f15a6-6c87-465f-bd01-b295921453a2", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "ffbdf8c9-64dd-44ed-bd28-a51813144172", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1866,15 +1982,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '277' + - '453' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:57 GMT + - Fri, 22 May 2026 09:15:00 GMT Pragma: - no-cache RequestId: - - b8be9fdb-469d-48a4-8553-c494bbba3f68 + - d4f076af-504a-4875-99d5-9a31f7d0a01c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1900,9 +2016,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/81065bd8-e334-4715-b170-dedb4cd514e6/feef205f-3aec-4175-9e2b-0104d11d2202/Files/fabcli000003 + uri: https://onelake.dfs.fabric.microsoft.com/4f3c92ee-023c-48a7-b08b-1c5e91be6534/b73f15a6-6c87-465f-bd01-b295921453a2/Files/fabcli000003 response: body: string: '' @@ -1922,13 +2038,14 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:37:59 GMT + - Fri, 22 May 2026 09:15:01 GMT ETag: - - '"0x8DE487A28128E18"' + - '"0x8DEB7E28A9BA37C"' Last-Modified: - - Wed, 31 Dec 2025 14:37:42 GMT + - Fri, 22 May 2026 09:14:34 GMT Server: - - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Windows-Azure-HDFS/1.0 + - Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1954,9 +2071,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/81065bd8-e334-4715-b170-dedb4cd514e6/items/feef205f-3aec-4175-9e2b-0104d11d2202/shortcuts/Files/fabcli000003 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/b73f15a6-6c87-465f-bd01-b295921453a2/shortcuts/Files/fabcli000003 response: body: string: '' @@ -1979,11 +2096,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 31 Dec 2025 14:38:00 GMT + - Fri, 22 May 2026 09:15:03 GMT Pragma: - no-cache RequestId: - - 48ce3ef8-014f-4788-983a-8d881ab342e1 + - f0880a9a-f0cb-4944-94f5-86256272513e Strict-Transport-Security: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains @@ -2011,14 +2128,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2027,15 +2145,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:00 GMT + - Fri, 22 May 2026 09:15:04 GMT Pragma: - no-cache RequestId: - - c72f4b0e-13ac-44ff-8e59-3601962b15a9 + - a33a6692-6e4a-4583-93c6-c572c2ad09f5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2061,19 +2179,29 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "62d7bbf3-eed1-4e16-8dfe-07afea94fdfe", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "feef205f-3aec-4175-9e2b-0104d11d2202", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "ee914472-2b9e-4a22-9624-3eac0e96c32f", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "c975f984-93e8-42e1-9ce1-c57d7e59b185", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "2e38e157-5b67-4f50-90fd-8281232342bc", "type": "SQLEndpoint", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "b73f15a6-6c87-465f-bd01-b295921453a2", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "ffbdf8c9-64dd-44ed-bd28-a51813144172", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2082,15 +2210,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '318' + - '453' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:00 GMT + - Fri, 22 May 2026 09:15:04 GMT Pragma: - no-cache RequestId: - - 2e3477ea-5e80-4c14-87c4-481a9b6cd55a + - 6ac3d5b6-25a6-48f5-b614-93e55ce7c9cf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2118,9 +2246,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/81065bd8-e334-4715-b170-dedb4cd514e6/items/ee914472-2b9e-4a22-9624-3eac0e96c32f + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/ffbdf8c9-64dd-44ed-bd28-a51813144172 response: body: string: '' @@ -2136,11 +2264,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 31 Dec 2025 14:38:00 GMT + - Fri, 22 May 2026 09:15:05 GMT Pragma: - no-cache RequestId: - - 86f584bf-61f6-429e-8679-25d039b41ba3 + - 5b7f8357-623f-475f-a239-772a43fd1106 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2166,14 +2294,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2182,15 +2311,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:01 GMT + - Fri, 22 May 2026 09:15:06 GMT Pragma: - no-cache RequestId: - - f15e9641-d59c-482f-a437-452dad0782e3 + - 47bbd533-2d47-4f10-844b-527a3bd848ec Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2216,15 +2345,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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "feef205f-3aec-4175-9e2b-0104d11d2202", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "c975f984-93e8-42e1-9ce1-c57d7e59b185", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "b73f15a6-6c87-465f-bd01-b295921453a2", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2233,15 +2372,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '242' + - '395' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:02 GMT + - Fri, 22 May 2026 09:15:07 GMT Pragma: - no-cache RequestId: - - fa1aca63-4b2b-42c3-804c-0d18258ccac4 + - 1a72d8df-2b09-4829-8e3a-8bf4b98f4a3c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2269,9 +2408,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/81065bd8-e334-4715-b170-dedb4cd514e6/items/feef205f-3aec-4175-9e2b-0104d11d2202 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/b73f15a6-6c87-465f-bd01-b295921453a2 response: body: string: '' @@ -2287,11 +2426,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 31 Dec 2025 14:38:02 GMT + - Fri, 22 May 2026 09:15:07 GMT Pragma: - no-cache RequestId: - - b875c6e3-26fe-4e8d-87dd-98f524f615f4 + - e1ea419d-7c1c-4992-aefd-22915f21b016 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_onelake_shortcut_target_itemid_success.yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_onelake_shortcut_target_itemid_success.yaml index ee15affd7..ae6856845 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_onelake_shortcut_target_itemid_success.yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_onelake_shortcut_target_itemid_success.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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:03 GMT + - Fri, 22 May 2026 09:15:08 GMT Pragma: - no-cache RequestId: - - 00a8d903-501f-4a56-b8fb-71e2f277f0f4 + - c4f77b99-3d57-489a-805b-acdddbb9a3da Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,13 +62,21 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -76,15 +85,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '329' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:03 GMT + - Fri, 22 May 2026 09:15:08 GMT Pragma: - no-cache RequestId: - - 9281dbb5-2b12-469e-8f24-95e3f2a41fca + - ce74155a-c2ca-4775-95c2-fe1654351ffc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -110,13 +119,21 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -125,15 +142,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '176' + - '329' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:03 GMT + - Fri, 22 May 2026 09:15:10 GMT Pragma: - no-cache RequestId: - - 83e6f397-b822-415f-b0d5-1058ff83ad55 + - 0b24cd94-d95a-47ae-95d1-8e341f4b55ce Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -158,18 +175,16 @@ interactions: - keep-alive Content-Length: - '74' - 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/81065bd8-e334-4715-b170-dedb4cd514e6/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/lakehouses response: body: - string: '{"id": "ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "81065bd8-e334-4715-b170-dedb4cd514e6"}' + string: '{"id": "cc048d36-7222-42e9-bdb6-58ead6b5e2d0", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -178,17 +193,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '165' + - '157' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:05 GMT + - Fri, 22 May 2026 09:15:12 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 5fff0398-ddb1-4258-8e1b-5896e827d941 + - 5786d161-d799-4b98-ab37-d97c7b8145c2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,14 +229,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -230,15 +246,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:05 GMT + - Fri, 22 May 2026 09:15:13 GMT Pragma: - no-cache RequestId: - - cb60b43d-c902-4985-85b4-3e4170eb1a3f + - 9e5a3a6b-0e5b-407b-8042-e552958fc8cb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -264,15 +280,23 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "cc048d36-7222-42e9-bdb6-58ead6b5e2d0", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -281,15 +305,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '241' + - '366' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:05 GMT + - Fri, 22 May 2026 09:15:14 GMT Pragma: - no-cache RequestId: - - d0c07bfc-a42a-459c-8f7c-a1162cc48b0e + - 7421a900-454a-4a7f-8945-7e3fa133c484 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -315,15 +339,23 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "cc048d36-7222-42e9-bdb6-58ead6b5e2d0", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -332,15 +364,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '241' + - '366' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:06 GMT + - Fri, 22 May 2026 09:15:14 GMT Pragma: - no-cache RequestId: - - 95c3bb1d-9d88-4646-bae6-fe695418df32 + - 73b96cfa-d33a-42f1-9ca7-b16d1a4ddbb1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -365,18 +397,16 @@ interactions: - keep-alive Content-Length: - '74' - 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/81065bd8-e334-4715-b170-dedb4cd514e6/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/lakehouses response: body: - string: '{"id": "6d583dee-3995-4593-9920-f58526b47dd5", "type": "Lakehouse", - "displayName": "fabcli000002", "workspaceId": - "81065bd8-e334-4715-b170-dedb4cd514e6"}' + string: '{"id": "3be62445-9557-4e92-af0a-3bc3f1ad4a45", "type": "Lakehouse", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -385,17 +415,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:07 GMT + - Fri, 22 May 2026 09:15:17 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 238f936a-1b52-4231-8e56-96a47ea67fce + - be4fc916-ee5b-4d0a-bd34-82919090f995 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -421,14 +451,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -437,15 +468,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:08 GMT + - Fri, 22 May 2026 09:15:18 GMT Pragma: - no-cache RequestId: - - 345be560-1e02-4ac7-9bee-4012a18b5606 + - aaf1935a-a477-4000-ab9e-9623a52ad4e5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -471,17 +502,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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "6d583dee-3995-4593-9920-f58526b47dd5", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "cc048d36-7222-42e9-bdb6-58ead6b5e2d0", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "3be62445-9557-4e92-af0a-3bc3f1ad4a45", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -490,15 +529,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '277' + - '399' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:08 GMT + - Fri, 22 May 2026 09:15:18 GMT Pragma: - no-cache RequestId: - - b2cf3018-d561-49ba-b2a4-1d1f4af63cbf + - 6f011ce4-4bfe-4468-84a8-7d0fd38404fa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -524,17 +563,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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "6d583dee-3995-4593-9920-f58526b47dd5", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "cc048d36-7222-42e9-bdb6-58ead6b5e2d0", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "3be62445-9557-4e92-af0a-3bc3f1ad4a45", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -543,15 +590,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '277' + - '399' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:09 GMT + - Fri, 22 May 2026 09:15:19 GMT Pragma: - no-cache RequestId: - - 60ce2345-d3e7-46fc-95d3-29c44b2df369 + - 11b93617-f3c5-4f01-ae2c-6665829605f3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -576,18 +623,16 @@ interactions: - keep-alive Content-Length: - '74' - 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/81065bd8-e334-4715-b170-dedb4cd514e6/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/lakehouses response: body: - string: '{"id": "56107b92-5b1c-4752-ab0a-4958a0064934", "type": "Lakehouse", - "displayName": "fabcli000003", "workspaceId": - "81065bd8-e334-4715-b170-dedb4cd514e6"}' + string: '{"id": "d2cb9457-65fb-434c-8240-3b3b34042b70", "type": "Lakehouse", + "displayName": "fabcli000003", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -596,17 +641,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '169' + - '157' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:10 GMT + - Fri, 22 May 2026 09:15:21 GMT ETag: - '""' Pragma: - no-cache RequestId: - - fb8b52c1-f760-4f0f-a6c6-66f8a3c76a23 + - e1042af3-676c-4a19-86f0-2928d89d62c0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -632,14 +677,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -648,15 +694,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:11 GMT + - Fri, 22 May 2026 09:15:22 GMT Pragma: - no-cache RequestId: - - bc57b5f2-c175-4682-93da-9c3db754670f + - 578cbbc9-efc7-4445-85e2-6797d227045e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -682,19 +728,29 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "6d583dee-3995-4593-9920-f58526b47dd5", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "56107b92-5b1c-4752-ab0a-4958a0064934", "type": "Lakehouse", "displayName": - "fabcli000003", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "01daf3aa-3dac-403d-bb2c-1abf853c4a53", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "cc048d36-7222-42e9-bdb6-58ead6b5e2d0", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "3be62445-9557-4e92-af0a-3bc3f1ad4a45", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2cb9457-65fb-434c-8240-3b3b34042b70", "type": "Lakehouse", "displayName": + "fabcli000003", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -703,15 +759,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '311' + - '462' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:11 GMT + - Fri, 22 May 2026 09:15:23 GMT Pragma: - no-cache RequestId: - - fb017c7d-6616-4ad7-90d9-512679d7848c + - 0a6fa7be-8283-4f5f-b423-f27991b12728 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -737,9 +793,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/81065bd8-e334-4715-b170-dedb4cd514e6/ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47/Files/targetUpdateShortcut + uri: https://onelake.dfs.fabric.microsoft.com/4f3c92ee-023c-48a7-b08b-1c5e91be6534/cc048d36-7222-42e9-bdb6-58ead6b5e2d0/Files/targetUpdateShortcut response: body: string: '' @@ -753,9 +809,9 @@ interactions: Access-Control-Expose-Headers: - '*,Authorization' Date: - - Wed, 31 Dec 2025 14:38:12 GMT + - Fri, 22 May 2026 09:15:24 GMT Server: - - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -763,10 +819,10 @@ interactions: X-Content-Type-Options: - nosniff x-ms-error-code: - - BlobNotFound + - PathNotFound status: code: 404 - message: The specified blob does not exist. + message: The specified path does not exist. - request: body: null headers: @@ -779,9 +835,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/81065bd8-e334-4715-b170-dedb4cd514e6/ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47/Files/targetUpdateShortcut.Shortcut + uri: https://onelake.dfs.fabric.microsoft.com/4f3c92ee-023c-48a7-b08b-1c5e91be6534/cc048d36-7222-42e9-bdb6-58ead6b5e2d0/Files/targetUpdateShortcut.Shortcut response: body: string: '' @@ -795,9 +851,9 @@ interactions: Access-Control-Expose-Headers: - '*,Authorization' Date: - - Wed, 31 Dec 2025 14:38:12 GMT + - Fri, 22 May 2026 09:15:27 GMT Server: - - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -805,10 +861,10 @@ interactions: X-Content-Type-Options: - nosniff x-ms-error-code: - - BlobNotFound + - PathNotFound status: code: 404 - message: The specified blob does not exist. + message: The specified path does not exist. - request: body: null headers: @@ -821,14 +877,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -837,15 +894,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:12 GMT + - Fri, 22 May 2026 09:15:27 GMT Pragma: - no-cache RequestId: - - e6f95d99-1953-41b8-a455-0b6166d1e4e2 + - 3bf3795f-395c-4d32-b5de-bc2785a6dcec Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -871,19 +928,31 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "6d583dee-3995-4593-9920-f58526b47dd5", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "56107b92-5b1c-4752-ab0a-4958a0064934", "type": "Lakehouse", "displayName": - "fabcli000003", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "01daf3aa-3dac-403d-bb2c-1abf853c4a53", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "b6076e4b-2003-4da1-970b-75b07b952cd5", "type": "SQLEndpoint", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "cc048d36-7222-42e9-bdb6-58ead6b5e2d0", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "3be62445-9557-4e92-af0a-3bc3f1ad4a45", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2cb9457-65fb-434c-8240-3b3b34042b70", "type": "Lakehouse", "displayName": + "fabcli000003", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -892,15 +961,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '311' + - '488' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:14 GMT + - Fri, 22 May 2026 09:15:28 GMT Pragma: - no-cache RequestId: - - 015e8017-7c57-4e34-8540-9474bc85e36b + - f291e8d7-3462-41eb-8297-0b34d4e79eef Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -916,7 +985,7 @@ interactions: message: OK - request: body: '{"path": "Files", "name": "targetUpdateShortcut", "target": {"oneLake": - {"workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6", "itemId": "6d583dee-3995-4593-9920-f58526b47dd5", + {"workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", "itemId": "3be62445-9557-4e92-af0a-3bc3f1ad4a45", "path": "Files"}}}' headers: Accept: @@ -930,14 +999,14 @@ interactions: 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/81065bd8-e334-4715-b170-dedb4cd514e6/items/ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47/shortcuts?shortcutConflictPolicy=GenerateUniqueName + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/cc048d36-7222-42e9-bdb6-58ead6b5e2d0/shortcuts?shortcutConflictPolicy=GenerateUniqueName response: body: string: '{"name": "targetUpdateShortcut", "path": "Files", "target": {"type": - "OneLake", "oneLake": {"workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6", - "itemId": "6d583dee-3995-4593-9920-f58526b47dd5", "path": "Files"}}}' + "OneLake", "oneLake": {"workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "itemId": "3be62445-9557-4e92-af0a-3bc3f1ad4a45", "path": "Files"}}}' headers: Access-Control-Allow-Headers: - '*' @@ -952,21 +1021,21 @@ interactions: - no-store, must-revalidate, no-cache Content-Encoding: - gzip - Content-Length: - - '195' Content-Type: - - application/json; charset=utf-8 + - application/json Date: - - Wed, 31 Dec 2025 14:38:14 GMT + - Fri, 22 May 2026 09:15:29 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47/shortcuts/Files/targetUpdateShortcut + - https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/cc048d36-7222-42e9-bdb6-58ead6b5e2d0/shortcuts/Files/targetUpdateShortcut Pragma: - no-cache RequestId: - - 6da094e3-efad-42a0-b4ca-e7b496b38301 + - f8467177-238e-4b4b-ac00-755deb92dee2 Strict-Transport-Security: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked X-Content-Type-Options: - nosniff - nosniff @@ -991,14 +1060,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1007,15 +1077,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:15 GMT + - Fri, 22 May 2026 09:15:30 GMT Pragma: - no-cache RequestId: - - 990a724f-3e67-476f-a3b1-e49e532c817b + - 64f76f05-5c5c-4fd6-9210-051065a953b6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1041,19 +1111,33 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "6d583dee-3995-4593-9920-f58526b47dd5", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "56107b92-5b1c-4752-ab0a-4958a0064934", "type": "Lakehouse", "displayName": - "fabcli000003", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "01daf3aa-3dac-403d-bb2c-1abf853c4a53", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "b6076e4b-2003-4da1-970b-75b07b952cd5", "type": "SQLEndpoint", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fb505727-c0ac-46ba-ae1e-f13e00fb3a8a", "type": "SQLEndpoint", "displayName": + "fabcli000003", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "cc048d36-7222-42e9-bdb6-58ead6b5e2d0", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "3be62445-9557-4e92-af0a-3bc3f1ad4a45", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2cb9457-65fb-434c-8240-3b3b34042b70", "type": "Lakehouse", "displayName": + "fabcli000003", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1062,15 +1146,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '311' + - '514' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:15 GMT + - Fri, 22 May 2026 09:15:30 GMT Pragma: - no-cache RequestId: - - 2c234986-a6dd-4b46-a8c7-73bdec91bd8c + - fb9d8965-a49a-4d11-bcb6-6f86a3132608 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1096,18 +1180,17 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/lakehouses/56107b92-5b1c-4752-ab0a-4958a0064934 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/lakehouses/d2cb9457-65fb-434c-8240-3b3b34042b70 response: body: - string: '{"id": "56107b92-5b1c-4752-ab0a-4958a0064934", "type": "Lakehouse", - "displayName": "fabcli000003", "workspaceId": - "81065bd8-e334-4715-b170-dedb4cd514e6", "properties": {"oneLakeTablesPath": - "https://onelake.dfs.fabric.microsoft.com/81065bd8-e334-4715-b170-dedb4cd514e6/56107b92-5b1c-4752-ab0a-4958a0064934/Tables", - "oneLakeFilesPath": "https://onelake.dfs.fabric.microsoft.com/81065bd8-e334-4715-b170-dedb4cd514e6/56107b92-5b1c-4752-ab0a-4958a0064934/Files", - "sqlEndpointProperties": {"connectionString": null, "id": null, "provisioningStatus": - "InProgress"}}}' + string: '{"id": "d2cb9457-65fb-434c-8240-3b3b34042b70", "type": "Lakehouse", + "displayName": "fabcli000003", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "properties": {"oneLakeTablesPath": "https://onelake.dfs.fabric.microsoft.com/4f3c92ee-023c-48a7-b08b-1c5e91be6534/d2cb9457-65fb-434c-8240-3b3b34042b70/Tables", + "oneLakeFilesPath": "https://onelake.dfs.fabric.microsoft.com/4f3c92ee-023c-48a7-b08b-1c5e91be6534/d2cb9457-65fb-434c-8240-3b3b34042b70/Files", + "sqlEndpointProperties": {"connectionString": "mock_connection_string", "id": + "fb505727-c0ac-46ba-ae1e-f13e00fb3a8a", "provisioningStatus": "Success"}}}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -1116,17 +1199,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '303' + - '364' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:16 GMT + - Fri, 22 May 2026 09:15:32 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 685fbbb8-56c1-45c0-9e95-88f8bac53655 + - 729f3e44-9054-4177-88c3-2179b0e00aa8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1152,9 +1235,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/81065bd8-e334-4715-b170-dedb4cd514e6/items/56107b92-5b1c-4752-ab0a-4958a0064934/connections + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/d2cb9457-65fb-434c-8240-3b3b34042b70/connections response: body: string: '{"value": []}' @@ -1170,11 +1253,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:16 GMT + - Fri, 22 May 2026 09:15:32 GMT Pragma: - no-cache RequestId: - - 68fcfe6a-dbe3-4757-a544-d13cc335a21b + - 5a4701ff-575d-48d0-90a1-3b3aaac6c18c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1200,9 +1283,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/81065bd8-e334-4715-b170-dedb4cd514e6/items/56107b92-5b1c-4752-ab0a-4958a0064934/jobs/TableMaintenance/schedules + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/d2cb9457-65fb-434c-8240-3b3b34042b70/jobs/TableMaintenance/schedules response: body: string: '{"value": []}' @@ -1218,11 +1301,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:17 GMT + - Fri, 22 May 2026 09:15:32 GMT Pragma: - no-cache RequestId: - - 12bf8d40-5ffb-4203-a26b-2d92bbca4c26 + - 19b8c0b4-e29f-4ea0-82a3-f28f943329cb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1248,14 +1331,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1264,15 +1348,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:17 GMT + - Fri, 22 May 2026 09:15:34 GMT Pragma: - no-cache RequestId: - - d81cb7bc-90b5-4a0c-bd89-d6c7fd96ce28 + - 393e7a63-0cb7-4bfc-a2b9-e65305b4c6cc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1298,19 +1382,33 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "6d583dee-3995-4593-9920-f58526b47dd5", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "56107b92-5b1c-4752-ab0a-4958a0064934", "type": "Lakehouse", "displayName": - "fabcli000003", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "01daf3aa-3dac-403d-bb2c-1abf853c4a53", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "b6076e4b-2003-4da1-970b-75b07b952cd5", "type": "SQLEndpoint", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fb505727-c0ac-46ba-ae1e-f13e00fb3a8a", "type": "SQLEndpoint", "displayName": + "fabcli000003", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "cc048d36-7222-42e9-bdb6-58ead6b5e2d0", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "3be62445-9557-4e92-af0a-3bc3f1ad4a45", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2cb9457-65fb-434c-8240-3b3b34042b70", "type": "Lakehouse", "displayName": + "fabcli000003", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1319,15 +1417,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '311' + - '514' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:18 GMT + - Fri, 22 May 2026 09:15:34 GMT Pragma: - no-cache RequestId: - - af3de752-64e0-4abf-b285-3deebdd4aea4 + - 092e16e6-409a-47fb-9fd9-a03aa729b117 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1353,9 +1451,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/81065bd8-e334-4715-b170-dedb4cd514e6/ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47/Files/targetUpdateShortcut + uri: https://onelake.dfs.fabric.microsoft.com/4f3c92ee-023c-48a7-b08b-1c5e91be6534/cc048d36-7222-42e9-bdb6-58ead6b5e2d0/Files/targetUpdateShortcut response: body: string: '' @@ -1375,13 +1473,13 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:17 GMT + - Fri, 22 May 2026 09:15:37 GMT ETag: - - '"0x8DE487A3691DE3C"' + - '"0x8DEB7E2A329B648"' Last-Modified: - - Wed, 31 Dec 2025 14:38:07 GMT + - Fri, 22 May 2026 09:15:16 GMT Server: - - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1405,14 +1503,14 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items/ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47/shortcuts/Files/targetUpdateShortcut + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/cc048d36-7222-42e9-bdb6-58ead6b5e2d0/shortcuts/Files/targetUpdateShortcut response: body: string: '{"name": "targetUpdateShortcut", "path": "Files", "target": {"type": - "OneLake", "oneLake": {"workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6", - "itemId": "6d583dee-3995-4593-9920-f58526b47dd5", "path": "Files"}}}' + "OneLake", "oneLake": {"workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "itemId": "3be62445-9557-4e92-af0a-3bc3f1ad4a45", "path": "Files"}}}' headers: Access-Control-Allow-Headers: - '*' @@ -1425,21 +1523,23 @@ interactions: - RequestId Cache-Control: - no-store, must-revalidate, no-cache + Connection: + - close Content-Encoding: - gzip - Content-Length: - - '195' Content-Type: - - application/json; charset=utf-8 + - application/json Date: - - Wed, 31 Dec 2025 14:38:19 GMT + - Fri, 22 May 2026 09:15:37 GMT Pragma: - no-cache RequestId: - - d69b3365-41f7-48f3-8fa4-e7a9962cad99 + - fc12dcaf-304b-4f61-a9a6-c871bf43c8ef Strict-Transport-Security: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked X-Content-Type-Options: - nosniff - nosniff @@ -1454,7 +1554,7 @@ interactions: message: OK - request: body: '{"name": "targetUpdateShortcut", "path": "Files", "target": {"oneLake": - {"workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6", "itemId": "56107b92-5b1c-4752-ab0a-4958a0064934", + {"workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", "itemId": "d2cb9457-65fb-434c-8240-3b3b34042b70", "path": "Files"}}}' headers: Accept: @@ -1468,14 +1568,14 @@ interactions: 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/81065bd8-e334-4715-b170-dedb4cd514e6/items/ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47/shortcuts?shortcutConflictPolicy=OverwriteOnly + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/cc048d36-7222-42e9-bdb6-58ead6b5e2d0/shortcuts?shortcutConflictPolicy=OverwriteOnly response: body: string: '{"name": "targetUpdateShortcut", "path": "Files", "target": {"type": - "OneLake", "oneLake": {"workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6", - "itemId": "56107b92-5b1c-4752-ab0a-4958a0064934", "path": "Files"}}}' + "OneLake", "oneLake": {"workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "itemId": "d2cb9457-65fb-434c-8240-3b3b34042b70", "path": "Files"}}}' headers: Access-Control-Allow-Headers: - '*' @@ -1488,23 +1588,25 @@ interactions: - RequestId,Location Cache-Control: - no-store, must-revalidate, no-cache + Connection: + - close Content-Encoding: - gzip - Content-Length: - - '194' Content-Type: - - application/json; charset=utf-8 + - application/json Date: - - Wed, 31 Dec 2025 14:38:19 GMT + - Fri, 22 May 2026 09:15:39 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/items/ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47/shortcuts/Files/targetUpdateShortcut + - https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/cc048d36-7222-42e9-bdb6-58ead6b5e2d0/shortcuts/Files/targetUpdateShortcut Pragma: - no-cache RequestId: - - b5a270cc-fd5c-4593-be35-1d18f5233b34 + - 5ae630bd-cb14-4dd2-b63a-840c6c3e95d8 Strict-Transport-Security: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked X-Content-Type-Options: - nosniff - nosniff @@ -1529,14 +1631,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1545,15 +1648,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:19 GMT + - Fri, 22 May 2026 09:15:40 GMT Pragma: - no-cache RequestId: - - ac572424-a791-42c1-b0f2-50e753dcdacd + - 0f037425-1236-49ca-8c41-568d1c4b3838 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1579,23 +1682,33 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "d72a6d04-2c3c-445d-80a3-523ddcc820f7", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "6347f247-364e-4c84-a8af-762b8636d9d8", "type": "SQLEndpoint", "displayName": - "fabcli000003", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "6d583dee-3995-4593-9920-f58526b47dd5", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "56107b92-5b1c-4752-ab0a-4958a0064934", "type": "Lakehouse", "displayName": - "fabcli000003", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "01daf3aa-3dac-403d-bb2c-1abf853c4a53", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "b6076e4b-2003-4da1-970b-75b07b952cd5", "type": "SQLEndpoint", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fb505727-c0ac-46ba-ae1e-f13e00fb3a8a", "type": "SQLEndpoint", "displayName": + "fabcli000003", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "cc048d36-7222-42e9-bdb6-58ead6b5e2d0", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "3be62445-9557-4e92-af0a-3bc3f1ad4a45", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2cb9457-65fb-434c-8240-3b3b34042b70", "type": "Lakehouse", "displayName": + "fabcli000003", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1604,15 +1717,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '384' + - '514' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:20 GMT + - Fri, 22 May 2026 09:15:40 GMT Pragma: - no-cache RequestId: - - 16a3bc8d-3a6b-4f6a-a16c-3d92b9580aec + - dc11ad26-1f49-4a26-829c-a9ada79819c7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1638,9 +1751,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/81065bd8-e334-4715-b170-dedb4cd514e6/ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47/Files/targetUpdateShortcut + uri: https://onelake.dfs.fabric.microsoft.com/4f3c92ee-023c-48a7-b08b-1c5e91be6534/cc048d36-7222-42e9-bdb6-58ead6b5e2d0/Files/targetUpdateShortcut response: body: string: '' @@ -1660,13 +1773,13 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:20 GMT + - Fri, 22 May 2026 09:15:43 GMT ETag: - - '"0x8DE487A3856A03C"' + - '"0x8DEB7E2A5A5208C"' Last-Modified: - - Wed, 31 Dec 2025 14:38:10 GMT + - Fri, 22 May 2026 09:15:20 GMT Server: - - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1690,14 +1803,14 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items/ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47/shortcuts/Files/targetUpdateShortcut + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/cc048d36-7222-42e9-bdb6-58ead6b5e2d0/shortcuts/Files/targetUpdateShortcut response: body: string: '{"name": "targetUpdateShortcut", "path": "Files", "target": {"type": - "OneLake", "oneLake": {"workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6", - "itemId": "56107b92-5b1c-4752-ab0a-4958a0064934", "path": "Files"}}}' + "OneLake", "oneLake": {"workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "itemId": "d2cb9457-65fb-434c-8240-3b3b34042b70", "path": "Files"}}}' headers: Access-Control-Allow-Headers: - '*' @@ -1710,21 +1823,23 @@ interactions: - RequestId Cache-Control: - no-store, must-revalidate, no-cache + Connection: + - close Content-Encoding: - gzip - Content-Length: - - '194' Content-Type: - - application/json; charset=utf-8 + - application/json Date: - - Wed, 31 Dec 2025 14:38:21 GMT + - Fri, 22 May 2026 09:15:44 GMT Pragma: - no-cache RequestId: - - 7fc26f1c-63ff-4589-bfa2-1b662c13b9a6 + - 0ab22ee0-e7ad-4aa2-ba71-97dda78de49f Strict-Transport-Security: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked X-Content-Type-Options: - nosniff - nosniff @@ -1749,14 +1864,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1765,15 +1881,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:21 GMT + - Fri, 22 May 2026 09:15:44 GMT Pragma: - no-cache RequestId: - - 8d7780b9-a403-459e-823f-0479b0192c17 + - ed3e75f7-f565-4ffd-a3d9-66fa8f24d410 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1799,25 +1915,33 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "8423cbd2-c604-4a0b-8deb-733e4f133aa1", "type": "SQLEndpoint", "displayName": - "fabcli000001", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "d72a6d04-2c3c-445d-80a3-523ddcc820f7", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "6347f247-364e-4c84-a8af-762b8636d9d8", "type": "SQLEndpoint", "displayName": - "fabcli000003", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "6d583dee-3995-4593-9920-f58526b47dd5", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "56107b92-5b1c-4752-ab0a-4958a0064934", "type": "Lakehouse", "displayName": - "fabcli000003", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "01daf3aa-3dac-403d-bb2c-1abf853c4a53", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "b6076e4b-2003-4da1-970b-75b07b952cd5", "type": "SQLEndpoint", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fb505727-c0ac-46ba-ae1e-f13e00fb3a8a", "type": "SQLEndpoint", "displayName": + "fabcli000003", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "cc048d36-7222-42e9-bdb6-58ead6b5e2d0", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "3be62445-9557-4e92-af0a-3bc3f1ad4a45", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2cb9457-65fb-434c-8240-3b3b34042b70", "type": "Lakehouse", "displayName": + "fabcli000003", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1826,15 +1950,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '408' + - '514' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:21 GMT + - Fri, 22 May 2026 09:15:45 GMT Pragma: - no-cache RequestId: - - d1a8327c-6758-4a53-841d-f1e1236f14d5 + - fde71468-4b97-45bb-82f3-f75dcf57c789 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1860,9 +1984,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/81065bd8-e334-4715-b170-dedb4cd514e6/ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47/Files/targetUpdateShortcut + uri: https://onelake.dfs.fabric.microsoft.com/4f3c92ee-023c-48a7-b08b-1c5e91be6534/cc048d36-7222-42e9-bdb6-58ead6b5e2d0/Files/targetUpdateShortcut response: body: string: '' @@ -1882,13 +2006,13 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:23 GMT + - Fri, 22 May 2026 09:15:47 GMT ETag: - - '"0x8DE487A3856A03C"' + - '"0x8DEB7E2A5A5208C"' Last-Modified: - - Wed, 31 Dec 2025 14:38:10 GMT + - Fri, 22 May 2026 09:15:20 GMT Server: - - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1914,9 +2038,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/81065bd8-e334-4715-b170-dedb4cd514e6/items/ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47/shortcuts/Files/targetUpdateShortcut + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/cc048d36-7222-42e9-bdb6-58ead6b5e2d0/shortcuts/Files/targetUpdateShortcut response: body: string: '' @@ -1932,6 +2056,8 @@ interactions: - RequestId Cache-Control: - no-store, must-revalidate, no-cache + Connection: + - close Content-Encoding: - gzip Content-Length: @@ -1939,11 +2065,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 31 Dec 2025 14:38:25 GMT + - Fri, 22 May 2026 09:15:47 GMT Pragma: - no-cache RequestId: - - b79a7a47-69a0-4072-a6bf-5a781c0267b3 + - 070f671d-642a-4404-908a-0798da1bf3a4 Strict-Transport-Security: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains @@ -1971,14 +2097,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1987,15 +2114,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:25 GMT + - Fri, 22 May 2026 09:15:49 GMT Pragma: - no-cache RequestId: - - b53c4432-d224-4911-bdfb-78d8cc068313 + - d4338b84-ed54-4704-a20a-cf4e9711fe64 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2021,25 +2148,33 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "8423cbd2-c604-4a0b-8deb-733e4f133aa1", "type": "SQLEndpoint", "displayName": - "fabcli000001", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "d72a6d04-2c3c-445d-80a3-523ddcc820f7", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "6347f247-364e-4c84-a8af-762b8636d9d8", "type": "SQLEndpoint", "displayName": - "fabcli000003", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "6d583dee-3995-4593-9920-f58526b47dd5", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "56107b92-5b1c-4752-ab0a-4958a0064934", "type": "Lakehouse", "displayName": - "fabcli000003", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "01daf3aa-3dac-403d-bb2c-1abf853c4a53", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "b6076e4b-2003-4da1-970b-75b07b952cd5", "type": "SQLEndpoint", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fb505727-c0ac-46ba-ae1e-f13e00fb3a8a", "type": "SQLEndpoint", "displayName": + "fabcli000003", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "cc048d36-7222-42e9-bdb6-58ead6b5e2d0", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "3be62445-9557-4e92-af0a-3bc3f1ad4a45", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2cb9457-65fb-434c-8240-3b3b34042b70", "type": "Lakehouse", "displayName": + "fabcli000003", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2048,15 +2183,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '408' + - '514' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:25 GMT + - Fri, 22 May 2026 09:15:49 GMT Pragma: - no-cache RequestId: - - 98d73a05-949d-4280-b060-d791b6e5fd58 + - 4cce48a3-b6e8-4e6f-a228-5de61fcf8baf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2084,9 +2219,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/81065bd8-e334-4715-b170-dedb4cd514e6/items/56107b92-5b1c-4752-ab0a-4958a0064934 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/d2cb9457-65fb-434c-8240-3b3b34042b70 response: body: string: '' @@ -2102,11 +2237,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 31 Dec 2025 14:38:25 GMT + - Fri, 22 May 2026 09:15:51 GMT Pragma: - no-cache RequestId: - - 30dfb59d-5671-423b-a0db-b16f90f00425 + - 1076cd63-8d7b-4c02-9429-2b736e96e782 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2132,14 +2267,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2148,15 +2284,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:25 GMT + - Fri, 22 May 2026 09:15:51 GMT Pragma: - no-cache RequestId: - - ab76785d-ed48-4128-ac4e-61d3ffc7bf07 + - aaef32cb-c8c8-4b00-98f7-da078f84896d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2182,21 +2318,29 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "8423cbd2-c604-4a0b-8deb-733e4f133aa1", "type": "SQLEndpoint", "displayName": - "fabcli000001", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "d72a6d04-2c3c-445d-80a3-523ddcc820f7", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "6d583dee-3995-4593-9920-f58526b47dd5", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "01daf3aa-3dac-403d-bb2c-1abf853c4a53", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "b6076e4b-2003-4da1-970b-75b07b952cd5", "type": "SQLEndpoint", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "cc048d36-7222-42e9-bdb6-58ead6b5e2d0", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "3be62445-9557-4e92-af0a-3bc3f1ad4a45", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2205,15 +2349,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '341' + - '453' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:27 GMT + - Fri, 22 May 2026 09:15:52 GMT Pragma: - no-cache RequestId: - - 2a65b8cd-3b7b-4497-a543-126505a4e46e + - 24c6729e-d191-4d4f-ab8d-d35e8174cfee Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2241,9 +2385,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/81065bd8-e334-4715-b170-dedb4cd514e6/items/6d583dee-3995-4593-9920-f58526b47dd5 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/3be62445-9557-4e92-af0a-3bc3f1ad4a45 response: body: string: '' @@ -2259,11 +2403,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 31 Dec 2025 14:38:27 GMT + - Fri, 22 May 2026 09:15:53 GMT Pragma: - no-cache RequestId: - - 3f013c3f-92da-430b-a24e-a2886849d90e + - ff81fddb-6151-4625-996a-0bd7edf7158c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2289,14 +2433,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2305,15 +2450,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:28 GMT + - Fri, 22 May 2026 09:15:53 GMT Pragma: - no-cache RequestId: - - b4ab6e37-823e-4646-8414-8defd27f1793 + - 345f6615-41e8-4bc4-bada-ec5d24d27598 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2339,17 +2484,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/81065bd8-e334-4715-b170-dedb4cd514e6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "3e75a415-b907-4295-b163-a746b3af88d1", "type": "SemanticModel", - "displayName": "fabcli000001_auto", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "8423cbd2-c604-4a0b-8deb-733e4f133aa1", "type": "SQLEndpoint", "displayName": - "fabcli000001", "description": "", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}, - {"id": "ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "81065bd8-e334-4715-b170-dedb4cd514e6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "01daf3aa-3dac-403d-bb2c-1abf853c4a53", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "cc048d36-7222-42e9-bdb6-58ead6b5e2d0", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -2358,15 +2511,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '276' + - '393' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:27 GMT + - Fri, 22 May 2026 09:15:54 GMT Pragma: - no-cache RequestId: - - d16ef835-af07-4bcf-a196-dd7e17bb1250 + - 8267ccc0-48fb-44df-a64a-141e0cde4831 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -2394,9 +2547,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/81065bd8-e334-4715-b170-dedb4cd514e6/items/ae8184b3-7d1b-4e58-b5a1-1dbc1eb89b47 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/cc048d36-7222-42e9-bdb6-58ead6b5e2d0 response: body: string: '' @@ -2412,11 +2565,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 31 Dec 2025 14:38:28 GMT + - Fri, 22 May 2026 09:15:55 GMT Pragma: - no-cache RequestId: - - 4031f6d4-02d4-4b13-a138-13b28cdafc93 + - 1a8b97ff-c288-4edf-8e93-8bbffa7b01dd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_shortcut_invalid_query_failure.yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_shortcut_invalid_query_failure.yaml index c67bed465..2d8172f05 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_shortcut_invalid_query_failure.yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_shortcut_invalid_query_failure.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": "7d331fef-1f2a-406b-8eb9-b4776069f5f6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:26:16 GMT + - Fri, 22 May 2026 09:13:57 GMT Pragma: - no-cache RequestId: - - d1989a1b-abb2-4793-8a84-8cc6657ca98a + - ef4e3587-3a71-40be-a8ce-ab92245322cc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,12 +62,21 @@ 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/7d331fef-1f2a-406b-8eb9-b4776069f5f6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -75,15 +85,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '329' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:26:17 GMT + - Fri, 22 May 2026 09:13:58 GMT Pragma: - no-cache RequestId: - - 0ac99d7f-3f03-4643-9987-227f7c4ccae1 + - 9c4acd1b-51c0-4c02-9eaf-9ecaea272dae Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -109,12 +119,21 @@ 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/7d331fef-1f2a-406b-8eb9-b4776069f5f6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": []}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -123,15 +142,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '32' + - '329' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:26:18 GMT + - Fri, 22 May 2026 09:13:59 GMT Pragma: - no-cache RequestId: - - c324ae0a-ac32-4e2d-b971-a0368c5114b0 + - 36a88c82-91ad-479d-a3a0-57c835d8b67f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -156,18 +175,16 @@ interactions: - keep-alive Content-Length: - '74' - 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/7d331fef-1f2a-406b-8eb9-b4776069f5f6/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/lakehouses response: body: - string: '{"id": "429cd6c6-87b4-4d1a-9fb6-818b7c8074e6", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "7d331fef-1f2a-406b-8eb9-b4776069f5f6"}' + string: '{"id": "04d3103e-df3d-455d-b180-6c6ca482679b", "type": "Lakehouse", + "displayName": "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -176,17 +193,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '168' + - '156' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:26:22 GMT + - Fri, 22 May 2026 09:14:03 GMT ETag: - '""' Pragma: - no-cache RequestId: - - f2ce54ad-0da3-418d-b353-49f6a1555751 + - b138209f-9b79-469a-89ae-4c558a5e836a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -212,14 +229,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": "7d331fef-1f2a-406b-8eb9-b4776069f5f6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -228,15 +246,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2304' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:26:23 GMT + - Fri, 22 May 2026 09:14:03 GMT Pragma: - no-cache RequestId: - - 9cfcf9e8-e86c-4730-9df9-04ac3769fed5 + - 091602cf-39e1-4356-8153-85ffebb52293 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -262,14 +280,23 @@ 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/7d331fef-1f2a-406b-8eb9-b4776069f5f6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "429cd6c6-87b4-4d1a-9fb6-818b7c8074e6", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "7d331fef-1f2a-406b-8eb9-b4776069f5f6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "04d3103e-df3d-455d-b180-6c6ca482679b", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -278,15 +305,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '367' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:26:24 GMT + - Fri, 22 May 2026 09:14:04 GMT Pragma: - no-cache RequestId: - - 1afdf94d-a800-4758-86a0-575ae9af6ea4 + - 079cfc3a-2285-4d69-9450-69e5e8519aba Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -312,14 +339,23 @@ 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/7d331fef-1f2a-406b-8eb9-b4776069f5f6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "429cd6c6-87b4-4d1a-9fb6-818b7c8074e6", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "7d331fef-1f2a-406b-8eb9-b4776069f5f6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "04d3103e-df3d-455d-b180-6c6ca482679b", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -328,15 +364,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '180' + - '367' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:26:25 GMT + - Fri, 22 May 2026 09:14:05 GMT Pragma: - no-cache RequestId: - - a694db72-022b-4e20-8d45-08ea241d70d6 + - 0190fffc-d602-4155-a46d-fca9956f7259 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -361,18 +397,16 @@ interactions: - keep-alive Content-Length: - '74' - 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/7d331fef-1f2a-406b-8eb9-b4776069f5f6/lakehouses + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/lakehouses response: body: - string: '{"id": "295b3ffc-089c-4368-892a-2411a2e85cf2", "type": "Lakehouse", - "displayName": "fabcli000002", "workspaceId": - "7d331fef-1f2a-406b-8eb9-b4776069f5f6"}' + string: '{"id": "2a0c30ce-c25c-4d24-b0f8-491e8a002478", "type": "Lakehouse", + "displayName": "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}' headers: Access-Control-Expose-Headers: - RequestId,ETag @@ -381,17 +415,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '169' + - '154' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:26:28 GMT + - Fri, 22 May 2026 09:14:08 GMT ETag: - '""' Pragma: - no-cache RequestId: - - 538557aa-c2b8-426f-b6a3-bdbf3a70e144 + - e9315dce-aef6-4022-bd57-770adc6df8d2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -417,14 +451,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": "7d331fef-1f2a-406b-8eb9-b4776069f5f6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -433,15 +468,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2304' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:26:29 GMT + - Fri, 22 May 2026 09:14:09 GMT Pragma: - no-cache RequestId: - - 7221b0b5-c48a-4172-a0e5-74c35c9cad15 + - b2d505d6-1509-469f-adfb-35f27ebfa51d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -467,15 +502,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/7d331fef-1f2a-406b-8eb9-b4776069f5f6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "429cd6c6-87b4-4d1a-9fb6-818b7c8074e6", "type": "Lakehouse", - "displayName": "fabcli000001", "workspaceId": - "7d331fef-1f2a-406b-8eb9-b4776069f5f6"}, {"id": "295b3ffc-089c-4368-892a-2411a2e85cf2", - "type": "Lakehouse", "displayName": "fabcli000002", "workspaceId": "7d331fef-1f2a-406b-8eb9-b4776069f5f6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "04d3103e-df3d-455d-b180-6c6ca482679b", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "2a0c30ce-c25c-4d24-b0f8-491e8a002478", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -484,15 +529,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '224' + - '399' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:26:29 GMT + - Fri, 22 May 2026 09:14:09 GMT Pragma: - no-cache RequestId: - - 65f6c14a-178c-4078-97e3-50da69aa6190 + - 5c57d218-30e5-4185-a358-7a549fd71e67 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -518,9 +563,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/7d331fef-1f2a-406b-8eb9-b4776069f5f6/429cd6c6-87b4-4d1a-9fb6-818b7c8074e6/Files/testShortcut + uri: https://onelake.dfs.fabric.microsoft.com/4f3c92ee-023c-48a7-b08b-1c5e91be6534/04d3103e-df3d-455d-b180-6c6ca482679b/Files/testShortcut response: body: string: '' @@ -534,9 +579,9 @@ interactions: Access-Control-Expose-Headers: - '*,Authorization' Date: - - Thu, 29 Jan 2026 13:26:32 GMT + - Fri, 22 May 2026 09:14:13 GMT Server: - - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Windows-Azure-HDFS/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -544,10 +589,10 @@ interactions: X-Content-Type-Options: - nosniff x-ms-error-code: - - BlobNotFound + - PathNotFound status: code: 404 - message: The specified blob does not exist. + message: The specified path does not exist. - request: body: null headers: @@ -560,9 +605,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/7d331fef-1f2a-406b-8eb9-b4776069f5f6/429cd6c6-87b4-4d1a-9fb6-818b7c8074e6/Files/testShortcut.Shortcut + uri: https://onelake.dfs.fabric.microsoft.com/4f3c92ee-023c-48a7-b08b-1c5e91be6534/04d3103e-df3d-455d-b180-6c6ca482679b/Files/testShortcut.Shortcut response: body: string: '' @@ -576,20 +621,19 @@ interactions: Access-Control-Expose-Headers: - '*,Authorization' Date: - - Thu, 29 Jan 2026 13:26:35 GMT + - Fri, 22 May 2026 09:14:14 GMT Server: - - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Windows-Azure-HDFS/1.0 + - Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains - Transfer-Encoding: - - chunked X-Content-Type-Options: - nosniff x-ms-error-code: - - BlobNotFound + - PathNotFound status: code: 404 - message: The specified blob does not exist. + message: The specified path does not exist. - request: body: null headers: @@ -602,14 +646,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": "7d331fef-1f2a-406b-8eb9-b4776069f5f6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -618,15 +663,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2304' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:26:36 GMT + - Fri, 22 May 2026 09:14:15 GMT Pragma: - no-cache RequestId: - - 2b79c192-134d-441f-9c16-3a3121a156e2 + - d0e50986-f817-4566-a2bd-2cce84d6d3de Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -652,19 +697,27 @@ 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/7d331fef-1f2a-406b-8eb9-b4776069f5f6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "09315954-f834-4a99-ad37-db9a6a1decc4", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "7d331fef-1f2a-406b-8eb9-b4776069f5f6"}, - {"id": "99bf0e45-5df3-4699-91d1-3a262ad1d6de", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "7d331fef-1f2a-406b-8eb9-b4776069f5f6"}, - {"id": "429cd6c6-87b4-4d1a-9fb6-818b7c8074e6", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "7d331fef-1f2a-406b-8eb9-b4776069f5f6"}, - {"id": "295b3ffc-089c-4368-892a-2411a2e85cf2", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "7d331fef-1f2a-406b-8eb9-b4776069f5f6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "86f76e52-29a7-44a8-bb97-2d88e28d32bd", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "04d3103e-df3d-455d-b180-6c6ca482679b", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "2a0c30ce-c25c-4d24-b0f8-491e8a002478", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -673,15 +726,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '296' + - '425' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:26:37 GMT + - Fri, 22 May 2026 09:14:16 GMT Pragma: - no-cache RequestId: - - b412da16-297f-40b1-b49c-dbf91fd9f09a + - f8603c7b-cdeb-4884-96eb-3b003b1c944c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -697,7 +750,7 @@ interactions: message: OK - request: body: '{"path": "Files", "name": "testShortcut", "target": {"oneLake": {"workspaceId": - "7d331fef-1f2a-406b-8eb9-b4776069f5f6", "itemId": "295b3ffc-089c-4368-892a-2411a2e85cf2", + "4f3c92ee-023c-48a7-b08b-1c5e91be6534", "itemId": "2a0c30ce-c25c-4d24-b0f8-491e8a002478", "path": "Files"}}}' headers: Accept: @@ -711,14 +764,14 @@ interactions: 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/7d331fef-1f2a-406b-8eb9-b4776069f5f6/items/429cd6c6-87b4-4d1a-9fb6-818b7c8074e6/shortcuts?shortcutConflictPolicy=GenerateUniqueName + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/04d3103e-df3d-455d-b180-6c6ca482679b/shortcuts?shortcutConflictPolicy=GenerateUniqueName response: body: string: '{"name": "testShortcut", "path": "Files", "target": {"type": "OneLake", - "oneLake": {"workspaceId": "7d331fef-1f2a-406b-8eb9-b4776069f5f6", "itemId": - "295b3ffc-089c-4368-892a-2411a2e85cf2", "path": "Files"}}}' + "oneLake": {"workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", "itemId": + "2a0c30ce-c25c-4d24-b0f8-491e8a002478", "path": "Files"}}}' headers: Access-Control-Allow-Headers: - '*' @@ -733,21 +786,21 @@ interactions: - no-store, must-revalidate, no-cache Content-Encoding: - gzip - Content-Length: - - '193' Content-Type: - - application/json; charset=utf-8 + - application/json Date: - - Thu, 29 Jan 2026 13:26:38 GMT + - Fri, 22 May 2026 09:14:16 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/7d331fef-1f2a-406b-8eb9-b4776069f5f6/items/429cd6c6-87b4-4d1a-9fb6-818b7c8074e6/shortcuts/Files/testShortcut + - https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/04d3103e-df3d-455d-b180-6c6ca482679b/shortcuts/Files/testShortcut Pragma: - no-cache RequestId: - - 8d329538-0149-46a1-9a03-5f476e03fa72 + - c8449cf1-d815-48ae-b0fc-b06fbaad9187 Strict-Transport-Security: - max-age=31536000; includeSubDomains - max-age=31536000; includeSubDomains + Transfer-Encoding: + - chunked X-Content-Type-Options: - nosniff - nosniff @@ -772,14 +825,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": "7d331fef-1f2a-406b-8eb9-b4776069f5f6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -788,15 +842,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2304' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:26:38 GMT + - Fri, 22 May 2026 09:14:17 GMT Pragma: - no-cache RequestId: - - 6bbafdd0-17a1-4fcc-b26d-0192e6eb88ac + - 4175a89d-93a8-4e5e-9c8f-79d240885b26 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -822,19 +876,29 @@ 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/7d331fef-1f2a-406b-8eb9-b4776069f5f6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "09315954-f834-4a99-ad37-db9a6a1decc4", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "7d331fef-1f2a-406b-8eb9-b4776069f5f6"}, - {"id": "99bf0e45-5df3-4699-91d1-3a262ad1d6de", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "7d331fef-1f2a-406b-8eb9-b4776069f5f6"}, - {"id": "429cd6c6-87b4-4d1a-9fb6-818b7c8074e6", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "7d331fef-1f2a-406b-8eb9-b4776069f5f6"}, - {"id": "295b3ffc-089c-4368-892a-2411a2e85cf2", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "7d331fef-1f2a-406b-8eb9-b4776069f5f6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "86f76e52-29a7-44a8-bb97-2d88e28d32bd", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "83439c3e-3001-41fd-af80-411a4350582c", "type": "SQLEndpoint", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "04d3103e-df3d-455d-b180-6c6ca482679b", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "2a0c30ce-c25c-4d24-b0f8-491e8a002478", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -843,15 +907,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '296' + - '453' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:26:39 GMT + - Fri, 22 May 2026 09:14:18 GMT Pragma: - no-cache RequestId: - - d26f7bc0-a419-406d-9533-cfeea69fa962 + - 211299fb-521e-43b2-9d30-6a0d3aee8dd0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -877,9 +941,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: HEAD - uri: https://onelake.dfs.fabric.microsoft.com/7d331fef-1f2a-406b-8eb9-b4776069f5f6/429cd6c6-87b4-4d1a-9fb6-818b7c8074e6/Files/testShortcut + uri: https://onelake.dfs.fabric.microsoft.com/4f3c92ee-023c-48a7-b08b-1c5e91be6534/04d3103e-df3d-455d-b180-6c6ca482679b/Files/testShortcut response: body: string: '' @@ -899,13 +963,14 @@ interactions: Content-Type: - text/plain; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:26:40 GMT + - Fri, 22 May 2026 09:14:20 GMT ETag: - - '"0x8DE5F3A00F02D48"' + - '"0x8DEB7E27A215EE4"' Last-Modified: - - Thu, 29 Jan 2026 13:26:26 GMT + - Fri, 22 May 2026 09:14:07 GMT Server: - - Windows-Azure-Blob/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + - Windows-Azure-HDFS/1.0 + - Microsoft-HTTPAPI/2.0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -929,14 +994,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": "7d331fef-1f2a-406b-8eb9-b4776069f5f6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -945,15 +1011,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2304' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:26:42 GMT + - Fri, 22 May 2026 09:14:20 GMT Pragma: - no-cache RequestId: - - 434dddc9-b3a9-415c-a7c7-ebe91d36343f + - fe38c140-e358-4dcc-a3bb-e8cf7105c8cb Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -979,19 +1045,29 @@ 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/7d331fef-1f2a-406b-8eb9-b4776069f5f6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "09315954-f834-4a99-ad37-db9a6a1decc4", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "7d331fef-1f2a-406b-8eb9-b4776069f5f6"}, - {"id": "99bf0e45-5df3-4699-91d1-3a262ad1d6de", "type": "SQLEndpoint", "displayName": - "fabcli000002", "description": "", "workspaceId": "7d331fef-1f2a-406b-8eb9-b4776069f5f6"}, - {"id": "429cd6c6-87b4-4d1a-9fb6-818b7c8074e6", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "7d331fef-1f2a-406b-8eb9-b4776069f5f6"}, - {"id": "295b3ffc-089c-4368-892a-2411a2e85cf2", "type": "Lakehouse", "displayName": - "fabcli000002", "workspaceId": "7d331fef-1f2a-406b-8eb9-b4776069f5f6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "86f76e52-29a7-44a8-bb97-2d88e28d32bd", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "83439c3e-3001-41fd-af80-411a4350582c", "type": "SQLEndpoint", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "04d3103e-df3d-455d-b180-6c6ca482679b", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "2a0c30ce-c25c-4d24-b0f8-491e8a002478", "type": "Lakehouse", "displayName": + "fabcli000002", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1000,15 +1076,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '296' + - '453' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:26:42 GMT + - Fri, 22 May 2026 09:14:21 GMT Pragma: - no-cache RequestId: - - d40deb30-4469-41b7-9d15-548052053e1a + - 58c47576-796a-4ced-aa93-ec82194bfde1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1036,9 +1112,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/7d331fef-1f2a-406b-8eb9-b4776069f5f6/items/295b3ffc-089c-4368-892a-2411a2e85cf2 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/2a0c30ce-c25c-4d24-b0f8-491e8a002478 response: body: string: '' @@ -1054,11 +1130,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 29 Jan 2026 13:26:42 GMT + - Fri, 22 May 2026 09:14:22 GMT Pragma: - no-cache RequestId: - - f03124a6-67d3-4205-8def-d7bc181cfc38 + - 7a6a08a7-0805-4345-9b03-10aea6832be4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1084,14 +1160,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": "7d331fef-1f2a-406b-8eb9-b4776069f5f6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1100,15 +1177,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2304' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:26:42 GMT + - Fri, 22 May 2026 09:14:23 GMT Pragma: - no-cache RequestId: - - 78260fd4-999c-470a-92aa-dc57cf08e3aa + - 99de4ffe-26d7-45fd-8245-ce45bc331f65 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1134,15 +1211,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/7d331fef-1f2a-406b-8eb9-b4776069f5f6/items + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items response: body: - string: '{"value": [{"id": "09315954-f834-4a99-ad37-db9a6a1decc4", "type": "SQLEndpoint", - "displayName": "fabcli000001", "description": "", "workspaceId": "7d331fef-1f2a-406b-8eb9-b4776069f5f6"}, - {"id": "429cd6c6-87b4-4d1a-9fb6-818b7c8074e6", "type": "Lakehouse", "displayName": - "fabcli000001", "workspaceId": "7d331fef-1f2a-406b-8eb9-b4776069f5f6"}]}' + string: '{"value": [{"id": "3fbee2ca-aebd-49fd-a03a-0bd5bd2a66a5", "type": "SemanticModel", + "displayName": "fabcli000001_auto", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "fa09d374-f85b-4671-8dac-508f484655fb", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "a495463c-dd5d-47ee-8430-3c29c55e0c9a", "type": "SQLEndpoint", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "86f76e52-29a7-44a8-bb97-2d88e28d32bd", "type": "SQLEndpoint", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "9a6cc513-6fb1-4d99-b70f-ab9df4e339dd", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "d2f9a359-3c7a-4fa2-95ef-65eae896d937", "type": "Lakehouse", "displayName": + "fabcli000001dtdm", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}, + {"id": "04d3103e-df3d-455d-b180-6c6ca482679b", "type": "Lakehouse", "displayName": + "fabcli000001", "description": "", "workspaceId": "4f3c92ee-023c-48a7-b08b-1c5e91be6534"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1151,15 +1238,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '229' + - '393' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 13:26:43 GMT + - Fri, 22 May 2026 09:14:24 GMT Pragma: - no-cache RequestId: - - 951d0bf7-d550-4d5a-a630-4665292b92f3 + - 0af15a7b-4032-4b4f-bb69-1508993a4368 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1187,9 +1274,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/7d331fef-1f2a-406b-8eb9-b4776069f5f6/items/429cd6c6-87b4-4d1a-9fb6-818b7c8074e6 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/items/04d3103e-df3d-455d-b180-6c6ca482679b response: body: string: '' @@ -1205,11 +1292,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 29 Jan 2026 13:26:43 GMT + - Fri, 22 May 2026 09:14:25 GMT Pragma: - no-cache RequestId: - - cb8f93a7-04cb-4d5c-882f-fb5565c618fc + - 23259fdc-d070-413c-a6b5-eb1531ba17c2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_sparkpool_invalid_query_failure.yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_sparkpool_invalid_query_failure.yaml index c0c69cd8e..9c06e043b 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_sparkpool_invalid_query_failure.yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_sparkpool_invalid_query_failure.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": "a5a06844-76d1-489b-959a-d858cdc50254", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2302' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 12:57:04 GMT + - Fri, 22 May 2026 09:06:05 GMT Pragma: - no-cache RequestId: - - bb36f4df-376e-4fb6-ab06-e778b1f2d30f + - e26eaa16-a154-4cb1-95ba-bcc280c90e0f 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/a5a06844-76d1-489b-959a-d858cdc50254/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", @@ -78,9 +79,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 12:57:06 GMT + - Fri, 22 May 2026 09:06:06 GMT RequestId: - - 4e5998bd-bec4-410f-b016-6529221104cf + - ae1e6458-08a8-4fed-acdd-601d327c6aae Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -106,9 +107,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/a5a06844-76d1-489b-959a-d858cdc50254/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", @@ -123,9 +124,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 12:57:07 GMT + - Fri, 22 May 2026 09:06:07 GMT RequestId: - - 422bda7c-9a97-4ca4-aa8c-76af41d759bc + - 88b80657-8c39-4433-b54d-fe73324d911a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -155,26 +156,30 @@ interactions: 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/a5a06844-76d1-489b-959a-d858cdc50254/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: - string: '{"id": "7a0fdd05-5e21-427f-84d0-e012a39de4d7", "type": "Workspace", + string: '{"id": "d7a31abd-17ee-4f56-9181-e79660962ca5", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 1}, "dynamicExecutorAllocation": {"enabled": false}}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Location + Connection: + - close Content-Length: - '322' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 12:57:08 GMT + - Fri, 22 May 2026 09:06:08 GMT + Location: + - https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools/d7a31abd-17ee-4f56-9181-e79660962ca5 RequestId: - - c710fc11-f553-4348-90f2-1679cdd27da3 + - 9c3f5f33-2318-49a4-bb96-9d0c9496051b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -200,14 +205,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": "a5a06844-76d1-489b-959a-d858cdc50254", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -216,15 +222,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2302' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 12:57:09 GMT + - Fri, 22 May 2026 09:06:09 GMT Pragma: - no-cache RequestId: - - 4e5fc4ed-03b4-4224-a98d-885cf41b39bc + - 31a330f9-2747-4633-b032-eb9f23653c6a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -250,15 +256,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/a5a06844-76d1-489b-959a-d858cdc50254/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", "name": "Starter Pool", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 10}, "dynamicExecutorAllocation": - {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "7a0fdd05-5e21-427f-84d0-e012a39de4d7", + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "d7a31abd-17ee-4f56-9181-e79660962ca5", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 1}, "dynamicExecutorAllocation": {"enabled": false}}]}' @@ -270,9 +276,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 12:57:09 GMT + - Fri, 22 May 2026 09:06:10 GMT RequestId: - - 7c683e63-65a5-44d4-ac5d-96cd22eedc18 + - d76a37c3-63d9-490f-9880-5d015e44dd99 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -298,14 +304,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": "a5a06844-76d1-489b-959a-d858cdc50254", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -314,15 +321,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2302' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 12:57:10 GMT + - Fri, 22 May 2026 09:06:11 GMT Pragma: - no-cache RequestId: - - df9d8595-cc92-4191-8077-2b91b7529a2f + - 959e94be-35b3-4cf7-95ca-100f0af0a201 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -348,15 +355,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/a5a06844-76d1-489b-959a-d858cdc50254/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", "name": "Starter Pool", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 10}, "dynamicExecutorAllocation": - {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "7a0fdd05-5e21-427f-84d0-e012a39de4d7", + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "d7a31abd-17ee-4f56-9181-e79660962ca5", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 1}, "dynamicExecutorAllocation": {"enabled": false}}]}' @@ -368,9 +375,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 12:57:11 GMT + - Fri, 22 May 2026 09:06:12 GMT RequestId: - - 9f166f53-5fb3-4200-bf5f-339853d5f266 + - 13eaca92-44af-4bec-92f5-83c44e0880b3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -398,9 +405,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/a5a06844-76d1-489b-959a-d858cdc50254/spark/pools/7a0fdd05-5e21-427f-84d0-e012a39de4d7 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools/d7a31abd-17ee-4f56-9181-e79660962ca5 response: body: string: '' @@ -412,9 +419,9 @@ interactions: Content-Type: - application/octet-stream Date: - - Thu, 29 Jan 2026 12:57:12 GMT + - Fri, 22 May 2026 09:06:12 GMT RequestId: - - 9fadd827-07cd-43ec-899c-84b613a4847d + - e7ba6774-0e43-4e38-82fa-8cff5b0f5d99 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_sparkpool_success[autoScale.enabled-True].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_sparkpool_success[autoScale.enabled-True].yaml index 081b08c98..ba3ee2c58 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_sparkpool_success[autoScale.enabled-True].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_sparkpool_success[autoScale.enabled-True].yaml @@ -1,684 +1,672 @@ interactions: - - request: - body: null - headers: - Accept: - - "*/*" - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: - '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "619e9877-6a58-4dc2-9589-bd4d8ee36bd2", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - "2301" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 22 Jan 2026 11:31:39 GMT - Pragma: - - no-cache - RequestId: - - cc316c46-f24f-4610-8517-11f8afd012ae - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - "true" - status: - code: 200 - message: OK - - request: - body: null - headers: - Accept: - - "*/*" - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/619e9877-6a58-4dc2-9589-bd4d8ee36bd2/spark/pools - response: - body: - string: - '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", - "name": "Starter Pool", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", - "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 10}, "dynamicExecutorAllocation": - {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Content-Length: - - "460" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 22 Jan 2026 11:31:40 GMT - RequestId: - - ddb19f16-dbb0-4c53-b284-e62b7d8bda4c - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - "true" - status: - code: 200 - message: OK - - request: - body: null - headers: - Accept: - - "*/*" - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/619e9877-6a58-4dc2-9589-bd4d8ee36bd2/spark/pools - response: - body: - string: - '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", - "name": "Starter Pool", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", - "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 10}, "dynamicExecutorAllocation": - {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Content-Length: - - "460" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 22 Jan 2026 11:31:41 GMT - RequestId: - - bc252167-4fea-406d-9fdd-07ff17314965 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - "true" - status: - code: 200 - message: OK - - request: - body: - '{"name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", +- 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": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: + - '2795' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 22 May 2026 09:06:26 GMT + Pragma: + - no-cache + RequestId: + - b79ce378-119b-45d6-8e9f-2f4b82063680 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: 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/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools + response: + body: + string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", + "name": "Starter Pool", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", + "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 10}, "dynamicExecutorAllocation": + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Content-Length: + - '460' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 22 May 2026 09:06:25 GMT + RequestId: + - 855b9403-6bc4-4d85-a449-5a22653e5f84 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: 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/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools + response: + body: + string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", + "name": "Starter Pool", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", + "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 10}, "dynamicExecutorAllocation": + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Content-Length: + - '460' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 22 May 2026 09:06:27 GMT + RequestId: + - 8bbf4327-5efd-4572-b2ca-19a350838fa1 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", + "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": + {"enabled": false, "minExecutors": 1, "maxExecutors": 1}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '239' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: POST + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools + response: + body: + string: '{"id": "dd491948-be35-4efd-8f39-c5be9652aa1c", "type": "Workspace", + "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": - {"enabled": false, "minExecutors": 1, "maxExecutors": 1}}' - headers: - Accept: - - "*/*" - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - "239" - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: POST - uri: https://api.fabric.microsoft.com/v1/workspaces/619e9877-6a58-4dc2-9589-bd4d8ee36bd2/spark/pools - response: - body: - string: - '{"id": "cfb27133-1062-435e-a41d-b1c55786490b", "type": "Workspace", - "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", - "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": - {"enabled": false}}' - headers: - Access-Control-Expose-Headers: - - RequestId - Content-Length: - - "322" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 22 Jan 2026 11:31:42 GMT - RequestId: - - 7d679caa-2f2e-4a81-ab33-9f84f5e8a033 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-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.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: - '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "619e9877-6a58-4dc2-9589-bd4d8ee36bd2", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - "2301" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 22 Jan 2026 11:31:43 GMT - Pragma: - - no-cache - RequestId: - - 3ccadaf1-a797-4d1b-bacf-70f9292da326 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - "true" - status: - code: 200 - message: OK - - request: - body: null - headers: - Accept: - - "*/*" - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/619e9877-6a58-4dc2-9589-bd4d8ee36bd2/spark/pools - response: - body: - string: - '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", - "name": "Starter Pool", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", - "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 10}, "dynamicExecutorAllocation": - {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "cfb27133-1062-435e-a41d-b1c55786490b", - "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", - "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": - 3}, "dynamicExecutorAllocation": {"enabled": false}}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Content-Length: - - "845" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 22 Jan 2026 11:31:43 GMT - RequestId: - - 13ac80a3-1bb1-4ef2-845d-9c9a9be1061c - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - "true" - status: - code: 200 - message: OK - - request: - body: null - headers: - Accept: - - "*/*" - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/619e9877-6a58-4dc2-9589-bd4d8ee36bd2/spark/pools/cfb27133-1062-435e-a41d-b1c55786490b - response: - body: - string: - '{"id": "cfb27133-1062-435e-a41d-b1c55786490b", "type": "Workspace", - "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", - "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": - {"enabled": false}}' - headers: - Access-Control-Expose-Headers: - - RequestId - Content-Length: - - "322" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 22 Jan 2026 11:31:44 GMT - RequestId: - - 9bc3ba0e-798a-43cf-b16d-97d2c97fffe9 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - "true" - status: - code: 200 - message: OK - - request: - body: '{"autoScale": {"enabled": "True", "minNodeCount": 1, "maxNodeCount": 3}}' - headers: - Accept: - - "*/*" - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - "72" - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/619e9877-6a58-4dc2-9589-bd4d8ee36bd2/spark/pools/cfb27133-1062-435e-a41d-b1c55786490b - response: - body: - string: - '{"id": "cfb27133-1062-435e-a41d-b1c55786490b", "type": "Workspace", - "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", - "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": - {"enabled": false}}' - headers: - Access-Control-Expose-Headers: - - RequestId - Content-Length: - - "322" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 22 Jan 2026 11:31:46 GMT - RequestId: - - 952c362c-bcae-431e-bf94-7295afb639eb - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - "true" - status: - code: 200 - message: OK - - request: - body: null - headers: - Accept: - - "*/*" - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: - '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "619e9877-6a58-4dc2-9589-bd4d8ee36bd2", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - "2301" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 22 Jan 2026 11:31:45 GMT - Pragma: - - no-cache - RequestId: - - 5acc3a3f-0f4c-42e2-9bdf-168108712000 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - "true" - status: - code: 200 - message: OK - - request: - body: null - headers: - Accept: - - "*/*" - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/619e9877-6a58-4dc2-9589-bd4d8ee36bd2/spark/pools - response: - body: - string: - '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", - "name": "Starter Pool", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", - "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 10}, "dynamicExecutorAllocation": - {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "cfb27133-1062-435e-a41d-b1c55786490b", - "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", - "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": - 3}, "dynamicExecutorAllocation": {"enabled": false}}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Content-Length: - - "845" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 22 Jan 2026 11:31:47 GMT - RequestId: - - ba76493d-d3e6-4c87-bd95-0c801bd5bd63 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - "true" - status: - code: 200 - message: OK - - request: - body: null - headers: - Accept: - - "*/*" - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/619e9877-6a58-4dc2-9589-bd4d8ee36bd2/spark/pools/cfb27133-1062-435e-a41d-b1c55786490b - response: - body: - string: - '{"id": "cfb27133-1062-435e-a41d-b1c55786490b", "type": "Workspace", - "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", - "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": - {"enabled": false}}' - headers: - Access-Control-Expose-Headers: - - RequestId - Content-Length: - - "322" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 22 Jan 2026 11:31:47 GMT - RequestId: - - 22b447a0-e6a4-4b52-aa44-b25ea720d792 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - "true" - status: - code: 200 - message: OK - - request: - body: null - headers: - Accept: - - "*/*" - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces - response: - body: - string: - '{"value": [{"id": "3634a139-2c9e-4205-910b-3b089a31be47", "displayName": - "My workspace", "description": "", "type": "Personal"}, {"id": "619e9877-6a58-4dc2-9589-bd4d8ee36bd2", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "Created - by fab", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Cache-Control: - - no-store, must-revalidate, no-cache - Content-Encoding: - - gzip - Content-Length: - - "2301" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 22 Jan 2026 11:31:48 GMT - Pragma: - - no-cache - RequestId: - - 6fab1f36-2b80-4139-814e-5bbc07264250 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - "true" - status: - code: 200 - message: OK - - request: - body: null - headers: - Accept: - - "*/*" - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Type: - - application/json - User-Agent: - - ms-fabric-cli-test/1.3.1 - method: GET - uri: https://api.fabric.microsoft.com/v1/workspaces/619e9877-6a58-4dc2-9589-bd4d8ee36bd2/spark/pools - response: - body: - string: - '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", - "name": "Starter Pool", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", - "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 10}, "dynamicExecutorAllocation": - {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "cfb27133-1062-435e-a41d-b1c55786490b", - "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", - "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": - 3}, "dynamicExecutorAllocation": {"enabled": false}}]}' - headers: - Access-Control-Expose-Headers: - - RequestId - Content-Length: - - "845" - Content-Type: - - application/json; charset=utf-8 - Date: - - Thu, 22 Jan 2026 11:31:49 GMT - RequestId: - - 6677f225-2b43-477c-9294-c129e9ccf080 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.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.3.1 - method: DELETE - uri: https://api.fabric.microsoft.com/v1/workspaces/619e9877-6a58-4dc2-9589-bd4d8ee36bd2/spark/pools/cfb27133-1062-435e-a41d-b1c55786490b - response: - body: - string: "" - headers: - Access-Control-Expose-Headers: - - RequestId - Content-Length: - - "0" - Content-Type: - - application/octet-stream - Date: - - Thu, 22 Jan 2026 11:31:50 GMT - RequestId: - - 4eee107c-7a1d-4ec9-9861-2d2b281fbd14 - Strict-Transport-Security: - - max-age=31536000; includeSubDomains - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - deny - home-cluster-uri: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ - request-redirected: - - "true" - status: - code: 200 - message: OK + {"enabled": false}}' + headers: + Access-Control-Expose-Headers: + - RequestId,Location + Content-Length: + - '322' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 22 May 2026 09:06:28 GMT + Location: + - https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools/dd491948-be35-4efd-8f39-c5be9652aa1c + RequestId: + - 31f274aa-5da4-48b6-a66f-00642e751fe7 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-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": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: + - '2795' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 22 May 2026 09:06:28 GMT + Pragma: + - no-cache + RequestId: + - 8435612a-defd-4924-8750-1e34b1a9e4e6 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: 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/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools + response: + body: + string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", + "name": "Starter Pool", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", + "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 10}, "dynamicExecutorAllocation": + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "dd491948-be35-4efd-8f39-c5be9652aa1c", + "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", + "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": + 3}, "dynamicExecutorAllocation": {"enabled": false}}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Content-Length: + - '845' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 22 May 2026 09:06:29 GMT + RequestId: + - 77f5e5de-cec8-4df5-9b88-c7a051031c95 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: 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/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools/dd491948-be35-4efd-8f39-c5be9652aa1c + response: + body: + string: '{"id": "dd491948-be35-4efd-8f39-c5be9652aa1c", "type": "Workspace", + "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", + "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": + {"enabled": false}}' + headers: + Access-Control-Expose-Headers: + - RequestId + Content-Length: + - '322' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 22 May 2026 09:06:30 GMT + RequestId: + - f2065bb1-306f-453f-905a-f2154717f9a3 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: OK +- request: + body: '{"autoScale": {"enabled": "True", "minNodeCount": 1, "maxNodeCount": 3}}' + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '72' + Content-Type: + - application/json + User-Agent: + - ms-fabric-cli-test/1.6.1 + method: PATCH + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools/dd491948-be35-4efd-8f39-c5be9652aa1c + response: + body: + string: '{"id": "dd491948-be35-4efd-8f39-c5be9652aa1c", "type": "Workspace", + "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", + "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": + {"enabled": false}}' + headers: + Access-Control-Expose-Headers: + - RequestId + Content-Length: + - '322' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 22 May 2026 09:06:30 GMT + RequestId: + - 5e2ce04c-7f3d-4eb7-8956-a5166515c543 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: 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": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: + - '2795' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 22 May 2026 09:06:30 GMT + Pragma: + - no-cache + RequestId: + - be424558-14a3-466c-8e44-e84a0fa0ee55 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: 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/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools + response: + body: + string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", + "name": "Starter Pool", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", + "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 10}, "dynamicExecutorAllocation": + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "dd491948-be35-4efd-8f39-c5be9652aa1c", + "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", + "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": + 3}, "dynamicExecutorAllocation": {"enabled": false}}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Content-Length: + - '845' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 22 May 2026 09:06:32 GMT + RequestId: + - 46c7dd58-332f-4ccc-b66f-200d4f8b3680 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: 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/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools/dd491948-be35-4efd-8f39-c5be9652aa1c + response: + body: + string: '{"id": "dd491948-be35-4efd-8f39-c5be9652aa1c", "type": "Workspace", + "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", + "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": + {"enabled": false}}' + headers: + Access-Control-Expose-Headers: + - RequestId + Content-Length: + - '322' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 22 May 2026 09:06:32 GMT + RequestId: + - 606f6943-69d1-4c35-81c8-1ede2b236daf + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: 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": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: + - '2795' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 22 May 2026 09:06:33 GMT + Pragma: + - no-cache + RequestId: + - 05b2ec8d-85ec-4126-b9c0-239abbd24a5f + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/ + request-redirected: + - 'true' + status: + code: 200 + message: 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/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools + response: + body: + string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", + "name": "Starter Pool", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", + "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 10}, "dynamicExecutorAllocation": + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "dd491948-be35-4efd-8f39-c5be9652aa1c", + "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", + "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": + 3}, "dynamicExecutorAllocation": {"enabled": false}}]}' + headers: + Access-Control-Expose-Headers: + - RequestId + Content-Length: + - '845' + Content-Type: + - application/json; charset=utf-8 + Date: + - Fri, 22 May 2026 09:06:34 GMT + RequestId: + - c8ba5fbe-5dc4-4ed6-add5-9a9f489b90ac + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - deny + home-cluster-uri: + - https://wabi-us-central-b-primary-redirect.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/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools/dd491948-be35-4efd-8f39-c5be9652aa1c + response: + body: + string: '' + headers: + Access-Control-Expose-Headers: + - RequestId + Content-Length: + - '0' + Content-Type: + - application/octet-stream + Date: + - Fri, 22 May 2026 09:06:34 GMT + RequestId: + - f87a7782-f99a-4507-b3d2-4ab58406ed20 + Strict-Transport-Security: + - max-age=31536000; includeSubDomains + X-Content-Type-Options: + - nosniff + X-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_set/test_set_sparkpool_success[autoScale.maxNodeCount-5].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_sparkpool_success[autoScale.maxNodeCount-5].yaml index 22a311000..4d2b53ce7 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_sparkpool_success[autoScale.maxNodeCount-5].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_sparkpool_success[autoScale.maxNodeCount-5].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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2061' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:21 GMT + - Fri, 22 May 2026 09:06:48 GMT Pragma: - no-cache RequestId: - - 1411b4f8-b702-4ccb-b8f5-6c9a9297c1bd + - e4c1f917-b5d3-4572-8f41-915dd81c8e6f 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/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", @@ -78,9 +79,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:21 GMT + - Fri, 22 May 2026 09:06:49 GMT RequestId: - - aa6f2670-8558-49db-85c0-d9d2ec6bf454 + - 6ec974a9-7d14-432c-9472-f58f2f430234 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -106,9 +107,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/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", @@ -118,14 +119,16 @@ interactions: headers: Access-Control-Expose-Headers: - RequestId + Connection: + - close Content-Length: - '460' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:21 GMT + - Fri, 22 May 2026 09:06:49 GMT RequestId: - - 63f50e1f-6bd9-4642-871d-f60d0dde1fd2 + - a5a071c6-81a2-4283-93e2-3c08f243eccf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -155,26 +158,28 @@ interactions: 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/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: - string: '{"id": "46cf51d1-658c-441e-8ac6-b4d37676b96d", "type": "Workspace", + string: '{"id": "0c5b9720-98ac-48dd-8fc1-4df5280cecb0", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Location Content-Length: - '322' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:21 GMT + - Fri, 22 May 2026 09:06:50 GMT + Location: + - https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools/0c5b9720-98ac-48dd-8fc1-4df5280cecb0 RequestId: - - 103ccd84-6f10-46db-beef-5d15be070904 + - a6b9c073-c2fb-42a3-8ad1-ef2bb7af18a6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -200,14 +205,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -216,15 +222,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2061' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:22 GMT + - Fri, 22 May 2026 09:06:51 GMT Pragma: - no-cache RequestId: - - 2787a89f-90fd-4b49-8c72-918e8e005e78 + - d1ef9b2d-51ea-4470-a10d-fb10b2053c0a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -250,15 +256,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/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", "name": "Starter Pool", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 10}, "dynamicExecutorAllocation": - {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "46cf51d1-658c-441e-8ac6-b4d37676b96d", + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "0c5b9720-98ac-48dd-8fc1-4df5280cecb0", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}]}' @@ -270,9 +276,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:23 GMT + - Fri, 22 May 2026 09:06:52 GMT RequestId: - - a4c575d9-956c-4f48-8be6-08285f0d5dd7 + - bd0f927b-9a9a-40a3-9e59-0b5a421e9f51 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -298,12 +304,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/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools/46cf51d1-658c-441e-8ac6-b4d37676b96d + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools/0c5b9720-98ac-48dd-8fc1-4df5280cecb0 response: body: - string: '{"id": "46cf51d1-658c-441e-8ac6-b4d37676b96d", "type": "Workspace", + string: '{"id": "0c5b9720-98ac-48dd-8fc1-4df5280cecb0", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}' @@ -315,9 +321,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:23 GMT + - Fri, 22 May 2026 09:06:52 GMT RequestId: - - c2f271b2-275a-4e90-a3c1-86060a424461 + - f7461f90-af2b-4e98-96f4-4ef47cb1de8b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -341,16 +347,16 @@ interactions: Connection: - keep-alive Content-Length: - - '106' + - '70' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools/46cf51d1-658c-441e-8ac6-b4d37676b96d + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools/0c5b9720-98ac-48dd-8fc1-4df5280cecb0 response: body: - string: '{"id": "46cf51d1-658c-441e-8ac6-b4d37676b96d", "type": "Workspace", + string: '{"id": "0c5b9720-98ac-48dd-8fc1-4df5280cecb0", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 5}, "dynamicExecutorAllocation": {"enabled": false}}' @@ -362,9 +368,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:24 GMT + - Fri, 22 May 2026 09:06:52 GMT RequestId: - - 8c083d52-db15-4b3b-85a9-bb99217fe8ba + - 4f0a6d2f-028b-47b5-b1fc-03ce1e9747e2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -390,14 +396,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -406,15 +413,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2061' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:24 GMT + - Fri, 22 May 2026 09:06:53 GMT Pragma: - no-cache RequestId: - - 9b2150be-de64-4977-963f-309139912746 + - 053da343-4b36-4c3f-b497-cb8814f36322 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -440,15 +447,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/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", "name": "Starter Pool", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 10}, "dynamicExecutorAllocation": - {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "46cf51d1-658c-441e-8ac6-b4d37676b96d", + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "0c5b9720-98ac-48dd-8fc1-4df5280cecb0", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 5}, "dynamicExecutorAllocation": {"enabled": false}}]}' @@ -460,9 +467,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:24 GMT + - Fri, 22 May 2026 09:06:54 GMT RequestId: - - 1f4e50fe-7055-4628-84bc-aa8e890822c6 + - fa6b2f98-fdf8-4379-89e8-b6ba4a6d28ec Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -488,12 +495,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/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools/46cf51d1-658c-441e-8ac6-b4d37676b96d + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools/0c5b9720-98ac-48dd-8fc1-4df5280cecb0 response: body: - string: '{"id": "46cf51d1-658c-441e-8ac6-b4d37676b96d", "type": "Workspace", + string: '{"id": "0c5b9720-98ac-48dd-8fc1-4df5280cecb0", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 5}, "dynamicExecutorAllocation": {"enabled": false}}' @@ -505,9 +512,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:25 GMT + - Fri, 22 May 2026 09:06:55 GMT RequestId: - - 17c8952f-01ac-4b17-a663-bdaab2e34931 + - 570f7da0-5515-47a7-9d81-56193b8822de Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -533,14 +540,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -549,15 +557,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2061' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:26 GMT + - Fri, 22 May 2026 09:06:55 GMT Pragma: - no-cache RequestId: - - 054afa9a-5a5f-44f6-9868-07d92b4c9a81 + - e2935cf6-0a9f-4e07-8c7f-8308c005fea2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -583,15 +591,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/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", "name": "Starter Pool", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 10}, "dynamicExecutorAllocation": - {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "46cf51d1-658c-441e-8ac6-b4d37676b96d", + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "0c5b9720-98ac-48dd-8fc1-4df5280cecb0", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 5}, "dynamicExecutorAllocation": {"enabled": false}}]}' @@ -603,9 +611,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:26 GMT + - Fri, 22 May 2026 09:06:55 GMT RequestId: - - b7001fac-364f-43b4-a58b-2288b28e35da + - ed7a842a-7d27-439e-b63c-9346bd6bfdd5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -633,23 +641,25 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools/46cf51d1-658c-441e-8ac6-b4d37676b96d + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools/0c5b9720-98ac-48dd-8fc1-4df5280cecb0 response: body: string: '' headers: Access-Control-Expose-Headers: - RequestId + Connection: + - close Content-Length: - '0' Content-Type: - application/octet-stream Date: - - Wed, 31 Dec 2025 14:32:26 GMT + - Fri, 22 May 2026 09:06:56 GMT RequestId: - - 5b6d815d-0b67-4b55-b310-85a50e4860c9 + - afb31694-a892-4006-ac01-21225b9eae0e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_sparkpool_success[autoScale.minNodeCount-2].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_sparkpool_success[autoScale.minNodeCount-2].yaml index 9e430d7e0..d754abf0a 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_sparkpool_success[autoScale.minNodeCount-2].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_sparkpool_success[autoScale.minNodeCount-2].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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2061' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:15 GMT + - Fri, 22 May 2026 09:06:35 GMT Pragma: - no-cache RequestId: - - b545da1e-7794-4ca4-9caf-cdb4f0b5af8c + - ec4aaf06-da2f-4f53-967b-63955fe83383 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/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", @@ -78,9 +79,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:16 GMT + - Fri, 22 May 2026 09:06:36 GMT RequestId: - - b7e695b5-3838-4001-a07e-248c0664fb8a + - 68a0aa5f-7d46-465f-a02b-3eb9d188f10e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -106,9 +107,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/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", @@ -123,9 +124,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:16 GMT + - Fri, 22 May 2026 09:06:37 GMT RequestId: - - c837a585-1839-41bc-9428-1ae141c507e8 + - 81661019-c409-4ed5-8b80-dc77660fb33e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -155,26 +156,28 @@ interactions: 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/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: - string: '{"id": "0513e017-aaa4-4326-a8ac-9e5e857f002b", "type": "Workspace", + string: '{"id": "2aa48ed4-0b00-429f-8388-cbb0f8edf91a", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Location Content-Length: - '322' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:16 GMT + - Fri, 22 May 2026 09:06:39 GMT + Location: + - https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools/2aa48ed4-0b00-429f-8388-cbb0f8edf91a RequestId: - - 84b791eb-76dc-4936-a940-3b1ad9d2e794 + - b511f3ff-9e02-4286-8350-b51d27e4aa82 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -200,14 +203,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -216,15 +220,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2061' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:17 GMT + - Fri, 22 May 2026 09:06:39 GMT Pragma: - no-cache RequestId: - - b5ec79cd-b7ff-4e52-bdc2-67dd7f50a6ae + - a8f1b2b5-1f4e-418d-b5ae-9bfd6a62f51d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -250,15 +254,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/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", "name": "Starter Pool", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 10}, "dynamicExecutorAllocation": - {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "0513e017-aaa4-4326-a8ac-9e5e857f002b", + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "2aa48ed4-0b00-429f-8388-cbb0f8edf91a", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}]}' @@ -270,9 +274,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:18 GMT + - Fri, 22 May 2026 09:06:40 GMT RequestId: - - d489f4c1-6d76-4229-b418-aae59615e7d6 + - 1ca012ee-62de-49ab-825b-82f0d6d42378 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -298,12 +302,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/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools/0513e017-aaa4-4326-a8ac-9e5e857f002b + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools/2aa48ed4-0b00-429f-8388-cbb0f8edf91a response: body: - string: '{"id": "0513e017-aaa4-4326-a8ac-9e5e857f002b", "type": "Workspace", + string: '{"id": "2aa48ed4-0b00-429f-8388-cbb0f8edf91a", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}' @@ -315,9 +319,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:17 GMT + - Fri, 22 May 2026 09:06:41 GMT RequestId: - - 84d51624-4d1b-4db4-a5f8-dfeb75be4b44 + - c27c7d5e-18f2-4601-9b65-8555620a7155 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -341,16 +345,16 @@ interactions: Connection: - keep-alive Content-Length: - - '106' + - '70' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools/0513e017-aaa4-4326-a8ac-9e5e857f002b + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools/2aa48ed4-0b00-429f-8388-cbb0f8edf91a response: body: - string: '{"id": "0513e017-aaa4-4326-a8ac-9e5e857f002b", "type": "Workspace", + string: '{"id": "2aa48ed4-0b00-429f-8388-cbb0f8edf91a", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 2, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}' @@ -362,9 +366,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:18 GMT + - Fri, 22 May 2026 09:06:42 GMT RequestId: - - 8cae6c11-828a-428f-8e9e-f50b0ccf2e93 + - 8827848e-d41f-4791-a429-c9fa2d1cb0e1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -390,14 +394,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -406,15 +411,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2061' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:18 GMT + - Fri, 22 May 2026 09:06:43 GMT Pragma: - no-cache RequestId: - - 06d0f0d4-d553-4440-9e9e-b0608b6f1aad + - 755b4344-5837-4676-8904-882de8a0e7a4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -440,15 +445,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/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", "name": "Starter Pool", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 10}, "dynamicExecutorAllocation": - {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "0513e017-aaa4-4326-a8ac-9e5e857f002b", + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "2aa48ed4-0b00-429f-8388-cbb0f8edf91a", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 2, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}]}' @@ -460,9 +465,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:18 GMT + - Fri, 22 May 2026 09:06:43 GMT RequestId: - - 00c6e634-0dfb-4ce5-ba90-e18f7a499826 + - b8f012c8-c4c3-4d09-9e36-42f79484e5a9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -488,12 +493,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/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools/0513e017-aaa4-4326-a8ac-9e5e857f002b + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools/2aa48ed4-0b00-429f-8388-cbb0f8edf91a response: body: - string: '{"id": "0513e017-aaa4-4326-a8ac-9e5e857f002b", "type": "Workspace", + string: '{"id": "2aa48ed4-0b00-429f-8388-cbb0f8edf91a", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 2, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}' @@ -505,9 +510,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:19 GMT + - Fri, 22 May 2026 09:06:44 GMT RequestId: - - e7e6523d-f02c-4e36-8e74-750b1a25f461 + - 90601184-35a8-4d0f-8314-13e63131f13b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -533,14 +538,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -549,15 +555,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2061' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:20 GMT + - Fri, 22 May 2026 09:06:45 GMT Pragma: - no-cache RequestId: - - 66dcec84-d948-46f1-91d9-08853aa81ea2 + - 3a976e0d-589e-46bd-8211-b34465aa20aa Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -583,15 +589,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/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", "name": "Starter Pool", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 10}, "dynamicExecutorAllocation": - {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "0513e017-aaa4-4326-a8ac-9e5e857f002b", + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "2aa48ed4-0b00-429f-8388-cbb0f8edf91a", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 2, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}]}' @@ -603,9 +609,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:20 GMT + - Fri, 22 May 2026 09:06:46 GMT RequestId: - - 61a1178d-2a71-4a88-96a9-ea7d8b97b5ea + - 47cf497f-3dae-46ce-b8a3-08586f593c39 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -633,9 +639,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/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools/0513e017-aaa4-4326-a8ac-9e5e857f002b + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools/2aa48ed4-0b00-429f-8388-cbb0f8edf91a response: body: string: '' @@ -647,9 +653,9 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 31 Dec 2025 14:32:21 GMT + - Fri, 22 May 2026 09:06:47 GMT RequestId: - - 7daa7ac0-cb84-4043-9cfd-be080db269e6 + - 4f883f3a-4981-48fa-9c52-feb4898e144e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_sparkpool_success[name-None].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_sparkpool_success[name-None].yaml index cd14f6e17..5dba74d89 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_sparkpool_success[name-None].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_sparkpool_success[name-None].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": "f8c02512-00fa-470e-92c8-a4f875d5871b", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2300' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 12:55:25 GMT + - Fri, 22 May 2026 09:06:57 GMT Pragma: - no-cache RequestId: - - dcd4a51c-0a63-4f05-9a6e-e3a30a6ae7ab + - 0acf11e4-4fba-4a88-aa83-3eddd13f07b2 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/f8c02512-00fa-470e-92c8-a4f875d5871b/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", @@ -78,9 +79,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 12:55:28 GMT + - Fri, 22 May 2026 09:06:57 GMT RequestId: - - 2ad23b4b-4787-445c-90b9-6a8d30949ab5 + - c73674fa-a26e-451e-910b-1475a0d3a70b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -106,9 +107,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/f8c02512-00fa-470e-92c8-a4f875d5871b/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", @@ -118,14 +119,16 @@ interactions: headers: Access-Control-Expose-Headers: - RequestId + Connection: + - close Content-Length: - '460' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 12:55:30 GMT + - Fri, 22 May 2026 09:06:58 GMT RequestId: - - 17b3c270-9bcf-4d05-9f2f-ba8959b904d0 + - e2035e18-a0b6-4f49-8a4c-407969e5355a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -155,26 +158,28 @@ interactions: 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/f8c02512-00fa-470e-92c8-a4f875d5871b/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: - string: '{"id": "968363b5-9119-4d5a-9283-ae95e78a25fb", "type": "Workspace", + string: '{"id": "29d7c472-a3c9-4d0b-9a15-e4f2c77d1f65", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Location Content-Length: - '322' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 12:55:31 GMT + - Fri, 22 May 2026 09:06:59 GMT + Location: + - https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools/29d7c472-a3c9-4d0b-9a15-e4f2c77d1f65 RequestId: - - adb85159-4cb1-40c4-bc81-1045fb9c8911 + - 07ddae6a-8bfd-4450-9e6e-00d55de85932 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -200,14 +205,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": "f8c02512-00fa-470e-92c8-a4f875d5871b", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -216,15 +222,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2300' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 12:55:33 GMT + - Fri, 22 May 2026 09:06:59 GMT Pragma: - no-cache RequestId: - - 20083136-4b78-4f66-948f-0d2d201874bb + - 451c19b6-fbe9-4e89-8ca7-baea122131e9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -250,15 +256,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/f8c02512-00fa-470e-92c8-a4f875d5871b/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", "name": "Starter Pool", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 10}, "dynamicExecutorAllocation": - {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "968363b5-9119-4d5a-9283-ae95e78a25fb", + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "29d7c472-a3c9-4d0b-9a15-e4f2c77d1f65", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}]}' @@ -270,9 +276,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 12:55:33 GMT + - Fri, 22 May 2026 09:07:00 GMT RequestId: - - 48838c90-ced1-44d7-a641-09f973cad95c + - b7cddcfd-4475-4fdf-8c79-28867c2b03c4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -298,12 +304,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/f8c02512-00fa-470e-92c8-a4f875d5871b/spark/pools/968363b5-9119-4d5a-9283-ae95e78a25fb + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools/29d7c472-a3c9-4d0b-9a15-e4f2c77d1f65 response: body: - string: '{"id": "968363b5-9119-4d5a-9283-ae95e78a25fb", "type": "Workspace", + string: '{"id": "29d7c472-a3c9-4d0b-9a15-e4f2c77d1f65", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}' @@ -315,9 +321,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 12:55:38 GMT + - Fri, 22 May 2026 09:07:02 GMT RequestId: - - ba9ee5a4-a731-4ff4-9624-1ba8b1bc7058 + - 87674bc7-770d-4144-8cd8-9881d2d1528e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -345,12 +351,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/f8c02512-00fa-470e-92c8-a4f875d5871b/spark/pools/968363b5-9119-4d5a-9283-ae95e78a25fb + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools/29d7c472-a3c9-4d0b-9a15-e4f2c77d1f65 response: body: - string: '{"id": "968363b5-9119-4d5a-9283-ae95e78a25fb", "type": "Workspace", + string: '{"id": "29d7c472-a3c9-4d0b-9a15-e4f2c77d1f65", "type": "Workspace", "name": "fabcli000002", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}' @@ -362,9 +368,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 12:55:39 GMT + - Fri, 22 May 2026 09:07:02 GMT RequestId: - - d90258ff-24ac-4136-9d60-7c51fead084e + - 4a99b464-1216-4610-88c8-2529322a5013 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -390,14 +396,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": "f8c02512-00fa-470e-92c8-a4f875d5871b", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -406,15 +413,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2300' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 12:55:41 GMT + - Fri, 22 May 2026 09:07:03 GMT Pragma: - no-cache RequestId: - - 9250750a-589e-40ce-965c-0ce4e7fc0f53 + - b3392c37-cbf9-4472-8ed8-a5f4108d3aca Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -440,15 +447,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/f8c02512-00fa-470e-92c8-a4f875d5871b/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", "name": "Starter Pool", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 10}, "dynamicExecutorAllocation": - {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "968363b5-9119-4d5a-9283-ae95e78a25fb", + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "29d7c472-a3c9-4d0b-9a15-e4f2c77d1f65", "type": "Workspace", "name": "fabcli000002", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}]}' @@ -460,9 +467,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 12:55:43 GMT + - Fri, 22 May 2026 09:07:03 GMT RequestId: - - f3e16d75-eab9-42a3-8dca-3e9917d0e892 + - 053379a9-0708-4f5a-9903-6d17d03079ec Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -488,15 +495,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/f8c02512-00fa-470e-92c8-a4f875d5871b/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", "name": "Starter Pool", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 10}, "dynamicExecutorAllocation": - {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "968363b5-9119-4d5a-9283-ae95e78a25fb", + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "29d7c472-a3c9-4d0b-9a15-e4f2c77d1f65", "type": "Workspace", "name": "fabcli000002", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}]}' @@ -508,9 +515,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 12:55:44 GMT + - Fri, 22 May 2026 09:07:04 GMT RequestId: - - 4b228bf4-5ad5-46e5-823b-d7614b178479 + - f439d0a0-ee2d-4052-a356-7e884e403b69 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -536,14 +543,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": "f8c02512-00fa-470e-92c8-a4f875d5871b", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -552,15 +560,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2300' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 12:55:45 GMT + - Fri, 22 May 2026 09:07:05 GMT Pragma: - no-cache RequestId: - - 1005582c-4bba-4fcb-aed0-61ac02794ebe + - 04feac47-b75c-40b9-81db-e0e3c25ae282 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -586,15 +594,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/f8c02512-00fa-470e-92c8-a4f875d5871b/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", "name": "Starter Pool", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 10}, "dynamicExecutorAllocation": - {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "968363b5-9119-4d5a-9283-ae95e78a25fb", + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "29d7c472-a3c9-4d0b-9a15-e4f2c77d1f65", "type": "Workspace", "name": "fabcli000002", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}]}' @@ -606,9 +614,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 12:55:45 GMT + - Fri, 22 May 2026 09:07:06 GMT RequestId: - - 1d202ca0-1efa-451e-9827-c623757fe8c1 + - 85b7ab8d-b5ad-4790-8086-bf24eb2e99b5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -634,12 +642,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/f8c02512-00fa-470e-92c8-a4f875d5871b/spark/pools/968363b5-9119-4d5a-9283-ae95e78a25fb + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools/29d7c472-a3c9-4d0b-9a15-e4f2c77d1f65 response: body: - string: '{"id": "968363b5-9119-4d5a-9283-ae95e78a25fb", "type": "Workspace", + string: '{"id": "29d7c472-a3c9-4d0b-9a15-e4f2c77d1f65", "type": "Workspace", "name": "fabcli000002", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}' @@ -651,9 +659,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 12:55:47 GMT + - Fri, 22 May 2026 09:07:07 GMT RequestId: - - dce61418-ebe6-4828-9a5a-33e3f27db0a3 + - c55cd4f3-59d0-4561-aa86-81d3bb60e43e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -679,14 +687,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": "f8c02512-00fa-470e-92c8-a4f875d5871b", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -695,15 +704,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2300' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 12:55:49 GMT + - Fri, 22 May 2026 09:07:07 GMT Pragma: - no-cache RequestId: - - b658496b-f2de-4239-98b8-54439f984ca6 + - 2d7ae953-fa22-4db2-b7c5-54c63759db10 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -729,15 +738,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/f8c02512-00fa-470e-92c8-a4f875d5871b/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", "name": "Starter Pool", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 10}, "dynamicExecutorAllocation": - {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "968363b5-9119-4d5a-9283-ae95e78a25fb", + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "29d7c472-a3c9-4d0b-9a15-e4f2c77d1f65", "type": "Workspace", "name": "fabcli000002", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}]}' @@ -749,9 +758,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 12:55:50 GMT + - Fri, 22 May 2026 09:07:08 GMT RequestId: - - 4bb439cb-bd42-4006-8d5c-9f8301dce798 + - b76260a2-e5b8-4fe6-b032-30425c573628 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -777,12 +786,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/f8c02512-00fa-470e-92c8-a4f875d5871b/spark/pools/968363b5-9119-4d5a-9283-ae95e78a25fb + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools/29d7c472-a3c9-4d0b-9a15-e4f2c77d1f65 response: body: - string: '{"id": "968363b5-9119-4d5a-9283-ae95e78a25fb", "type": "Workspace", + string: '{"id": "29d7c472-a3c9-4d0b-9a15-e4f2c77d1f65", "type": "Workspace", "name": "fabcli000002", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}' @@ -794,9 +803,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 12:55:51 GMT + - Fri, 22 May 2026 09:07:09 GMT RequestId: - - a4af6a84-5425-4f36-8fa9-a69a639537dc + - 22707dbb-feb3-4516-b391-480b01654e56 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -824,12 +833,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/f8c02512-00fa-470e-92c8-a4f875d5871b/spark/pools/968363b5-9119-4d5a-9283-ae95e78a25fb + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools/29d7c472-a3c9-4d0b-9a15-e4f2c77d1f65 response: body: - string: '{"id": "968363b5-9119-4d5a-9283-ae95e78a25fb", "type": "Workspace", + string: '{"id": "29d7c472-a3c9-4d0b-9a15-e4f2c77d1f65", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}' @@ -841,9 +850,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 12:55:52 GMT + - Fri, 22 May 2026 09:07:10 GMT RequestId: - - 0e3c92ba-d3ba-4b6f-8ecf-11ee90b09dd1 + - 717af7c9-b5f9-46dc-a50e-70d9c3cda738 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -869,14 +878,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": "f8c02512-00fa-470e-92c8-a4f875d5871b", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -885,15 +895,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2300' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 12:55:54 GMT + - Fri, 22 May 2026 09:07:11 GMT Pragma: - no-cache RequestId: - - 1a0e892c-6bc1-413b-b561-25818cfa46c5 + - e31d2fa9-55e6-4865-8ca2-bad0923a97ca Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -919,15 +929,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/f8c02512-00fa-470e-92c8-a4f875d5871b/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", "name": "Starter Pool", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 10}, "dynamicExecutorAllocation": - {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "968363b5-9119-4d5a-9283-ae95e78a25fb", + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "29d7c472-a3c9-4d0b-9a15-e4f2c77d1f65", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}]}' @@ -939,9 +949,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 21 Jan 2026 12:55:55 GMT + - Fri, 22 May 2026 09:07:12 GMT RequestId: - - 116e472c-df9e-49d5-a1e2-9260e88ecef0 + - 7f579a26-f2c4-4a20-99e6-2db782196f19 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -969,9 +979,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/f8c02512-00fa-470e-92c8-a4f875d5871b/spark/pools/968363b5-9119-4d5a-9283-ae95e78a25fb + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools/29d7c472-a3c9-4d0b-9a15-e4f2c77d1f65 response: body: string: '' @@ -983,9 +993,9 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 21 Jan 2026 12:55:56 GMT + - Fri, 22 May 2026 09:07:13 GMT RequestId: - - 6b143a3c-fc99-42f1-a48a-957f369cfdf0 + - 5f86976e-57f7-4db2-967f-72f94b2d130a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_sparkpool_success[nodeSize-Medium].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_sparkpool_success[nodeSize-Medium].yaml index 4c9561bc7..3e08b61db 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_sparkpool_success[nodeSize-Medium].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_sparkpool_success[nodeSize-Medium].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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2061' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:06 GMT + - Fri, 22 May 2026 09:06:14 GMT Pragma: - no-cache RequestId: - - 5636d6dc-36b0-43e5-b795-13a9895157a3 + - f9efbd68-196c-43f5-8226-4790661ef299 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/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", @@ -78,9 +79,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:06 GMT + - Fri, 22 May 2026 09:06:14 GMT RequestId: - - ccd5bd26-06c9-4c65-bcbb-0731a29fd9c3 + - 4d2fb3de-1b07-48c1-a592-f37509e4deb4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -106,9 +107,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/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", @@ -123,9 +124,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:06 GMT + - Fri, 22 May 2026 09:06:15 GMT RequestId: - - c949fb70-a96d-4d78-932d-95d034c2ae3e + - f482bfee-da3f-4f69-a129-f996b1e79d58 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -155,26 +156,28 @@ interactions: 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/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: - string: '{"id": "c851e624-fe5d-426f-ba83-fbb5920ea795", "type": "Workspace", + string: '{"id": "d1e6fb17-3ccd-4111-bfbd-b0aa8b8bc45b", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,Location Content-Length: - '322' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:06 GMT + - Fri, 22 May 2026 09:06:17 GMT + Location: + - https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools/d1e6fb17-3ccd-4111-bfbd-b0aa8b8bc45b RequestId: - - 3185345a-2e90-457f-80e1-7072e6aa5884 + - 6972dd9f-df77-4dde-8ad5-34e8302cfdd3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -200,14 +203,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -216,15 +220,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2061' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:07 GMT + - Fri, 22 May 2026 09:06:18 GMT Pragma: - no-cache RequestId: - - 3ebf6bbc-bd14-4ba6-a330-a423e3a36d34 + - 15a7e102-aa0f-4251-9681-7863bea05cbf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -250,15 +254,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/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", "name": "Starter Pool", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 10}, "dynamicExecutorAllocation": - {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "c851e624-fe5d-426f-ba83-fbb5920ea795", + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "d1e6fb17-3ccd-4111-bfbd-b0aa8b8bc45b", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}]}' @@ -270,9 +274,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:07 GMT + - Fri, 22 May 2026 09:06:18 GMT RequestId: - - 3c10877c-4e7c-4eb0-abcb-7da52bf1c1e0 + - 80e507e3-7ee4-4349-8d00-e02f3cefe13a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -298,12 +302,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/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools/c851e624-fe5d-426f-ba83-fbb5920ea795 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools/d1e6fb17-3ccd-4111-bfbd-b0aa8b8bc45b response: body: - string: '{"id": "c851e624-fe5d-426f-ba83-fbb5920ea795", "type": "Workspace", + string: '{"id": "d1e6fb17-3ccd-4111-bfbd-b0aa8b8bc45b", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Small", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}' @@ -315,9 +319,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:07 GMT + - Fri, 22 May 2026 09:06:19 GMT RequestId: - - 9f5c3c64-5c0c-48f1-a3bd-844121adb7a1 + - 862fd8b6-fb26-4b93-876e-afa337d714ab Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -341,16 +345,16 @@ interactions: Connection: - keep-alive Content-Length: - - '28' + - '22' Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools/c851e624-fe5d-426f-ba83-fbb5920ea795 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools/d1e6fb17-3ccd-4111-bfbd-b0aa8b8bc45b response: body: - string: '{"id": "c851e624-fe5d-426f-ba83-fbb5920ea795", "type": "Workspace", + string: '{"id": "d1e6fb17-3ccd-4111-bfbd-b0aa8b8bc45b", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}' @@ -362,9 +366,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:08 GMT + - Fri, 22 May 2026 09:06:20 GMT RequestId: - - b347a82a-6087-42fa-b116-8a3062886939 + - 45912bc9-2b9c-4253-86b2-66bfd3aece6b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -390,14 +394,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -406,15 +411,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2061' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:09 GMT + - Fri, 22 May 2026 09:06:21 GMT Pragma: - no-cache RequestId: - - e86ab72e-1bf0-4055-b584-beb54e5f8f1e + - 465fcec6-f04b-459a-9ab6-2af7823498d7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -440,29 +445,31 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", "name": "Starter Pool", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 10}, "dynamicExecutorAllocation": - {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "c851e624-fe5d-426f-ba83-fbb5920ea795", + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "d1e6fb17-3ccd-4111-bfbd-b0aa8b8bc45b", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}]}' headers: Access-Control-Expose-Headers: - RequestId + Connection: + - close Content-Length: - '846' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:09 GMT + - Fri, 22 May 2026 09:06:22 GMT RequestId: - - abb63c07-cb00-4c28-a54d-73245fda4d06 + - 2e5faaa2-2f54-4a53-aad1-e5c955304e4e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -488,12 +495,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/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools/c851e624-fe5d-426f-ba83-fbb5920ea795 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools/d1e6fb17-3ccd-4111-bfbd-b0aa8b8bc45b response: body: - string: '{"id": "c851e624-fe5d-426f-ba83-fbb5920ea795", "type": "Workspace", + string: '{"id": "d1e6fb17-3ccd-4111-bfbd-b0aa8b8bc45b", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}' @@ -505,9 +512,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:09 GMT + - Fri, 22 May 2026 09:06:22 GMT RequestId: - - ba139f17-edac-459a-a2d6-4fd0b65d72bb + - 0259cf6a-27d3-4478-a511-e8c431b05b39 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -533,14 +540,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -549,15 +557,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2061' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:09 GMT + - Fri, 22 May 2026 09:06:23 GMT Pragma: - no-cache RequestId: - - 323a1e88-b55c-441d-9590-7d9d5e26abe8 + - f65adf00-d3e8-4222-aea6-01f5a8e764ed Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -583,15 +591,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/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000000", "type": "Workspace", "name": "Starter Pool", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 10}, "dynamicExecutorAllocation": - {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "c851e624-fe5d-426f-ba83-fbb5920ea795", + {"enabled": true, "minExecutors": 1, "maxExecutors": 9}}, {"id": "d1e6fb17-3ccd-4111-bfbd-b0aa8b8bc45b", "type": "Workspace", "name": "fabcli000001", "nodeFamily": "MemoryOptimized", "nodeSize": "Medium", "autoScale": {"enabled": true, "minNodeCount": 1, "maxNodeCount": 3}, "dynamicExecutorAllocation": {"enabled": false}}]}' @@ -603,9 +611,9 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:10 GMT + - Fri, 22 May 2026 09:06:24 GMT RequestId: - - 3fcdf9c7-1fae-41cf-bf1a-b40c854a11da + - 5061df83-4803-47bd-a9ad-b03d633b8035 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -633,9 +641,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/81065bd8-e334-4715-b170-dedb4cd514e6/spark/pools/c851e624-fe5d-426f-ba83-fbb5920ea795 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/spark/pools/d1e6fb17-3ccd-4111-bfbd-b0aa8b8bc45b response: body: string: '' @@ -647,9 +655,9 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 31 Dec 2025 14:32:11 GMT + - Fri, 22 May 2026 09:06:25 GMT RequestId: - - 31edbf5e-ed5c-4449-b835-71ef65db7964 + - 87789f4a-0a7b-44c9-bbb7-16f9bf819ee5 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_workspace_invalid_query_failure.yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_workspace_invalid_query_failure.yaml index f73b0519d..7c24d78c8 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_workspace_invalid_query_failure.yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_workspace_invalid_query_failure.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": "d7207d29-c72d-40ed-9a63-98198983b43c", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2305' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Thu, 29 Jan 2026 12:59:50 GMT + - Fri, 22 May 2026 09:04:39 GMT Pragma: - no-cache RequestId: - - 44fdd190-5f3f-4364-ab73-422c4eaf00e5 + - ba931e20-49d7-4e44-9c67-ff5c72f65fba Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_workspace_metadata_success[description].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_workspace_metadata_success[description].yaml index 6e68e4dc2..8eb65d0f8 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_workspace_metadata_success[description].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_workspace_metadata_success[description].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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2061' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:01 GMT + - Fri, 22 May 2026 09:04:39 GMT Pragma: - no-cache RequestId: - - 7a0aab06-1377-4612-ab5e-4cf496cf7269 + - ae7ed2af-3f82-49bd-b60b-a824f82503dd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2061' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:02 GMT + - Fri, 22 May 2026 09:04:40 GMT Pragma: - no-cache RequestId: - - b6b6df17-8d69-4167-8cb5-288afb58e064 + - dec841f9-17f7-4ce5-9e87-738b6e993a27 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,13 +113,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/capacities response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F32", "region": "Central US", "state": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -127,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '343' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:07 GMT + - Fri, 22 May 2026 09:04:46 GMT Pragma: - no-cache RequestId: - - 95032e91-2d85-4148-b53d-98c7697fe458 + - 55cbda36-a8d2-4b04-8f6a-9a276303bb63 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -160,16 +162,16 @@ interactions: - keep-alive Content-Length: - '89' - 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 response: body: - string: '{"id": "bddc9947-5aef-4ceb-8fe9-1b75f514a1d1", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "589481a3-d6e7-426c-8f03-bd7af9269324", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -178,17 +180,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:15 GMT + - Fri, 22 May 2026 09:04:54 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/bddc9947-5aef-4ceb-8fe9-1b75f514a1d1 + - https://api.fabric.microsoft.com/v1/workspaces/589481a3-d6e7-426c-8f03-bd7af9269324 Pragma: - no-cache RequestId: - - e48a99e6-9c30-4b40-82dc-a632c58ffd68 + - 725c5188-e83b-4cbc-b696-c1477722ba69 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,15 +216,17 @@ 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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "bddc9947-5aef-4ceb-8fe9-1b75f514a1d1", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "589481a3-d6e7-426c-8f03-bd7af9269324", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -231,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2100' + - '2833' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:15 GMT + - Fri, 22 May 2026 09:04:54 GMT Pragma: - no-cache RequestId: - - 40934d97-4bba-4bc5-8115-f86df2110b06 + - da00f250-6572-4bed-8c97-2ca90308e940 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,12 +269,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/bddc9947-5aef-4ceb-8fe9-1b75f514a1d1 + uri: https://api.fabric.microsoft.com/v1/workspaces/589481a3-d6e7-426c-8f03-bd7af9269324 response: body: - string: '{"id": "bddc9947-5aef-4ceb-8fe9-1b75f514a1d1", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + string: '{"id": "589481a3-d6e7-426c-8f03-bd7af9269324", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", "capacityRegion": "Central US", "oneLakeEndpoints": {"blobEndpoint": "https://centralus-onelake.blob.fabric.microsoft.com", "dfsEndpoint": "https://centralus-onelake.dfs.fabric.microsoft.com"}, "capacityAssignmentProgress": "Completed"}' @@ -282,15 +287,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '276' + - '267' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:15 GMT + - Fri, 22 May 2026 09:04:55 GMT Pragma: - no-cache RequestId: - - e3f19a26-1402-44c4-ae78-b888d4b32dba + - e1ed1947-7645-40e4-aa16-782bcd1c394d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,9 +321,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/bddc9947-5aef-4ceb-8fe9-1b75f514a1d1/managedPrivateEndpoints + uri: https://api.fabric.microsoft.com/v1/workspaces/589481a3-d6e7-426c-8f03-bd7af9269324/managedPrivateEndpoints response: body: string: '{"value": []}' @@ -334,11 +339,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:16 GMT + - Fri, 22 May 2026 09:04:56 GMT Pragma: - no-cache RequestId: - - 93e2fe49-fef7-4b1f-af28-9f497bd3fe9d + - 034543ea-caee-4d27-907f-e06b1b9cd352 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -364,9 +369,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/bddc9947-5aef-4ceb-8fe9-1b75f514a1d1/spark/settings + uri: https://api.fabric.microsoft.com/v1/workspaces/589481a3-d6e7-426c-8f03-bd7af9269324/spark/settings response: body: string: '{"automaticLog": {"enabled": true}, "highConcurrency": {"notebookInteractiveRunEnabled": @@ -377,15 +382,17 @@ interactions: 20}}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,ETag Content-Length: - '600' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:17 GMT + - Fri, 22 May 2026 09:04:58 GMT + ETag: + - '"default-v1"' RequestId: - - 1af65669-ad6b-4ea0-a269-6243c3b38e4c + - 02c5282f-4527-4d84-8f92-d2d799666e6c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -411,9 +418,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/bddc9947-5aef-4ceb-8fe9-1b75f514a1d1/roleAssignments + uri: https://api.fabric.microsoft.com/v1/workspaces/589481a3-d6e7-426c-8f03-bd7af9269324/roleAssignments response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000001", "principal": @@ -432,11 +439,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:18 GMT + - Fri, 22 May 2026 09:04:58 GMT Pragma: - no-cache RequestId: - - 24198080-d3ff-4225-93b0-8259fe52beec + - feda2367-962f-4f50-9290-a333ebaf4c16 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -464,12 +471,12 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/bddc9947-5aef-4ceb-8fe9-1b75f514a1d1 + uri: https://api.fabric.microsoft.com/v1/workspaces/589481a3-d6e7-426c-8f03-bd7af9269324 response: body: - string: '{"id": "bddc9947-5aef-4ceb-8fe9-1b75f514a1d1", "displayName": "fabcli000001", + string: '{"id": "589481a3-d6e7-426c-8f03-bd7af9269324", "displayName": "fabcli000001", "description": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: @@ -479,15 +486,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '166' + - '164' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:18 GMT + - Fri, 22 May 2026 09:05:00 GMT Pragma: - no-cache RequestId: - - d78deb4b-f6c6-4447-8d13-64fcea361544 + - 0235224e-369f-4f72-81d2-39157c00e6a6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -513,15 +520,16 @@ 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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "bddc9947-5aef-4ceb-8fe9-1b75f514a1d1", "displayName": "fabcli000001", + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "589481a3-d6e7-426c-8f03-bd7af9269324", "displayName": "fabcli000001", "description": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -531,15 +539,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2117' + - '2846' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:19 GMT + - Fri, 22 May 2026 09:05:00 GMT Pragma: - no-cache RequestId: - - 60c5a273-e053-4862-ae23-d9b506c0839b + - e75da6c7-6e63-44e5-8a26-eefb94d64d49 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -565,12 +573,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/bddc9947-5aef-4ceb-8fe9-1b75f514a1d1 + uri: https://api.fabric.microsoft.com/v1/workspaces/589481a3-d6e7-426c-8f03-bd7af9269324 response: body: - string: '{"id": "bddc9947-5aef-4ceb-8fe9-1b75f514a1d1", "displayName": "fabcli000001", + string: '{"id": "589481a3-d6e7-426c-8f03-bd7af9269324", "displayName": "fabcli000001", "description": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", "capacityRegion": "Central US", "oneLakeEndpoints": {"blobEndpoint": "https://centralus-onelake.blob.fabric.microsoft.com", "dfsEndpoint": "https://centralus-onelake.dfs.fabric.microsoft.com"}, "capacityAssignmentProgress": @@ -587,11 +595,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:18 GMT + - Fri, 22 May 2026 09:05:01 GMT Pragma: - no-cache RequestId: - - a01e04e1-d47b-42a5-96e5-ead65585f295 + - 751dc61c-c07d-475d-95c9-e3b6d2b97961 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -617,9 +625,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/bddc9947-5aef-4ceb-8fe9-1b75f514a1d1/managedPrivateEndpoints + uri: https://api.fabric.microsoft.com/v1/workspaces/589481a3-d6e7-426c-8f03-bd7af9269324/managedPrivateEndpoints response: body: string: '{"value": []}' @@ -635,11 +643,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:19 GMT + - Fri, 22 May 2026 09:05:01 GMT Pragma: - no-cache RequestId: - - 29e04142-a24a-4a6f-aa6e-43e31687ca9e + - 12b26e4e-75c4-430a-80a5-7c0d389a2dec Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -665,9 +673,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/bddc9947-5aef-4ceb-8fe9-1b75f514a1d1/spark/settings + uri: https://api.fabric.microsoft.com/v1/workspaces/589481a3-d6e7-426c-8f03-bd7af9269324/spark/settings response: body: string: '{"automaticLog": {"enabled": true}, "highConcurrency": {"notebookInteractiveRunEnabled": @@ -684,11 +692,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:20 GMT + - Fri, 22 May 2026 09:05:02 GMT ETag: - - '"0x8DE4879427648B9"' + - '"0x8DEB7E1331373D8"' RequestId: - - 337d032e-d2a4-4c30-b2b1-fac7d7661645 + - 9a728210-99b6-423d-9503-97645f728872 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -714,9 +722,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/bddc9947-5aef-4ceb-8fe9-1b75f514a1d1/roleAssignments + uri: https://api.fabric.microsoft.com/v1/workspaces/589481a3-d6e7-426c-8f03-bd7af9269324/roleAssignments response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000001", "principal": @@ -735,11 +743,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:21 GMT + - Fri, 22 May 2026 09:05:03 GMT Pragma: - no-cache RequestId: - - 95e0d11f-0935-49ac-9aad-eb9aa7c49ad1 + - de6892f1-3ebd-4c45-b891-4c3bc282bdd6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -765,15 +773,16 @@ 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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "bddc9947-5aef-4ceb-8fe9-1b75f514a1d1", "displayName": "fabcli000001", + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "589481a3-d6e7-426c-8f03-bd7af9269324", "displayName": "fabcli000001", "description": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: @@ -783,15 +792,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2117' + - '2846' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:21 GMT + - Fri, 22 May 2026 09:05:04 GMT Pragma: - no-cache RequestId: - - dee09da2-c2df-41db-bb81-0dbb7b0dafb2 + - 76fdee45-621f-4e54-92ca-e1177cbb70f2 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -817,9 +826,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/bddc9947-5aef-4ceb-8fe9-1b75f514a1d1/items + uri: https://api.fabric.microsoft.com/v1/workspaces/589481a3-d6e7-426c-8f03-bd7af9269324/items response: body: string: '{"value": []}' @@ -835,11 +844,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:21 GMT + - Fri, 22 May 2026 09:05:04 GMT Pragma: - no-cache RequestId: - - 28b0d36b-6db8-4a87-9174-65c1d35561d6 + - 1b342bad-c816-4169-9aef-298b8e588208 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -867,9 +876,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/bddc9947-5aef-4ceb-8fe9-1b75f514a1d1 + uri: https://api.fabric.microsoft.com/v1/workspaces/589481a3-d6e7-426c-8f03-bd7af9269324 response: body: string: '' @@ -885,11 +894,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 31 Dec 2025 14:31:21 GMT + - Fri, 22 May 2026 09:05:04 GMT Pragma: - no-cache RequestId: - - 5065b04a-f89b-44be-a0a0-f4b9ae1de03d + - 7dbe35ba-2d66-4129-b13f-7e6c375b8866 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_workspace_metadata_success[displayName].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_workspace_metadata_success[displayName].yaml index b51a417a0..b275f3944 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_workspace_metadata_success[displayName].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_workspace_metadata_success[displayName].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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2061' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:22 GMT + - Fri, 22 May 2026 09:05:06 GMT Pragma: - no-cache RequestId: - - 153d2986-0aa3-4b8d-af9b-5970c762d926 + - d356a93f-feb7-41ab-99e9-fc673a89ab97 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2061' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:22 GMT + - Fri, 22 May 2026 09:05:06 GMT Pragma: - no-cache RequestId: - - 32cb9199-fb3f-49f8-b9f7-227f4d71927c + - ad3a89e2-684d-4f7d-9c70-f8fe709682df Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,13 +113,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/capacities response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F32", "region": "Central US", "state": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -127,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '343' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:27 GMT + - Fri, 22 May 2026 09:05:09 GMT Pragma: - no-cache RequestId: - - c836783a-4f76-459d-9dc3-f87fd3c677dc + - ed6ed85a-3896-49d0-8ae9-3e30d7f52e6b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -160,16 +162,16 @@ interactions: - keep-alive Content-Length: - '89' - 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 response: body: - string: '{"id": "9d650126-0593-40a4-9506-e7e3482ee626", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "d5bfe856-648e-465b-a131-d7a960c526b8", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -178,17 +180,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:32 GMT + - Fri, 22 May 2026 09:05:17 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/9d650126-0593-40a4-9506-e7e3482ee626 + - https://api.fabric.microsoft.com/v1/workspaces/d5bfe856-648e-465b-a131-d7a960c526b8 Pragma: - no-cache RequestId: - - 3c61f924-8797-4837-8658-4eb4781a78bd + - 1fff4159-a73d-43d8-b70c-b4caf670374c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,15 +216,17 @@ 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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "9d650126-0593-40a4-9506-e7e3482ee626", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d5bfe856-648e-465b-a131-d7a960c526b8", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -231,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2099' + - '2834' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:33 GMT + - Fri, 22 May 2026 09:05:19 GMT Pragma: - no-cache RequestId: - - 19945620-5d5d-4fe9-8bf6-273913bc79e8 + - cc0e2f2d-2bfa-4636-9de0-07e254bcae9b Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,12 +269,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/9d650126-0593-40a4-9506-e7e3482ee626 + uri: https://api.fabric.microsoft.com/v1/workspaces/d5bfe856-648e-465b-a131-d7a960c526b8 response: body: - string: '{"id": "9d650126-0593-40a4-9506-e7e3482ee626", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + string: '{"id": "d5bfe856-648e-465b-a131-d7a960c526b8", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", "capacityRegion": "Central US", "oneLakeEndpoints": {"blobEndpoint": "https://centralus-onelake.blob.fabric.microsoft.com", "dfsEndpoint": "https://centralus-onelake.dfs.fabric.microsoft.com"}, "capacityAssignmentProgress": "Completed"}' @@ -282,15 +287,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '277' + - '266' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:34 GMT + - Fri, 22 May 2026 09:05:19 GMT Pragma: - no-cache RequestId: - - f78be44c-2d0f-45cb-8b70-e5d904ca78ef + - ae0e3614-89bb-44ed-8ae8-8ba0dfe1f7ef Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,9 +321,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/9d650126-0593-40a4-9506-e7e3482ee626/managedPrivateEndpoints + uri: https://api.fabric.microsoft.com/v1/workspaces/d5bfe856-648e-465b-a131-d7a960c526b8/managedPrivateEndpoints response: body: string: '{"value": []}' @@ -334,11 +339,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:33 GMT + - Fri, 22 May 2026 09:05:20 GMT Pragma: - no-cache RequestId: - - d0b50eae-f23d-4ce7-9e46-ebe799f1e76f + - 9999554c-d127-4224-8088-8a99d81c895e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -364,9 +369,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/9d650126-0593-40a4-9506-e7e3482ee626/spark/settings + uri: https://api.fabric.microsoft.com/v1/workspaces/d5bfe856-648e-465b-a131-d7a960c526b8/spark/settings response: body: string: '{"automaticLog": {"enabled": true}, "highConcurrency": {"notebookInteractiveRunEnabled": @@ -377,15 +382,17 @@ interactions: 20}}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,ETag Content-Length: - '600' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:34 GMT + - Fri, 22 May 2026 09:05:21 GMT + ETag: + - '"default-v1"' RequestId: - - fd692621-7a65-4b04-811d-60f27a0ce1fa + - bda6cf96-bfdd-4186-96ca-1d38388d59dd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -411,9 +418,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/9d650126-0593-40a4-9506-e7e3482ee626/roleAssignments + uri: https://api.fabric.microsoft.com/v1/workspaces/d5bfe856-648e-465b-a131-d7a960c526b8/roleAssignments response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000001", "principal": @@ -432,11 +439,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:35 GMT + - Fri, 22 May 2026 09:05:22 GMT Pragma: - no-cache RequestId: - - 5c3b1dc9-3bf3-48d0-b582-fc87f6b8fcb8 + - 9bef921f-a487-4cc7-b9a6-367ae7e20756 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -464,12 +471,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/9d650126-0593-40a4-9506-e7e3482ee626 + uri: https://api.fabric.microsoft.com/v1/workspaces/d5bfe856-648e-465b-a131-d7a960c526b8 response: body: - string: '{"id": "9d650126-0593-40a4-9506-e7e3482ee626", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "d5bfe856-648e-465b-a131-d7a960c526b8", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId @@ -478,15 +486,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:35 GMT + - Fri, 22 May 2026 09:05:23 GMT Pragma: - no-cache RequestId: - - 5817c7f8-bd8f-444f-9c81-5d61d9826f15 + - b41f439b-745c-426a-a926-2756d4d624e7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -512,15 +520,17 @@ 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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "9d650126-0593-40a4-9506-e7e3482ee626", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d5bfe856-648e-465b-a131-d7a960c526b8", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -529,15 +539,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2100' + - '2833' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:35 GMT + - Fri, 22 May 2026 09:05:24 GMT Pragma: - no-cache RequestId: - - 5b88b981-565f-4766-a635-5bbcc0378982 + - 548668cf-f508-4245-bb6b-74ea78a49c2a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -563,15 +573,17 @@ 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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "9d650126-0593-40a4-9506-e7e3482ee626", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d5bfe856-648e-465b-a131-d7a960c526b8", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -580,15 +592,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2100' + - '2833' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:36 GMT + - Fri, 22 May 2026 09:05:25 GMT Pragma: - no-cache RequestId: - - c95042e3-5840-4b00-bdae-1f352ba522f3 + - a2770ff2-6c04-4668-8e99-23d69554ae77 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -614,15 +626,17 @@ 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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "9d650126-0593-40a4-9506-e7e3482ee626", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d5bfe856-648e-465b-a131-d7a960c526b8", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -631,15 +645,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2100' + - '2833' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:36 GMT + - Fri, 22 May 2026 09:05:26 GMT Pragma: - no-cache RequestId: - - 573d479b-e4b4-4b7e-ac5f-6a316a966608 + - 4ae4b35f-08a0-4929-8af7-ff92990fe2bf Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -665,12 +679,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/9d650126-0593-40a4-9506-e7e3482ee626 + uri: https://api.fabric.microsoft.com/v1/workspaces/d5bfe856-648e-465b-a131-d7a960c526b8 response: body: - string: '{"id": "9d650126-0593-40a4-9506-e7e3482ee626", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + string: '{"id": "d5bfe856-648e-465b-a131-d7a960c526b8", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", "capacityRegion": "Central US", "oneLakeEndpoints": {"blobEndpoint": "https://centralus-onelake.blob.fabric.microsoft.com", "dfsEndpoint": "https://centralus-onelake.dfs.fabric.microsoft.com"}, "capacityAssignmentProgress": "Completed"}' @@ -682,15 +697,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '276' + - '266' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:36 GMT + - Fri, 22 May 2026 09:05:27 GMT Pragma: - no-cache RequestId: - - 7f213a75-57da-49fd-a567-591962efe421 + - 55cb027f-2490-434c-a450-ff78a788e8c0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -716,9 +731,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/9d650126-0593-40a4-9506-e7e3482ee626/managedPrivateEndpoints + uri: https://api.fabric.microsoft.com/v1/workspaces/d5bfe856-648e-465b-a131-d7a960c526b8/managedPrivateEndpoints response: body: string: '{"value": []}' @@ -734,11 +749,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:36 GMT + - Fri, 22 May 2026 09:05:28 GMT Pragma: - no-cache RequestId: - - 15beb81e-213a-4fae-8be9-19c19798df4b + - 8cbbca0f-df5f-45af-afdf-272d1cbf3c6a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -764,9 +779,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/9d650126-0593-40a4-9506-e7e3482ee626/spark/settings + uri: https://api.fabric.microsoft.com/v1/workspaces/d5bfe856-648e-465b-a131-d7a960c526b8/spark/settings response: body: string: '{"automaticLog": {"enabled": true}, "highConcurrency": {"notebookInteractiveRunEnabled": @@ -783,11 +798,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:37 GMT + - Fri, 22 May 2026 09:05:28 GMT ETag: - - '"0x8DE48794D09CE21"' + - '"0x8DEB7E1416DE388"' RequestId: - - d37df48f-701f-4931-9adb-a1c3fda2c820 + - 7ed4af2c-ef6a-42c5-bf83-4bacf7c42ee4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -813,9 +828,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/9d650126-0593-40a4-9506-e7e3482ee626/roleAssignments + uri: https://api.fabric.microsoft.com/v1/workspaces/d5bfe856-648e-465b-a131-d7a960c526b8/roleAssignments response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000001", "principal": @@ -834,11 +849,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:38 GMT + - Fri, 22 May 2026 09:05:29 GMT Pragma: - no-cache RequestId: - - 7b75f9a1-79fe-4f5f-abf5-6f871fbc3dbd + - ad6fe8ac-918d-4a58-8c0c-7b467aa31485 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -864,15 +879,17 @@ 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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "9d650126-0593-40a4-9506-e7e3482ee626", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d5bfe856-648e-465b-a131-d7a960c526b8", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -881,15 +898,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2100' + - '2833' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:38 GMT + - Fri, 22 May 2026 09:05:30 GMT Pragma: - no-cache RequestId: - - 9f9b6e67-0bdc-4532-a721-ee61bcca3cf7 + - ababceaf-fd7d-4a36-b4d6-c19b95c9384e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -915,12 +932,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/9d650126-0593-40a4-9506-e7e3482ee626 + uri: https://api.fabric.microsoft.com/v1/workspaces/d5bfe856-648e-465b-a131-d7a960c526b8 response: body: - string: '{"id": "9d650126-0593-40a4-9506-e7e3482ee626", "displayName": "fabcli000002", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + string: '{"id": "d5bfe856-648e-465b-a131-d7a960c526b8", "displayName": "fabcli000002", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", "capacityRegion": "Central US", "oneLakeEndpoints": {"blobEndpoint": "https://centralus-onelake.blob.fabric.microsoft.com", "dfsEndpoint": "https://centralus-onelake.dfs.fabric.microsoft.com"}, "capacityAssignmentProgress": "Completed"}' @@ -932,15 +950,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '276' + - '266' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:38 GMT + - Fri, 22 May 2026 09:05:31 GMT Pragma: - no-cache RequestId: - - 20a58326-f77d-4dfb-a12a-9e6e67fca87f + - bd7790de-e598-46a1-a722-a0c21fb0fdc6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -966,9 +984,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/9d650126-0593-40a4-9506-e7e3482ee626/managedPrivateEndpoints + uri: https://api.fabric.microsoft.com/v1/workspaces/d5bfe856-648e-465b-a131-d7a960c526b8/managedPrivateEndpoints response: body: string: '{"value": []}' @@ -984,11 +1002,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:39 GMT + - Fri, 22 May 2026 09:05:32 GMT Pragma: - no-cache RequestId: - - d2beb9bf-4697-4f58-86b6-7ab0fd1fc828 + - f917b743-18a1-45eb-9f13-61fa84f4072e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1014,9 +1032,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/9d650126-0593-40a4-9506-e7e3482ee626/spark/settings + uri: https://api.fabric.microsoft.com/v1/workspaces/d5bfe856-648e-465b-a131-d7a960c526b8/spark/settings response: body: string: '{"automaticLog": {"enabled": true}, "highConcurrency": {"notebookInteractiveRunEnabled": @@ -1033,11 +1051,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:42 GMT + - Fri, 22 May 2026 09:05:33 GMT ETag: - - '"0x8DE48794D09CE21"' + - '"0x8DEB7E1416DE388"' RequestId: - - 0ecf928d-0cbc-47e1-bf99-0ff93eab865a + - 5e0bd8b1-0164-4cd5-9319-13bfd737d760 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1063,9 +1081,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/9d650126-0593-40a4-9506-e7e3482ee626/roleAssignments + uri: https://api.fabric.microsoft.com/v1/workspaces/d5bfe856-648e-465b-a131-d7a960c526b8/roleAssignments response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000001", "principal": @@ -1084,11 +1102,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:42 GMT + - Fri, 22 May 2026 09:05:34 GMT Pragma: - no-cache RequestId: - - a23388ee-6acc-4712-a836-0da6629d1bf5 + - e4b9ed83-897a-448c-8bf7-1f6eda9e3449 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1116,12 +1134,13 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/9d650126-0593-40a4-9506-e7e3482ee626 + uri: https://api.fabric.microsoft.com/v1/workspaces/d5bfe856-648e-465b-a131-d7a960c526b8 response: body: - string: '{"id": "9d650126-0593-40a4-9506-e7e3482ee626", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "d5bfe856-648e-465b-a131-d7a960c526b8", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId @@ -1130,15 +1149,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '155' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:42 GMT + - Fri, 22 May 2026 09:05:34 GMT Pragma: - no-cache RequestId: - - 2b20bfd8-39f0-4f5b-acbd-c2922b1a9b7e + - 8beaa393-52b0-4ffc-bd03-6d8bd09a86a1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1164,15 +1183,17 @@ 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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "9d650126-0593-40a4-9506-e7e3482ee626", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "d5bfe856-648e-465b-a131-d7a960c526b8", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -1181,15 +1202,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2099' + - '2834' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:42 GMT + - Fri, 22 May 2026 09:05:35 GMT Pragma: - no-cache RequestId: - - 3024860b-b76e-4a29-a434-21796ad6a05d + - e81ec03e-aebb-41ff-9a72-f6a18699b60f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1215,9 +1236,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/9d650126-0593-40a4-9506-e7e3482ee626/items + uri: https://api.fabric.microsoft.com/v1/workspaces/d5bfe856-648e-465b-a131-d7a960c526b8/items response: body: string: '{"value": []}' @@ -1233,11 +1254,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:43 GMT + - Fri, 22 May 2026 09:05:36 GMT Pragma: - no-cache RequestId: - - e7a82449-a6a2-4708-a687-0eb0db362930 + - 041aaced-1e49-40b9-ba1b-c6f1194224e3 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -1265,9 +1286,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/9d650126-0593-40a4-9506-e7e3482ee626 + uri: https://api.fabric.microsoft.com/v1/workspaces/d5bfe856-648e-465b-a131-d7a960c526b8 response: body: string: '' @@ -1283,11 +1304,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 31 Dec 2025 14:31:43 GMT + - Fri, 22 May 2026 09:05:36 GMT Pragma: - no-cache RequestId: - - dfa3616d-9941-4119-9e3f-cfae11b25c34 + - e05096d3-2dd6-4be4-ac6d-3c0a07b3f38a Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_set_workspace_success[sparkSettings.automaticLog.enabled-false].yaml b/tests/test_commands/recordings/test_commands/test_set/test_set_workspace_success[sparkSettings.automaticLog.enabled-false].yaml index a3f7fd62b..9d0de20f0 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_set_workspace_success[sparkSettings.automaticLog.enabled-false].yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_set_workspace_success[sparkSettings.automaticLog.enabled-false].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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2061' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:44 GMT + - Fri, 22 May 2026 09:05:38 GMT Pragma: - no-cache RequestId: - - e513ca19-d939-43d2-8c47-c8fbd8533366 + - 74287550-cd46-49fe-8b33-2646504bda5f Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,14 +62,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -77,15 +79,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2061' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:44 GMT + - Fri, 22 May 2026 09:05:38 GMT Pragma: - no-cache RequestId: - - 2947d2a4-5e95-4ca7-93e0-28d6c3719205 + - 27dd5e31-f00d-4aed-bd6f-d93d99c1fd33 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -111,13 +113,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/capacities response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000004", "displayName": - "mocked_fabriccli_capacity_name", "sku": "F32", "region": "Central US", "state": + "mocked_fabriccli_capacity_name", "sku": "F16", "region": "Central US", "state": "Active"}]}' headers: Access-Control-Expose-Headers: @@ -127,15 +129,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '343' + - '426' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:48 GMT + - Fri, 22 May 2026 09:05:44 GMT Pragma: - no-cache RequestId: - - c7246330-9b36-4fd4-b92b-f2ad09ea3b02 + - 515215f8-eb73-48bb-bc61-9b660b612a03 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -160,16 +162,16 @@ interactions: - keep-alive Content-Length: - '89' - 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 response: body: - string: '{"id": "43d5cc7e-7f30-4bdf-b15b-a60499798650", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' + string: '{"id": "0d518286-525e-44b3-958e-667400b5e5bb", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}' headers: Access-Control-Expose-Headers: - RequestId,Location @@ -178,17 +180,17 @@ interactions: Content-Encoding: - gzip Content-Length: - - '167' + - '154' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:56 GMT + - Fri, 22 May 2026 09:05:52 GMT Location: - - https://api.fabric.microsoft.com/v1/workspaces/43d5cc7e-7f30-4bdf-b15b-a60499798650 + - https://api.fabric.microsoft.com/v1/workspaces/0d518286-525e-44b3-958e-667400b5e5bb Pragma: - no-cache RequestId: - - 92a38a97-d8bb-410e-b0a2-97a569f9b314 + - 7bff0532-a8c6-4882-92d7-3936fa1fde0d Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -214,15 +216,17 @@ 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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "43d5cc7e-7f30-4bdf-b15b-a60499798650", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "0d518286-525e-44b3-958e-667400b5e5bb", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -231,15 +235,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2099' + - '2831' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:56 GMT + - Fri, 22 May 2026 09:05:53 GMT Pragma: - no-cache RequestId: - - a6157bb3-86c2-488d-a19a-5c494085cda9 + - a2b056b8-3016-4727-babf-54562866684c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -265,12 +269,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/43d5cc7e-7f30-4bdf-b15b-a60499798650 + uri: https://api.fabric.microsoft.com/v1/workspaces/0d518286-525e-44b3-958e-667400b5e5bb response: body: - string: '{"id": "43d5cc7e-7f30-4bdf-b15b-a60499798650", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + string: '{"id": "0d518286-525e-44b3-958e-667400b5e5bb", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", "capacityRegion": "Central US", "oneLakeEndpoints": {"blobEndpoint": "https://centralus-onelake.blob.fabric.microsoft.com", "dfsEndpoint": "https://centralus-onelake.dfs.fabric.microsoft.com"}, "capacityAssignmentProgress": "Completed"}' @@ -282,15 +287,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '277' + - '265' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:56 GMT + - Fri, 22 May 2026 09:05:53 GMT Pragma: - no-cache RequestId: - - 576f50f3-cc57-4cb1-9add-3f24b0eed947 + - 214d992a-5941-4a04-896c-725886fad1f7 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -316,9 +321,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/43d5cc7e-7f30-4bdf-b15b-a60499798650/managedPrivateEndpoints + uri: https://api.fabric.microsoft.com/v1/workspaces/0d518286-525e-44b3-958e-667400b5e5bb/managedPrivateEndpoints response: body: string: '{"value": []}' @@ -334,11 +339,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:56 GMT + - Fri, 22 May 2026 09:05:55 GMT Pragma: - no-cache RequestId: - - e9478950-2230-4d97-8a07-8f493a78b3f7 + - bcb7f673-c6a5-456f-9e61-bd8e547b9707 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -364,9 +369,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/43d5cc7e-7f30-4bdf-b15b-a60499798650/spark/settings + uri: https://api.fabric.microsoft.com/v1/workspaces/0d518286-525e-44b3-958e-667400b5e5bb/spark/settings response: body: string: '{"automaticLog": {"enabled": true}, "highConcurrency": {"notebookInteractiveRunEnabled": @@ -377,15 +382,17 @@ interactions: 20}}' headers: Access-Control-Expose-Headers: - - RequestId + - RequestId,ETag Content-Length: - '600' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:57 GMT + - Fri, 22 May 2026 09:05:56 GMT + ETag: + - '"default-v1"' RequestId: - - ef0c50d4-6492-47d6-8a8d-8d70cfc55762 + - 46925996-4ea3-4607-abbc-ee8126ddbad6 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -411,9 +418,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/43d5cc7e-7f30-4bdf-b15b-a60499798650/roleAssignments + uri: https://api.fabric.microsoft.com/v1/workspaces/0d518286-525e-44b3-958e-667400b5e5bb/roleAssignments response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000001", "principal": @@ -432,11 +439,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:57 GMT + - Fri, 22 May 2026 09:05:56 GMT Pragma: - no-cache RequestId: - - 401679af-7a98-4614-8958-ed6a5fe8df08 + - dbf4637c-2663-4c9d-ba96-0d0272efddad Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -469,9 +476,9 @@ interactions: Content-Type: - application/json User-Agent: - - ms-fabric-cli-test/1.3.1 + - ms-fabric-cli-test/1.6.1 method: PATCH - uri: https://api.fabric.microsoft.com/v1/workspaces/43d5cc7e-7f30-4bdf-b15b-a60499798650/spark/settings + uri: https://api.fabric.microsoft.com/v1/workspaces/0d518286-525e-44b3-958e-667400b5e5bb/spark/settings response: body: string: '{"automaticLog": {"enabled": false}, "highConcurrency": {"notebookInteractiveRunEnabled": @@ -488,11 +495,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:58 GMT + - Fri, 22 May 2026 09:05:57 GMT ETag: - - '"0x8DE48795AE70701"' + - '"0x8DEB7E156C80D34"' RequestId: - - 636a75f6-b66b-4363-b351-1cbad322841b + - 98573b80-d125-446e-b5ec-910b581b1adc Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -518,15 +525,17 @@ 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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "43d5cc7e-7f30-4bdf-b15b-a60499798650", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "0d518286-525e-44b3-958e-667400b5e5bb", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -535,15 +544,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2099' + - '2831' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:59 GMT + - Fri, 22 May 2026 09:05:58 GMT Pragma: - no-cache RequestId: - - 2eefebfc-ac1a-44fb-a999-696cd2abdfcb + - e5025ab4-fdd5-4cf9-854e-943b281816f8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -569,12 +578,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/43d5cc7e-7f30-4bdf-b15b-a60499798650 + uri: https://api.fabric.microsoft.com/v1/workspaces/0d518286-525e-44b3-958e-667400b5e5bb response: body: - string: '{"id": "43d5cc7e-7f30-4bdf-b15b-a60499798650", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + string: '{"id": "0d518286-525e-44b3-958e-667400b5e5bb", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", "capacityRegion": "Central US", "oneLakeEndpoints": {"blobEndpoint": "https://centralus-onelake.blob.fabric.microsoft.com", "dfsEndpoint": "https://centralus-onelake.dfs.fabric.microsoft.com"}, "capacityAssignmentProgress": "Completed"}' @@ -586,15 +596,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '277' + - '265' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:59 GMT + - Fri, 22 May 2026 09:05:59 GMT Pragma: - no-cache RequestId: - - 8c09e74b-41d4-4cb7-992d-180d2585048c + - f02acb64-d0cf-49e0-b6d4-3e20271c8d88 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -620,9 +630,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/43d5cc7e-7f30-4bdf-b15b-a60499798650/managedPrivateEndpoints + uri: https://api.fabric.microsoft.com/v1/workspaces/0d518286-525e-44b3-958e-667400b5e5bb/managedPrivateEndpoints response: body: string: '{"value": []}' @@ -638,11 +648,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:31:58 GMT + - Fri, 22 May 2026 09:06:00 GMT Pragma: - no-cache RequestId: - - 483ecbfc-a38c-48d0-b636-1df925df67a1 + - 0d3fe168-ba75-4baf-8093-89b6ba903a61 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -668,9 +678,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/43d5cc7e-7f30-4bdf-b15b-a60499798650/spark/settings + uri: https://api.fabric.microsoft.com/v1/workspaces/0d518286-525e-44b3-958e-667400b5e5bb/spark/settings response: body: string: '{"automaticLog": {"enabled": false}, "highConcurrency": {"notebookInteractiveRunEnabled": @@ -687,11 +697,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:00 GMT + - Fri, 22 May 2026 09:06:01 GMT ETag: - - '"0x8DE48795AE70701"' + - '"0x8DEB7E156C80D34"' RequestId: - - cf0933e4-f2b5-403c-8b62-47a12c75565d + - 9e7f7630-e529-441d-97c6-79aed7e909cd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -717,9 +727,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/43d5cc7e-7f30-4bdf-b15b-a60499798650/roleAssignments + uri: https://api.fabric.microsoft.com/v1/workspaces/0d518286-525e-44b3-958e-667400b5e5bb/roleAssignments response: body: string: '{"value": [{"id": "00000000-0000-0000-0000-000000000001", "principal": @@ -738,11 +748,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:00 GMT + - Fri, 22 May 2026 09:06:01 GMT Pragma: - no-cache RequestId: - - e7cb98c6-62f6-4b35-b212-ae017ac87afc + - e5a80579-c31f-4139-857d-ae192d3ba6b4 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -768,15 +778,17 @@ 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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, - {"id": "43d5cc7e-7f30-4bdf-b15b-a60499798650", "displayName": "fabcli000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}, + {"id": "0d518286-525e-44b3-958e-667400b5e5bb", "displayName": "fabcli000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -785,15 +797,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2099' + - '2831' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:01 GMT + - Fri, 22 May 2026 09:06:03 GMT Pragma: - no-cache RequestId: - - 2581a206-f52a-4930-b97f-df316e37b957 + - 9f987ad9-846f-4759-9fbe-ef49a07c899c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -819,9 +831,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/43d5cc7e-7f30-4bdf-b15b-a60499798650/items + uri: https://api.fabric.microsoft.com/v1/workspaces/0d518286-525e-44b3-958e-667400b5e5bb/items response: body: string: '{"value": []}' @@ -837,11 +849,11 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:32:00 GMT + - Fri, 22 May 2026 09:06:04 GMT Pragma: - no-cache RequestId: - - c970e01f-1a18-417c-ba67-244f2d76a338 + - 00ea7be6-dff3-450c-b8fd-2baeecc907d0 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -869,9 +881,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/43d5cc7e-7f30-4bdf-b15b-a60499798650 + uri: https://api.fabric.microsoft.com/v1/workspaces/0d518286-525e-44b3-958e-667400b5e5bb response: body: string: '' @@ -887,11 +899,11 @@ interactions: Content-Type: - application/octet-stream Date: - - Wed, 31 Dec 2025 14:32:01 GMT + - Fri, 22 May 2026 09:06:05 GMT Pragma: - no-cache RequestId: - - ea44579d-b03e-4c0c-b6a5-f1a10cc8d7bb + - 96bc2f5f-6383-453d-8940-56e80c236e4c Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: diff --git a/tests/test_commands/recordings/test_commands/test_set/test_virtual_item_not_supported_failure.yaml b/tests/test_commands/recordings/test_commands/test_set/test_virtual_item_not_supported_failure.yaml index 5f2182d9f..047c2952a 100644 --- a/tests/test_commands/recordings/test_commands/test_set/test_virtual_item_not_supported_failure.yaml +++ b/tests/test_commands/recordings/test_commands/test_set/test_virtual_item_not_supported_failure.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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "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: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:40 GMT + - Fri, 22 May 2026 09:16:19 GMT Pragma: - no-cache RequestId: - - 958715d8-9506-4f0e-aa9c-07f751db655c + - 1ded8406-808b-4f13-8f9d-576d4e88b7e8 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -61,12 +62,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/81065bd8-e334-4715-b170-dedb4cd514e6 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534 response: body: - string: '{"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + string: '{"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", "displayName": "fabriccli_WorkspacePerTestclass_000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", "capacityRegion": "Central US", "oneLakeEndpoints": {"blobEndpoint": "https://centralus-onelake.blob.fabric.microsoft.com", "dfsEndpoint": "https://centralus-onelake.dfs.fabric.microsoft.com"}, "capacityAssignmentProgress": "Completed"}' @@ -78,15 +80,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '296' + - '286' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:39 GMT + - Fri, 22 May 2026 09:16:20 GMT Pragma: - no-cache RequestId: - - 37fc74e3-5297-4f43-8c05-3c28f78c21eb + - 6f133901-a34f-47c1-8db8-f731b6471538 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -112,12 +114,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/81065bd8-e334-4715-b170-dedb4cd514e6 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534 response: body: - string: '{"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + string: '{"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", "displayName": "fabriccli_WorkspacePerTestclass_000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", "capacityRegion": "Central US", "oneLakeEndpoints": {"blobEndpoint": "https://centralus-onelake.blob.fabric.microsoft.com", "dfsEndpoint": "https://centralus-onelake.dfs.fabric.microsoft.com"}, "capacityAssignmentProgress": "Completed"}' @@ -129,15 +132,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '296' + - '286' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:40 GMT + - Fri, 22 May 2026 09:16:21 GMT Pragma: - no-cache RequestId: - - 188c9d75-631e-4bbd-9220-2caa2b009646 + - 9a43a20a-9e8c-4399-82d3-8888b733e6e9 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -165,9 +168,9 @@ interactions: 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/81065bd8-e334-4715-b170-dedb4cd514e6/provisionIdentity + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/provisionIdentity response: body: string: 'null' @@ -183,13 +186,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:41 GMT + - Fri, 22 May 2026 09:16:22 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dbb74b3b-99c5-4c1c-ae10-91ad32a59afe + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7670ac8a-6c70-40ea-af46-4da007a543f2 Pragma: - no-cache RequestId: - - f47cd8be-5ec0-48e7-9d54-1c928deddb7a + - cb5289ed-3e74-4154-87a4-a3992d4dcead Retry-After: - '5' Strict-Transport-Security: @@ -203,7 +206,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - dbb74b3b-99c5-4c1c-ae10-91ad32a59afe + - 7670ac8a-6c70-40ea-af46-4da007a543f2 status: code: 202 message: Accepted @@ -219,13 +222,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dbb74b3b-99c5-4c1c-ae10-91ad32a59afe + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7670ac8a-6c70-40ea-af46-4da007a543f2 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2025-12-31T14:38:41.4469362", - "lastUpdatedTimeUtc": "2025-12-31T14:38:42.7752692", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-22T09:16:22.8784351", + "lastUpdatedTimeUtc": "2026-05-22T09:16:24.0978028", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -239,13 +242,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:46 GMT + - Fri, 22 May 2026 09:16:28 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dbb74b3b-99c5-4c1c-ae10-91ad32a59afe/result + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7670ac8a-6c70-40ea-af46-4da007a543f2/result Pragma: - no-cache RequestId: - - 0cdbb703-7c55-4555-96bb-c5792ab6dd27 + - f49aaa51-935b-4772-9dd6-3e7e96d94453 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -253,7 +256,7 @@ interactions: X-Frame-Options: - deny x-ms-operation-id: - - dbb74b3b-99c5-4c1c-ae10-91ad32a59afe + - 7670ac8a-6c70-40ea-af46-4da007a543f2 status: code: 200 message: OK @@ -269,13 +272,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/dbb74b3b-99c5-4c1c-ae10-91ad32a59afe/result + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7670ac8a-6c70-40ea-af46-4da007a543f2/result response: body: - string: '{"applicationId": "c7d3c782-72a2-47e1-ba87-c3039090f603", "servicePrincipalId": - "df83e5ef-fcd6-4dbf-b773-53ad2542cf15"}' + string: '{"applicationId": "bd7cc565-7d06-4ab7-b96e-626c45f1fcb9", "servicePrincipalId": + "f7559944-2bb4-4123-9560-057f0235109c"}' headers: Access-Control-Expose-Headers: - RequestId @@ -286,11 +289,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 31 Dec 2025 14:38:47 GMT + - Fri, 22 May 2026 09:16:29 GMT Pragma: - no-cache RequestId: - - a73cdc1f-3a31-4894-9a5e-e1f61c497247 + - 3b3e2f50-3921-4ca5-8c46-9c1bf789bc7e Strict-Transport-Security: - max-age=31536000; includeSubDomains Transfer-Encoding: @@ -314,14 +317,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -330,15 +334,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:47 GMT + - Fri, 22 May 2026 09:16:30 GMT Pragma: - no-cache RequestId: - - cb3d6c4b-926f-4214-9727-025c0d3c9bfb + - 87fea606-211e-4458-9039-882af73261cd Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -364,16 +368,17 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534 response: body: - string: '{"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + string: '{"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", "displayName": "fabriccli_WorkspacePerTestclass_000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", "capacityRegion": "Central US", "oneLakeEndpoints": {"blobEndpoint": "https://centralus-onelake.blob.fabric.microsoft.com", "dfsEndpoint": "https://centralus-onelake.dfs.fabric.microsoft.com"}, "capacityAssignmentProgress": - "Completed", "workspaceIdentity": {"applicationId": "c7d3c782-72a2-47e1-ba87-c3039090f603", - "servicePrincipalId": "df83e5ef-fcd6-4dbf-b773-53ad2542cf15"}}' + "Completed", "workspaceIdentity": {"applicationId": "bd7cc565-7d06-4ab7-b96e-626c45f1fcb9", + "servicePrincipalId": "f7559944-2bb4-4123-9560-057f0235109c"}}' headers: Access-Control-Expose-Headers: - RequestId @@ -382,15 +387,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '382' + - '372' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:48 GMT + - Fri, 22 May 2026 09:16:31 GMT Pragma: - no-cache RequestId: - - 2454b4eb-c260-4e74-abb2-81538009b9d9 + - 9eb62a07-0e08-44c4-b823-49c81182e6e1 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -416,14 +421,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": "81065bd8-e334-4715-b170-dedb4cd514e6", - "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' + "My workspace", "description": "", "type": "Personal"}, {"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", + "displayName": "fabriccli_WorkspacePerTestclass_000001", "description": "", + "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004"}]}' headers: Access-Control-Expose-Headers: - RequestId @@ -432,15 +438,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '2091' + - '2795' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:49 GMT + - Fri, 22 May 2026 09:16:31 GMT Pragma: - no-cache RequestId: - - 0da50c39-6f2e-401f-a7c4-848adf1e1b0f + - 5a2a12e1-327a-429a-87af-76a41cbfa166 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -466,16 +472,17 @@ 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/81065bd8-e334-4715-b170-dedb4cd514e6 + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534 response: body: - string: '{"id": "81065bd8-e334-4715-b170-dedb4cd514e6", "displayName": "fabriccli_WorkspacePerTestclass_000001", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", + string: '{"id": "4f3c92ee-023c-48a7-b08b-1c5e91be6534", "displayName": "fabriccli_WorkspacePerTestclass_000001", + "description": "", "type": "Workspace", "capacityId": "00000000-0000-0000-0000-000000000004", "capacityRegion": "Central US", "oneLakeEndpoints": {"blobEndpoint": "https://centralus-onelake.blob.fabric.microsoft.com", "dfsEndpoint": "https://centralus-onelake.dfs.fabric.microsoft.com"}, "capacityAssignmentProgress": - "Completed", "workspaceIdentity": {"applicationId": "c7d3c782-72a2-47e1-ba87-c3039090f603", - "servicePrincipalId": "df83e5ef-fcd6-4dbf-b773-53ad2542cf15"}}' + "Completed", "workspaceIdentity": {"applicationId": "bd7cc565-7d06-4ab7-b96e-626c45f1fcb9", + "servicePrincipalId": "f7559944-2bb4-4123-9560-057f0235109c"}}' headers: Access-Control-Expose-Headers: - RequestId @@ -484,15 +491,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '382' + - '372' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:49 GMT + - Fri, 22 May 2026 09:16:32 GMT Pragma: - no-cache RequestId: - - 4a613646-d7df-4702-aebc-41eabae7ab35 + - 1941db9f-8487-4e65-9342-444a64f4c251 Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: @@ -520,9 +527,9 @@ interactions: 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/81065bd8-e334-4715-b170-dedb4cd514e6/deprovisionIdentity + uri: https://api.fabric.microsoft.com/v1/workspaces/4f3c92ee-023c-48a7-b08b-1c5e91be6534/deprovisionIdentity response: body: string: 'null' @@ -538,13 +545,13 @@ interactions: Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:49 GMT + - Fri, 22 May 2026 09:16:32 GMT Location: - - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7eb48be7-3e2c-4d09-8196-8ff0ca24ffee + - https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aa0d8937-e7ad-4642-97e1-e4f1963da290 Pragma: - no-cache RequestId: - - 32c27277-9881-4427-aacd-f12a8d67edf4 + - c22edb97-bf3d-4f3b-a96d-3ea7e137f031 Retry-After: - '5' Strict-Transport-Security: @@ -558,7 +565,7 @@ interactions: request-redirected: - 'true' x-ms-operation-id: - - 7eb48be7-3e2c-4d09-8196-8ff0ca24ffee + - aa0d8937-e7ad-4642-97e1-e4f1963da290 status: code: 202 message: Accepted @@ -574,13 +581,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://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/7eb48be7-3e2c-4d09-8196-8ff0ca24ffee + uri: https://wabi-us-central-b-primary-redirect.analysis.windows.net/v1/operations/aa0d8937-e7ad-4642-97e1-e4f1963da290 response: body: - string: '{"status": "Succeeded", "createdTimeUtc": "2025-12-31T14:38:49.5878458", - "lastUpdatedTimeUtc": "2025-12-31T14:38:50.5722903", "percentComplete": 100, + string: '{"status": "Succeeded", "createdTimeUtc": "2026-05-22T09:16:33.692699", + "lastUpdatedTimeUtc": "2026-05-22T09:16:34.349204", "percentComplete": 100, "error": null}' headers: Access-Control-Expose-Headers: @@ -590,15 +597,15 @@ interactions: Content-Encoding: - gzip Content-Length: - - '131' + - '130' Content-Type: - application/json; charset=utf-8 Date: - - Wed, 31 Dec 2025 14:38:54 GMT + - Fri, 22 May 2026 09:16:39 GMT Pragma: - no-cache RequestId: - - fc7e0ed7-709f-4541-82b8-82e23b281993 + - ddfee420-5b80-4686-8bf8-9aaf0048d43e Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Content-Type-Options: